:root {
  --bg: #ffffff;
  --tint: #f4f4f4;
  --ink: #070707;
  --muted: #6e6e73;
  --line: #dedee2;
  --red: #ff4627;
  --red-soft: #ffe7e3;
  --blue: #1d4edb;
  --blue-soft: #eef1ff;
  --purple: #7a0063;
  --yellow: #ffc700;
  --teal: #4c6971;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.11);
  --soft-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.svg-sprite {
  display: none;
}

.shell {
  width: min(1020px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .shell {
  width: min(1410px, calc(100% - 56px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #dddddf;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-lockup {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-lockup-header {
  width: 124px;
  mix-blend-mode: multiply;
}

.brand-lockup-footer {
  width: 176px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  font-size: 13px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: #080808;
  box-shadow: 0 14px 28px rgba(255, 70, 39, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff4a35;
  box-shadow: 0 18px 36px rgba(255, 70, 39, 0.27);
}

.button-ghost {
  background: #fff;
  border-color: #d9d9dd;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.button-dark {
  background: #050505;
  color: #fff;
}

.icon-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d9d9dd;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2px 0;
  background: #080808;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 106px 0 76px;
  background: #fafafa;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.hero .eyebrow {
  padding: 8px 17px;
  border: 1px solid #d9d9dd;
  border-radius: 999px;
  color: #0f0f10;
  letter-spacing: 4px;
  background: #fff;
}

.hero .eyebrow::before {
  content: none;
}

.eyebrow-red {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 710px;
  margin-bottom: 26px;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 860;
}

h1::after {
  content: none;
}

.hero-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
}

.hero-underline::after {
  position: absolute;
  right: -0.1em;
  bottom: -0.03em;
  left: -0.04em;
  z-index: -1;
  height: 0.1em;
  background: linear-gradient(90deg, var(--red) 0 46%, var(--yellow) 46% 100%);
  content: "";
}

.lede,
.section-head p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pillar-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 8px;
}

.pillar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 15px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pillar-card:nth-child(1) {
  border-color: var(--red);
}

.pillar-card:nth-child(2) {
  border-color: var(--blue);
}

.pillar-card:nth-child(3) {
  border-color: var(--purple);
}

.pillar-card:nth-child(4) {
  border-color: var(--yellow);
}

.pillar-card:hover,
.pillar-card:focus-visible,
.pillar-card.active {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}

.pillar-card strong,
.pillar-card small {
  display: block;
}

.pillar-card strong {
  margin-bottom: 2px;
  font-size: 15px;
  line-height: 1.2;
}

.pillar-card small {
  color: #66666c;
  font-size: 12px;
  line-height: 1.35;
}

.pillar-caption {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.icon-disc,
.icon-square,
.soft-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.icon-disc {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.icon-disc svg {
  width: 24px;
  height: 24px;
}

.icon-square {
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.icon-square svg {
  width: 34px;
  height: 34px;
}

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

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

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

.yellow {
  background: var(--yellow);
  color: #050505;
}

.black {
  background: #060606;
  color: var(--red);
}

.dark {
  background: #535353;
  color: var(--red);
}

.section {
  padding: 118px 0;
}

.section-tint {
  background: var(--tint);
}

.section-head {
  max-width: 730px;
  margin-bottom: 62px;
}

.section-head h2,
.formats h2,
.contact-copy h2 {
  margin-bottom: 24px;
  font-size: 43px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 860;
}

.problem-grid,
.approach-grid,
.program-grid,
.benefit-grid,
.audience-grid,
.method-grid,
.result-grid,
.quote-grid,
.format-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.number-card,
.feature-card,
.benefit-card,
.audience-card,
.quote-card {
  border: 1px solid #e2e2e5;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.number-card:hover,
.feature-card:hover,
.benefit-card:hover,
.audience-card:hover,
.quote-card:hover,
.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 78, 219, 0.34);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.12);
}

.number-card:hover::after {
  background: rgba(255, 70, 39, 0.18);
}

.number-card {
  position: relative;
  min-height: 198px;
  overflow: hidden;
  padding: 28px;
}

.number-card::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 42px;
  height: 42px;
  border-radius: 0 8px 0 42px;
  background: var(--red-soft);
  content: "";
}

.number-card span {
  display: block;
  margin-bottom: 18px;
  color: #ff7568;
  font-size: 30px;
  line-height: 1;
  font-weight: 350;
}

.number-card h3,
.feature-card h3,
.program-card h3,
.format-item h3,
.benefit-card h3,
.audience-card h3,
.result-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.35;
}

.number-card p,
.feature-card p,
.program-card p,
.format-item p,
.benefit-card p,
.audience-card p,
.result-card p,
.quote-card small {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.problem-grid .number-card:nth-child(4),
.problem-grid .number-card:nth-child(5) {
  grid-column: span 1;
}

.approach-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 220px;
  padding: 34px 32px 32px;
}

.feature-card .icon-square {
  margin: 0 0 24px;
  transform: none;
}

.feature-card h3 {
  font-size: 22px;
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 70, 39, 0.08), transparent 32%),
    radial-gradient(circle at 75% 22%, rgba(29, 78, 219, 0.06), transparent 30%),
    #050505;
  color: #fff;
}

.section-dark .section-head {
  max-width: 660px;
}

.section-dark h2 {
  color: #fff;
}

.program-grid {
  grid-template-columns: repeat(3, 1fr);
}

.program-card {
  min-height: 316px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  outline: none;
}

.program-card:nth-child(4) {
  grid-column: span 1;
}

.program-card .icon-disc {
  margin-bottom: 26px;
}

.program-card h3 {
  font-size: 20px;
}

.program-card p,
.program-card li {
  color: #a7a7ad;
}

.program-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.program-card li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "✓";
}

.formats h2 {
  max-width: 610px;
  margin-bottom: 76px;
}

.format-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.format-item span,
.soft-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.format-item h3 {
  font-size: 21px;
}

.format-item em {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d4d4d8;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  min-height: 168px;
  padding: 28px;
}

.soft-icon {
  background: var(--blue-soft);
  box-shadow: none;
}

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

.audience-card {
  min-height: 180px;
  padding: 30px;
  box-shadow: none;
}

.audience-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--red);
}

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

.result-grid {
  grid-template-columns: repeat(3, 1fr);
}

.result-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid #d9d9dd;
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.result-card span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  min-height: 238px;
  padding: 34px 32px 30px;
}

.quote-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 52px;
  line-height: 0.8;
  font-weight: 900;
}

.quote-card p {
  min-height: 84px;
  font-size: 18px;
  line-height: 1.55;
}

.quote-card hr {
  border: 0;
  border-top: 1px solid #dddddf;
  margin: 24px 0 18px;
}

.quote-card strong,
.quote-card small {
  display: block;
}

.cta-section {
  padding-bottom: 96px;
}

.cta-band {
  display: grid;
  justify-items: center;
  min-height: 390px;
  padding: 84px 80px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 78%, rgba(55, 57, 199, 0.52), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(164, 41, 91, 0.48), transparent 26%),
    radial-gradient(circle at 50% 8%, rgba(29, 78, 219, 0.2), transparent 42%),
    #030303;
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  max-width: 710px;
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.22;
}

.cta-band p {
  max-width: 620px;
  margin-bottom: 32px;
  color: #c8c8cd;
  font-size: 17px;
}

.contact-section {
  padding-top: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 54px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #303035;
  font-size: 15px;
}

.contact-list svg {
  color: var(--red);
}

.contact-form {
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d6d6dc;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input {
  min-height: 48px;
  padding: 0 18px;
}

textarea {
  min-height: 132px;
  resize: vertical;
  border-radius: 8px;
  padding: 16px 18px;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 78, 219, 0.12);
}

input.is-invalid,
textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 70, 39, 0.12);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.form-footer span,
.form-status {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  margin: 18px 0 0;
}

.form-status.success {
  color: #0c7a37;
}

.form-status.error {
  color: var(--red);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(29, 78, 219, 0.1), transparent 26%),
    #050505;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.15fr;
  gap: 64px;
  padding: 82px 0 62px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-grid p {
  max-width: 330px;
  color: #aaaab0;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: #b9b9be;
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid #333338;
  border-radius: 50%;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid #1a1a1e;
  color: #77777d;
  font-size: 12px;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.number-card.reveal,
.feature-card.reveal,
.benefit-card.reveal,
.audience-card.reveal,
.quote-card.reveal,
.result-card.reveal,
.program-card.reveal {
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.number-card.reveal.is-visible:hover,
.feature-card.reveal.is-visible:hover,
.benefit-card.reveal.is-visible:hover,
.audience-card.reveal.is-visible:hover,
.quote-card.reveal.is-visible:hover,
.result-card.reveal.is-visible:hover {
  transform: translateY(-5px);
}

.program-card.reveal.is-visible:hover,
.program-card.reveal.is-visible:focus-visible {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 36px, 760px);
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 66px;
  }

  .icon-button {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 66px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid #e0e0e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav a {
    padding: 14px 12px;
  }

  .hero {
    padding: 86px 0 72px;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .pillar-panel {
    max-width: 560px;
  }

  h1 {
    font-size: 46px;
  }

  h1::after {
    width: 220px;
    margin: -46px 0 42px 64px;
  }

  .section {
    padding: 84px 0;
  }

  .section-head h2,
  .formats h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .problem-grid,
  .approach-grid,
  .program-grid,
  .benefit-grid,
  .audience-grid,
  .method-grid,
  .result-grid,
  .quote-grid,
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-grid {
    gap: 34px;
  }

  .cta-band {
    padding: 62px 34px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .hero {
    padding-top: 58px;
  }

  .hero .eyebrow {
    max-width: 100%;
    letter-spacing: 2px;
    line-height: 1.25;
  }

  h1 {
    font-size: 38px;
  }

  h1::after {
    width: 178px;
    height: 5px;
    margin: -39px 0 38px 42px;
  }

  .lede,
  .section-head p,
  .contact-copy > p {
    font-size: 16px;
  }

  .hero-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
    white-space: normal;
    text-align: center;
  }

  .pillar-panel,
  .problem-grid,
  .approach-grid,
  .program-grid,
  .benefit-grid,
  .audience-grid,
  .method-grid,
  .result-grid,
  .quote-grid,
  .format-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 78px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-head h2,
  .formats h2,
  .contact-copy h2,
  .cta-band h2 {
    font-size: 31px;
  }

  .number-card,
  .feature-card,
  .benefit-card,
  .audience-card,
  .program-card,
  .quote-card,
  .contact-form {
    padding: 24px;
  }

  .feature-card {
    min-height: auto;
  }

  .formats h2 {
    margin-bottom: 42px;
  }

  .cta-band {
    min-height: 330px;
    padding: 46px 24px;
  }

  .footer-grid {
    gap: 30px;
    padding: 58px 0 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
