:root {
  --color-background: #ffffff;
  --color-text: #000000;
  --color-accent: #f54d85;
  --color-header: #000000;
  --color-button-text: #ffffff;
  --font-display: "Inter", sans-serif;
  --font-ui: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-display);
}

body.menu-open {
  overflow: hidden;
}

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

.page-shell {
  min-height: 100vh;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 20px;
  background: var(--color-header);
}

.site-name {
  display: flex;
  align-items: center;
  min-height: 60px;
}

.site-name span {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.menu-button {
  position: relative;
  z-index: 60;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 26px;
  height: 4px;
  margin-left: 10px;
  background: #d9d9d9;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.24);
}

.mobile-menu {
  position: fixed;
  top: 40px;
  right: 0;
  z-index: 40;
  width: min(100vw, 392px);
  height: 100vh;
  padding: 30px 40px;
  background: #000000;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.home-hero,
.experience-overview {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.home-hero {
  min-height: clamp(560px, 54vw, 660px);
  background: #f7f7f7 url("/img/home_banner.webp") center bottom / cover no-repeat;
}

.home-hero-inner,
.experience-overview-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-inline: 60px;
}

.home-hero-inner {
  display: flex;
  align-items: center;
  min-height: clamp(560px, 54vw, 660px);
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 520px);
  padding-bottom: 36px;
}

.home-hero-title {
  max-width: 520px;
  margin: 0;
  font-size: clamp(60px, 6.4vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing:-2px;
  margin-bottom: 16px;
}

.section-underline {
  width: 328px;
  max-width: 100%;
  height: auto;
  margin-top: 0px;
}

.home-hero-intro {
  max-width: 500px;
  margin: 28px 0 0;
  color: #666666;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.22;
}

.home-hero-cta {
  min-width: 296px;
  margin-top: 30px;
  border-radius: 999px;
  text-transform: none;
  margin-bottom: 60px;
}

.experience-overview {
  color: #ffffff;
  background: #202020 url("/img/experience-bg.png") center / cover no-repeat;
}

.experience-overview-inner {
  padding-top: 76px;
  padding-bottom: 64px;
}

.experience-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 72px;
  padding-left: 12px;
}

.experience-heading h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.04;
}

.experience-heading .section-underline {
  margin-top: 22px;
}

.experience-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.experience-card,
.experience-feature-card {
  border-radius: 18px;
  background: #3b3b3b;
}

.experience-card {
  min-height: 190px;
  padding: 30px 36px;
}

.experience-card h3,
.experience-feature-card h3 {
  margin: 0;
  color: var(--color-accent);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.08;
  margin:10px 0;
}



.experience-card p,
.experience-feature-card p {
  margin: 10px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.32;

}


p.experience-card-lead {
  margin: 14px 0 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.22;
}

.experience-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.95fr);
  gap: 42px;
  margin-top: 46px;
}

.experience-feature-card {
  min-height: 170px;
  padding: 38px 42px;
}

.experience-feature-wide p {
  max-width: 710px;
  margin-top: 24px;
}

.experience-feature-accent {
  color: #000000;
  background: var(--color-accent);
}

.experience-feature-accent h3 {
  color: #000000;
}

.experience-feature-accent p {
  max-width: 290px;
  margin-top: 22px;
}

.experience-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 36px;
  margin-top: 72px;
}

.experience-logos img {
  width: auto;
  max-width: 118px;
  height: 28px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.experience-logos img:nth-child(4),
.experience-logos img:nth-child(6),
.experience-logos img:nth-child(7) {
  height: 22px;
}

.experience-logo-next-plus {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 72px);
  padding: clamp(48px, 5.5vw, 78px) 20px 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 711px;
}

.hero-heading-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-heading-group h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-name-line {
  display: inline;
}

.hero-name-line + .hero-name-line {
  margin-left: 0.24em;
}

.hero-role {
  margin: 0;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-intro {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.3;
}

.cta-row {
  padding: 12px 0 4px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 14px 30px;
  border: 0;
  border-radius: 10px;
  background: #000000;
  color: var(--color-button-text);
  font-size: 24px;
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  /*text-transform: uppercase;*/
  cursor: pointer;
}

.brands-panel {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding-top: 10px;
}

.brands-panel h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.brands-panel-title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 27px;
}

.brand-logo {
  flex: 0 0 auto;
  width: auto;
  
  max-width: 100px;

  object-fit: contain;
}

.brand-logo-next {
}

.brand-logo-audi {
}

.brand-logo-vs {
}

.brand-logo-skoda {
}

.brand-logo-reiss {
}

.brand-logo-vw {
  max-width: 20px;
}

.brand-logo-tnt {
}

.hero-photo-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px;
}

.hero-photo-frame {
  width: min(100%, 524px);
  aspect-ratio: 524 / 528;
  overflow: hidden;
  background: #f3f0eb;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.case-studies-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 64px 0 0;
  background: #f8f8f8 url("/img/casestudy-platmod-bg.png") center top;
  background-attachment: fixed;
}

.case-studies-shell {
  width: 100%;
}

.case-studies-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 max(60px, calc((100vw - 1320px) / 2 + 60px));
}

.case-studies-title {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.case-studies-role {
  margin: 0;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.case-studies-intro .section-underline {
  width: 250px;
  margin-top: 10px;
}

.case-studies-copy {
  /*max-width: 930px;*/
  margin: 42px 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.38;
}

.case-studies-list {
  display: flex;
  flex-direction: column;
}

.case-study-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(360px, 5fr);
  align-items: center;
  min-height: 500px;
  padding: 46px max(60px, calc((100vw - 1320px) / 2 + 60px)) 54px;
  overflow: hidden;
}

.case-study-feature-platform {
  background: transparent;
}

.case-study-feature-credit {
  background: #f6f6f6 url("/img/casestudy-credit-bg.png") center / cover no-repeat;
}

.case-study-feature-pdp {
  /*background: #ffffff;*/
}

.case-study-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 330px;
}

.case-study-title {
  max-width: 100%;
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.case-study-body {
  /*max-width: 320px;*/
  margin: 34px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
}

.case-study-visual-link {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  width: min(100%, 610px);
  transition: transform 220ms ease;
}

.case-study-visual-link:hover,
.case-study-visual-link:focus-visible {
  transform: scale(1.025);
}

.case-study-visual {
  width: 100%;
  height: auto;
}

.case-study-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  padding: 18px 26px;
  border: 0;
  border-radius: 10px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.case-study-feature .case-study-button {
  gap: 12px;
  min-width: 278px;
  margin-top: 34px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.case-study-feature .home-hero-cta {
  gap: 12px;
  min-width: 278px;
  margin-top: 34px;
  border-radius: 10px;
  /*text-transform: uppercase;*/
}

.case-study-impact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(100%, 278px);
  margin: 34px 0 0;
  padding: 24px;
  border-radius: 12px;
  background: rgba(232, 232, 232, 0.92);
}

.case-study-feature-credit .case-study-impact {
  background: rgba(255, 255, 255, 0.95);
}

.case-study-impact div,
.case-study-impact dt,
.case-study-impact dd {
  margin: 0;
}

.case-study-impact dt {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.case-study-impact dd {
  margin-top: 3px;
  color: #333333;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.placeholder-anchor {
  height: 1px;
}

.leadership-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 24px max(60px, calc((100vw - 1320px) / 2 + 60px)) 96px;
}

.leadership-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 56px;
  padding-bottom: 72px;
}

.leadership-copy-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.leadership-copy-block .hero-intro {
  max-width: 600px;
}

.leadership-image-frame {
  width: 100%;
}

.leadership-image {
  width: 100%;
  aspect-ratio: 560 / 334;
  object-fit: cover;
}

.leadership-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 54px 86px;
  align-items: start;
}

.leadership-media-column,
.leadership-text-column,
.leadership-column {
  display: flex;
  flex-direction: column;
}

.leadership-media-column {
  gap: 28px;
}

.leadership-text-column {
  gap: 42px;
}

.leadership-column {
  gap: 28px;
}

.leadership-column-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 24px;
  line-height: 1.42;
}

.leadership-column-copy p {
  margin: 0;
}

.leadership-support-image {
  width: 100%;
  aspect-ratio: 574 / 298;
  object-fit: cover;
}

.leadership-workshop-image {
  width: 100%;
  aspect-ratio: 574 / 348;
  object-fit: cover;
}

.ai-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 24px max(60px, calc((100vw - 1320px) / 2 + 60px)) 96px;
}

.ai-intro {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.ai-intro-copy {
  padding: 0;
}

.ai-copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-size: 24px;
  line-height: 1.42;
}

.ai-copy-columns p {
  margin: 0;
}

.ai-tools-band {
  margin: 56px -20px 60px;
  padding: 36px 20px;
  background: #ececec;
}

.ai-tools-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 46px;
  max-width: 1110px;
  margin: 0 auto;
  padding: 22px 36px;
  border-radius: 999px;
  background: #ffffff;
}

.ai-tool {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ai-tool-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: none;
  object-fit: contain;
}

.ai-tool-codex {
  color: #5057ff;
}

.ai-tool-logo-user-testing {
  height: 32px;
}

.ai-examples {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 72px;
}

.ai-examples-intro {
  max-width: 600px;
}

.ai-examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 72px;
}

.ai-example {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ai-example-title {
  margin: 0;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.ai-example p {
  margin: 0;
  font-size: 24px;
  line-height: 1.42;
}

.ai-certifications {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 64px;
}

.ai-certifications-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ai-certifications-visual {
  min-height: 0;
}

.ai-certifications-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  object-fit: contain;
}

.ai-certifications-highlight {
  font-weight: 700;
}

.contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 150px max(60px, calc((100vw - 1320px) / 2 + 60px)) 180px;
  background: #1f1f1f url("/img/contact-bg.webp") center top / cover no-repeat;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 86px 72px 92px;
  background: #ffffff;
}

.contact-card .section-underline {
  width: 330px;
  margin-top: 28px;
}

.contact-message {
  max-width: 780px;
  margin: 48px 0 42px;
  color: #333333;
  font-size: clamp(28px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.16;
}

.contact-message a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.contact-heading {
  margin: 0;
  color: #333333;
  font-size: clamp(42px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.contact-email {
  color: #333333;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .home-hero {
    min-height: 580px;
    background-position: 58% bottom;
  }

  .home-hero-inner {
    min-height: 580px;
  }

  .home-hero-copy {
    width: min(100%, 470px);
  }

  .home-hero-title {
    font-size: 58px;
  }

  .home-hero-intro {
    /*max-width: 410px;*/
    font-size: 22px;
  }

  .experience-card-grid,
  .experience-feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-photo-column {
    padding: 0;
  }

  .hero-photo-frame {
    width: min(100%, 680px);
  }

  .case-studies-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }

  .case-study-feature {
    grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1.1fr);
    min-height: 460px;
    padding: 44px 40px;
  }

  .case-studies-intro {
    padding-right: 40px;
    padding-left: 40px;
  }

  .case-study-visual-link {
    width: min(100%, 540px);
  }

  .leadership-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .leadership-section,
  .ai-section,
  .contact-section {
    padding-right: 40px;
    padding-left: 40px;
  }

  .leadership-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-studies-intro {
    padding: 0 40px 34px;
  }

  .ai-intro-copy {
    padding: 0;
  }

  .ai-copy-columns,
  .ai-examples-grid,
  .ai-certifications {
    grid-template-columns: 1fr;
  }

  .ai-certifications {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .home-hero {
    background-position: left bottom;
  }
   .case-study-feature { 
    grid-template-columns: minmax(280px, 2fr) minmax(280px, 2fr);
  }
}

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


 

  .home-hero {
    min-height: auto;
    background-position: left bottom;
  }

  .home-hero-inner {
    align-items: flex-start;
    min-height: auto;
    padding: 38px 30px;
  }

  .home-hero-copy {
    width: min(100%, 340px);
    padding-bottom: 0;
  }

  .home-hero-title {
    max-width: 320px;
    font-size: 44px;
    line-height: 1.1;
  }

  .section-underline {
    width: 220px;
    margin-top: 16px;
  }

  .home-hero-intro {
    max-width: 300px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.28;
  }

  .home-hero-cta {
    width: auto;
    min-width: 236px;
    margin-top: 34px;
    font-size: 20px;
  }

  .experience-overview-inner {
    padding: 48px 30px 44px;
  }

  .experience-heading {
    margin-bottom: 42px;
    padding-left: 0;
  }

  .experience-heading h2 {
    font-size: 42px;
  }

  .experience-card {
    min-height: 0;
    padding: 26px 28px;
  }

  .experience-card h3,
  .experience-feature-card h3 {
    font-size: 30px;
  }

  .experience-card-lead {
    font-size: 24px;
  }

  .experience-feature-card {
    min-height: 0;
    padding: 28px;
  }

  .experience-logos {
    justify-content: flex-start;
    gap: 22px 28px;
    margin-top: 48px;
  }

  .experience-logos img {
    max-width: 96px;
    height: 22px;
  }

  .experience-logo-next-plus {
    font-size: 28px;
  }

  .hero-layout {
    gap: 30px;
    padding: 30px;
  }

  .hero-heading-group h1 {
    font-size: 64px;
    letter-spacing: -0.06em;
    line-height: 0.94;
  }

  .hero-name-line {
    display: block;
  }

  .hero-name-line + .hero-name-line {
    margin-left: 0;
  }

  .hero-role {
    font-size: 20px;
  }

  .hero-intro {
    max-width: none;
    font-size: 30px;
    line-height: 1.3;
  }

  .primary-cta {
    width: 297px;
    min-width: 297px;
    font-size: 24px;
  }

  .brands-panel h2 {
    font-size: 30px;
    white-space: nowrap;
  }

  .brand-logos {
    max-width: 330px;
    gap: 20px 27px;
  }

  .hero-photo-frame {
    width: 100%;
    aspect-ratio: 279 / 284;
  }

  .hero-copy {
    gap: 20px;
    width: 100%;
    max-width: none;
  }

  .hero-heading-group {
    width: 100%;
  }

  .cta-row {
    width: 100%;
    padding: 30px 0 0;
  }

  .brands-panel {
    width: 100%;
  }

  .hero-photo-column {
    justify-content: flex-start;
    padding: 0;
  }

  .case-studies-section {
    padding: 30px 0 0;
    /*background-attachment: scroll;*/
    background-position: left top;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .case-studies-intro {
    padding: 0 30px 34px;
  }

  .ai-intro-copy {
    padding: 0;
  }

  .case-studies-title {
    font-size: 52px;
    line-height: 1.08;
  }

  .case-studies-intro .section-underline {
    width: 222px;
    margin-top: 18px;
  }

  .case-studies-copy {
    /*display: none;*/
  }

  .case-study-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 0 30px 64px;
    background: transparent;
  }

  .case-study-feature-credit {
    background: #f6f6f6 url("/img/casestudy-credit-bg.png") center top / cover no-repeat;
  }

  .case-study-feature-pdp {
    background: #ffffff;
  }

  .case-study-feature + .case-study-feature {
    padding-top: 40px;
  }

  .case-study-feature-copy {
    display: contents;
    max-width: none;
  }

  .case-study-title {
    order: 1;
    max-width: 300px;
    margin: 0;
    font-size: 40px;
    line-height: 1.08;
  }

  .case-study-visual-link {
    order: 2;
    align-self: center;
    /*width: min(100%, 320px);*/
    margin-top: 38px;
  }

  .case-study-body {
    order: 3;
    /*max-width: 320px;*/
    margin: 34px 0 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .case-study-feature .home-hero-cta {
    order: 5;
    width: 100%;
    min-width: 0;
    margin-top: 34px;
    padding: 17px 26px;
    font-size: 16px;
  }

  .case-study-impact {
    order: 4;
    width: 100%;
    margin-top: 26px;
    padding: 24px 22px;
  }

  .leadership-section {
    padding: 48px 30px 64px;
  }

  .leadership-intro {
    gap: 28px;
    padding-bottom: 42px;
  }

  .leadership-copy-block {
    gap: 18px;
  }

  .leadership-copy-block .hero-intro {
    max-width: none;
  }

  .leadership-text-column {
    gap: 36px;
  }

  .leadership-column {
    gap: 18px;
  }

  .leadership-column-copy {
    gap: 18px;
    font-size: 18px;
    line-height: 1.45;
  }

  .ai-section {
    padding: 48px 30px 64px;
  }

  .ai-intro {
    gap: 28px;
  }

  .ai-copy-columns {
    gap: 20px;
    font-size: 18px;
    line-height: 1.45;
  }

  .ai-tools-band {
    margin: 40px -20px 42px;
    padding: 24px 20px;
  }

  .ai-tools-pill {
    justify-content: flex-start;
    gap: 20px 26px;
    padding: 18px 22px;
    border-radius: 32px;
  }

  .ai-tool {
    font-size: 22px;
  }

  .ai-tool-logo {
    height: 30px;
  }

  .ai-tool-logo-user-testing {
    height: 24px;
  }

  .ai-examples {
    gap: 28px;
    padding-bottom: 42px;
  }

  .ai-example {
    gap: 14px;
  }

  .ai-example p {
    font-size: 18px;
    line-height: 1.45;
  }

  .ai-certifications-image {
    max-width: 360px;
  }

  .contact-section {
    padding: 88px 30px 110px;
  }

  .contact-card {
    padding: 48px 32px 56px;
  }

  .contact-card .section-underline {
    width: 240px;
    margin-top: 20px;
  }

  .contact-message {
    margin: 34px 0 34px;
    font-size: 24px;
    line-height: 1.18;
  }

  .contact-heading {
    font-size: 34px;
  }

  .contact-email {
    font-size: 24px;
  }
}
