:root {
  --black: #050505;
  --ink: #151515;
  --charcoal: #242424;
  --muted: #666a70;
  --line: #e9e9e9;
  --soft: #f5f5f2;
  --white: #ffffff;
  --orange: #ff8500;
  --orange-dark: #e96f00;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  appearance: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: clamp(190px, 18vw, 285px);
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 50px);
  font-size: 17px;
  font-weight: 800;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.pill-button:hover {
  transform: translateY(-2px);
}

.pill-button.dark {
  color: var(--white);
  background: var(--black);
}

.pill-button.orange {
  color: var(--white);
  background: var(--orange);
}

.pill-button.orange:hover {
  background: var(--orange-dark);
}

.pill-button.full {
  width: 100%;
}

.section {
  padding: clamp(68px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  padding-top: clamp(54px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 242, 0.76)),
    radial-gradient(circle at 86% 28%, rgba(255, 133, 0, 0.12), transparent 26%);
}

.wave-field {
  position: absolute;
  inset: 18% -18% 10% -18%;
  opacity: 0.34;
  background-image:
    repeating-radial-gradient(ellipse at 76% 58%, transparent 0 24px, rgba(0, 0, 0, 0.09) 25px 28px, transparent 29px 38px);
  transform: rotate(-6deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, 440px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.12;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 32px;
  color: #151515;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 2px solid var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 17px;
}

.star {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.lead-panel {
  scroll-margin-top: 112px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

.lead-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 1.85vw, 30px);
  line-height: 1.1;
}

.lead-form {
  display: grid;
  gap: 15px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: #fafafa;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  outline: 0;
}

.lead-form option {
  font-size: 16px;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-note.success {
  color: #10743a;
  font-weight: 800;
}

.form-note.error {
  color: #b42318;
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 690px;
  margin-top: 18px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: #4c4c4c;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.offer-box h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.12;
}

.section-heading p,
.offer-box p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-grid article {
  min-height: 310px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--orange);
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
}

.service-grid p,
.partner-points p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 24px auto 0;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.press-section {
  position: relative;
  padding: 50px clamp(20px, 5vw, 76px);
  color: var(--black);
  background: linear-gradient(180deg, #ffffff, #f8f8f6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.press-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.press-shell h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.press-grid img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dark-section {
  color: var(--white);
  background: var(--charcoal);
}

.partner-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(44px, 8vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
}

.short-rule {
  width: 64px;
  height: 8px;
  margin-bottom: 44px;
  background: var(--orange);
  border-radius: 999px;
}

.partner-copy h2 {
  max-width: 760px;
  margin-bottom: 36px;
  font-size: clamp(34px, 3.35vw, 52px);
  font-weight: 500;
  line-height: 1.12;
}

.large-copy {
  max-width: 770px;
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 800;
  line-height: 1.35;
}

.process-chart {
  position: relative;
  max-width: 620px;
  margin-top: clamp(34px, 5vw, 64px);
  padding: 28px 24px 24px;
  background:
    linear-gradient(135deg, rgba(255, 133, 0, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  overflow: hidden;
}

.process-chart::before {
  position: absolute;
  inset: 18px 24px 58px;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 34px, 25% 100%;
}

.chart-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
  min-height: 178px;
}

.chart-track span {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: var(--level);
  min-height: 68px;
  padding: 0 8px 14px;
  color: var(--white);
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-track span::before {
  position: absolute;
  top: -9px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--white);
  border: 5px solid var(--orange);
  border-radius: 999px;
}

.chart-line {
  position: absolute;
  right: 24px;
  bottom: 58px;
  left: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.partner-points {
  display: grid;
  gap: 14px;
}

.partner-points article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.partner-points span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.partner-points h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.partner-points p {
  color: #eeeeee;
  font-size: clamp(16px, 1.35vw, 19px);
}

.clients-section {
  max-width: calc(var(--max) + 152px);
  margin: 0 auto;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.client-grid article {
  display: grid;
  grid-template-rows: 118px auto;
  min-height: 252px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.client-grid img {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 168px;
  max-height: 96px;
  object-fit: contain;
}

.client-grid h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

.client-grid p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.brand-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-strip p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-carousel {
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 14px;
  align-items: center;
  transition: transform 420ms ease;
  will-change: transform;
}

.brand-track.is-sliding {
  transform: translateX(calc(var(--slide-distance, 0px) * -1));
}

.brand-track img {
  flex: 0 0 calc((100% - 42px) / 4);
  width: 100%;
  height: 76px;
  object-fit: contain;
  padding: 10px 14px;
  background: var(--soft);
  border-radius: 8px;
}

.consultation-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  max-width: calc(var(--max) + 152px);
  margin: 0 auto;
  padding-top: 28px;
}

.consultation-metrics {
  display: grid;
  gap: 14px;
}

.consultation-metrics div,
.consultation-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 248, 246, 0.96)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consultation-metrics div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 152px;
  padding: clamp(24px, 3.4vw, 40px);
}

.consultation-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.consultation-metrics span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.consultation-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 4vw, 50px);
}

.consultation-card h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.consultation-card p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  max-width: calc(var(--max) + 152px);
  margin: 0 auto;
}

.metric-row {
  display: grid;
  gap: 14px;
}

.metric-row div,
.offer-box {
  padding: clamp(28px, 4vw, 48px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.offer-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: calc(var(--max) + 152px);
  margin: 0 auto;
  padding-top: 42px;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
  max-width: calc(var(--max) + 152px);
  margin: 0 auto;
  padding-top: 24px;
}

.location-section h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.location-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
}

.map-embed-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.map-embed-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  color: var(--black);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-embed-card a::after {
  content: "->";
  color: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 76px);
  color: #d7d7d7;
  background: #171717;
}

.footer-logo {
  width: 182px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--orange);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky .pill-button {
  gap: 10px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 5, 5, 0.58);
}

.modal-backdrop[aria-hidden="false"] {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.modal-dialog h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.12;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: var(--black);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  gap: 13px;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 242, 0.76)),
    radial-gradient(circle at 86% 28%, rgba(255, 133, 0, 0.12), transparent 26%);
}

.thank-you-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  max-width: 820px;
  padding: clamp(32px, 6vw, 84px);
}

.thank-you-screen .brand-logo {
  margin-bottom: 54px;
}

.thank-you-screen h1 {
  margin-bottom: 20px;
}

.thank-you-screen p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.thank-you-screen p a {
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 78px;
  }

  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .partner-copy,
  .proof-section,
  .final-cta,
  .consultation-proof,
  .location-section {
    grid-template-columns: 1fr;
  }

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

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

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .press-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .final-cta {
    padding-right: clamp(20px, 5vw, 76px);
    padding-left: clamp(20px, 5vw, 76px);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 155px;
  }

  .site-header > .pill-button {
    min-height: 44px;
    padding: 0 17px;
    font-size: 12px;
  }

  .section {
    padding: 58px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 92px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 19px;
  }

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

  .text-link {
    justify-content: center;
  }

  .lead-panel {
    padding: 22px;
  }

  .lead-form input,
  .lead-form select {
    height: 54px;
    font-size: 16px;
    font-weight: 800;
  }

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

  .client-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-grid article {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 118px;
    gap: 16px;
    align-items: center;
    padding: 16px;
  }

  .client-grid img {
    max-width: 92px;
    max-height: 78px;
  }

  .consultation-proof {
    gap: 14px;
    padding-top: 12px;
  }

  .consultation-metrics {
    gap: 10px;
  }

  .consultation-metrics div {
    min-height: 118px;
    padding: 22px;
  }

  .consultation-metrics strong {
    font-size: 46px;
  }

  .consultation-metrics span {
    font-size: 16px;
  }

  .consultation-card {
    padding: 28px 22px;
  }

  .consultation-card h2 {
    font-size: 34px;
  }

  .brand-track img {
    flex-basis: calc((100% - 14px) / 2);
    height: 72px;
  }

  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .press-section {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .press-shell h2 {
    text-align: center;
  }

  .service-grid article {
    min-height: 0;
  }

  .service-grid span {
    margin-bottom: 30px;
  }

  .service-tags span {
    min-height: 38px;
    font-size: 12px;
  }

  .press-grid img {
    height: 74px;
    padding: 12px 14px;
  }

  .map-embed-card iframe {
    height: 260px;
  }

  .partner-copy h2 {
    margin-bottom: 30px;
    font-size: 41px;
  }

  .process-chart {
    margin-top: 34px;
    padding: 22px 16px 18px;
  }

  .process-chart::before {
    inset: 14px 16px 48px;
  }

  .chart-track {
    gap: 8px;
    min-height: 148px;
  }

  .chart-track span {
    min-height: 58px;
    padding: 0 5px 10px;
    font-size: 10px;
  }

  .chart-line {
    right: 16px;
    bottom: 48px;
    left: 16px;
  }

  .partner-points article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .partner-points span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .large-copy {
    font-size: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .footer-logo {
    width: 170px;
  }

  .footer-contact {
    justify-items: start;
  }

  .mobile-sticky {
    display: block;
  }

  body.show-sticky .mobile-sticky {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
