:root {
  --sfx-if-dark: #1d1e20;
  --sfx-if-dark-soft: #25262a;
  --sfx-if-ink: #18191b;
  --sfx-if-muted: #6c6b69;
  --sfx-if-light: #f3f0eb;
  --sfx-if-salmon: #ff8184;
  --sfx-if-line: rgba(24, 25, 27, 0.16);
  --sfx-if-frame: 0px;
  --sfx-if-inset: clamp(1.4rem, 6vw, 6rem);
  --sfx-if-section: clamp(4.8rem, 9vw, 8rem);
}

.sfx-imagefilm-preview {
  position: relative;
  overflow: clip;
  color: var(--sfx-if-ink);
}

.sfx-imagefilm-preview [id] {
  scroll-margin-top: 7rem;
}

.sfx-imagefilm-preview *,
.sfx-imagefilm-preview *::before,
.sfx-imagefilm-preview *::after {
  box-sizing: border-box;
}

.sfx-imagefilm-preview :where(h1, h2, h3, p, figure, ul) {
  margin-top: 0;
}

.sfx-imagefilm-preview :where(button, a) {
  -webkit-tap-highlight-color: transparent;
}

.sfx-if-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--sfx-if-salmon);
  font-size: clamp(12px, 0.86vw, 16px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.sfx-if-eyebrow::before {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.sfx-if-eyebrow--dark {
  color: var(--sfx-if-ink);
}

/* Donor areas stay on their original Elementor styling. The preview only
   changes the sequence around them; it does not repaint the existing intro
   or add a new frame/background to it. */
.sfx-if-donor { background: transparent; }
.sfx-if-donor--hero { overflow: visible; border-radius: 0; }
.sfx-if-donor--hero h1.elementor-heading-title {
  max-width: none;
  font-size: clamp(2.5rem, 3.6vw, 4.6rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -.045em !important;
}
.sfx-if-donor--intro { padding-top: 0; }
.sfx-if-donor--lower { padding: 0; background: transparent; }
.sfx-if-donor--lower > .elementor-element + .elementor-element { margin-top: 0; }

/* References */
.sfx-if-examples {
  padding: clamp(4.8rem, 9vw, 8rem) 0;
  background: #1f1f1f;
  color: #fff;
}

.sfx-if-examples-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .72fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  width: 92%;
  max-width: none;
  margin: 0 auto 3.5rem;
}

.sfx-if-examples-head .sfx-if-eyebrow { margin-bottom: 1.4rem; }

.sfx-if-examples-head h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.sfx-if-examples-copy {
  display: grid;
  gap: 1.25rem;
  margin: .3rem 0 0;
}

.sfx-if-examples-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.sfx-if-example-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.15rem;
  width: 92%;
  max-width: none;
  margin: 0 auto;
}

.sfx-if-card {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background: #14161c;
}

.sfx-if-card:nth-child(1),
.sfx-if-card:nth-child(2) {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

.sfx-if-card.is-extra {
  display: none;
}

.sfx-if-card.is-extra.is-visible {
  display: block;
  animation: sfx-if-card-in 500ms cubic-bezier(.2,.75,.25,1) both;
}

@keyframes sfx-if-card-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sfx-if-card-open {
  position: absolute;
  inset: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.sfx-if-card-media {
  position: relative;
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0f1011;
}

.sfx-if-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 12%, rgba(0,0,0,.12) 62%, transparent 84%);
  content: "";
}

.sfx-if-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.75,.25,1), filter 400ms ease;
}

.sfx-if-card-open:hover .sfx-if-card-media img,
.sfx-if-card-open:focus-visible .sfx-if-card-media img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.sfx-if-card-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(20,22,28,.7);
  backdrop-filter: blur(3px);
  color: #fff;
  transform: translate(-50%, -50%);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.sfx-if-card-play svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-left: .15rem;
}

.sfx-if-card-open:hover .sfx-if-card-play,
.sfx-if-card-open:focus-visible .sfx-if-card-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--sfx-if-salmon);
  color: var(--sfx-if-ink);
  border-color: var(--sfx-if-salmon);
}

.sfx-if-card-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 2rem 1rem 1rem;
}

.sfx-if-card-company {
  display: block;
  color: var(--sfx-if-salmon);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sfx-if-card-title {
  display: block;
  color: #fff;
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.35;
}

.sfx-if-more {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: clamp(46px, 5vw, 76px) auto 0;
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 17px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.sfx-if-more:hover,
.sfx-if-more:focus-visible {
  background: #fff;
  color: var(--sfx-if-ink);
}

/* Salmon conversion sequence */
.sfx-if-salmon {
  padding: var(--sfx-if-section) var(--sfx-if-inset);
  background: var(--sfx-if-salmon);
}

.sfx-if-process {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
  column-gap: clamp(52px, 10vw, 190px);
  row-gap: 30px;
  align-items: start;
  padding-bottom: clamp(76px, 9vw, 150px);
}

.sfx-if-process h2,
.sfx-if-consult h2,
.sfx-if-why h2,
.sfx-if-industries h2,
.sfx-if-faq h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.sfx-if-process > p {
  padding-top: .3rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.sfx-if-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 62px;
  padding: 16px 22px;
  border-radius: 12px;
  background: var(--sfx-if-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.sfx-if-clients {
  padding-top: 2rem;
  border-top: 1px solid rgba(24,25,27,.18);
}

.sfx-if-clients-label {
  margin: 0 0 1.8rem;
  color: rgba(24,25,27,.58);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.sfx-if-client-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2.2rem 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sfx-if-client-logos li {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.sfx-if-client-logos img {
  display: block;
  width: auto;
  height: 1.45rem;
  max-width: min(100%, 8.5rem);
  object-fit: contain;
  filter: brightness(0);
  opacity: .52;
  transition: opacity .25s ease, transform .25s ease;
}

.sfx-if-client-logos li.is-emblem img { height: 2.35rem; }
.sfx-if-client-logos li[data-client="allianz"] img { height: 1.85rem; }
.sfx-if-client-logos li[data-client="basf"] img { height: 1.9rem; }
.sfx-if-client-logos li[data-client="otto"] img { height: 1.7rem; }
.sfx-if-client-logos li:hover img { opacity: .82; transform: translateY(-2px); }

.sfx-if-consult {
  padding: clamp(76px, 8vw, 132px) 0;
}

.sfx-if-consult-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(23rem, .96fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: stretch;
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid var(--sfx-if-line);
  border-radius: 1.15rem;
  background: rgba(255,255,255,.13);
}

.sfx-if-consult-copy { align-self: center; padding: 0; }

.sfx-if-consult .sfx-if-eyebrow {
  gap: .65rem;
  margin: 0 0 1.35rem;
  color: var(--sfx-if-ink);
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 700;
}

.sfx-if-consult .sfx-if-eyebrow::before {
  width: .48rem;
  height: .48rem;
  flex-basis: .48rem;
}

.sfx-if-consult h2 { letter-spacing: -.03em; }

.sfx-if-consult-copy > p:not(.sfx-if-eyebrow) {
  max-width: 39rem;
  margin: 1.4rem 0 1.8rem;
  color: #3f292b;
  font-size: 1rem;
  line-height: 1.68;
}

.sfx-if-consult-copy small {
  display: block;
  margin-top: 1rem;
  color: #3f292b;
  font-size: .82rem;
}

.sfx-if-consult .sfx-if-button {
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.55rem;
  padding: .9rem 1.35rem;
  border-radius: .65rem;
  background: #191b1f;
  color: #fff !important;
  font-size: .98rem;
  font-weight: 550;
}

.sfx-if-consult-person {
  position: relative;
  min-height: 31rem;
  margin: 0;
  overflow: hidden;
  border-radius: .9rem;
  background: #17191d;
}

.sfx-if-consult-person::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8,10,14,.94) 100%);
  content: "";
  pointer-events: none;
}

.sfx-if-consult-person img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(.92) contrast(1.03);
}

.sfx-if-consult-person figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.sfx-if-consult-person figcaption span,
.sfx-if-consult-person figcaption small {
  display: block;
}

.sfx-if-consult-person figcaption span {
  margin-bottom: .45rem;
  color: var(--sfx-if-salmon);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.sfx-if-consult-person figcaption strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.sfx-if-consult-person figcaption small {
  margin-top: .3rem;
  color: rgba(255,255,255,.66);
  font-size: .86rem;
}

.sfx-if-why {
  padding: var(--sfx-if-section) 0 0;
}

.sfx-if-why-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, .88fr);
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: center;
  max-width: 68rem;
  margin: 0 auto;
}

.sfx-if-why-visual {
  position: relative;
  z-index: 1;
  margin: clamp(-3rem, -4vw, -1.5rem) 0 clamp(-2.5rem, -3vw, -1rem);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sfx-if-why-visual img {
  display: block;
  width: 116%;
  max-width: none;
  height: auto;
  aspect-ratio: 1920 / 1084;
  object-fit: cover;
  transform: translateX(-7%);
}

.sfx-if-why-copy h2 { max-width: 17ch; }

.sfx-if-why-copy > p:not(.sfx-if-eyebrow) {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: #3f292b;
  font-size: 1.04rem;
  line-height: 1.68;
}

.sfx-if-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  max-width: 68rem;
  margin: clamp(3.5rem, 7vw, 6rem) auto 0;
}

.sfx-if-why-grid article {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 1.15rem;
  min-height: 12.5rem;
  padding: clamp(1.3rem, 2.8vw, 2.1rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  background: #202226;
  color: #fff;
  box-shadow: 0 1rem 2.4rem rgba(91,31,37,.13);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.sfx-if-why-grid article:hover {
  border-color: rgba(255,133,133,.55);
  background: #292c31;
  box-shadow: 0 1.3rem 3rem rgba(91,31,37,.2);
  transform: translateY(-3px);
}

.sfx-if-why-grid article > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255,129,132,.48);
  border-radius: 50%;
  background: rgba(255,129,132,.09);
  color: var(--sfx-if-salmon);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.sfx-if-why-grid h3 {
  max-width: 27ch;
  margin: 0 0 .72rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
}

.sfx-if-why-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.66);
  font-size: .82rem;
  line-height: 1.58;
}

/* Industry proof */
.sfx-if-industries {
  padding: var(--sfx-if-section) var(--sfx-if-inset);
  background: var(--sfx-if-dark);
  color: #fff;
}

.sfx-if-industries-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: 30px clamp(50px, 9vw, 160px);
  margin-bottom: clamp(54px, 6vw, 96px);
}

.sfx-if-industries-head .sfx-if-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.sfx-if-industries-head p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.65;
}

.sfx-if-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sfx-if-industries-grid button {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.sfx-if-industries-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: opacity 260ms ease, transform 700ms cubic-bezier(.2,.75,.25,1);
}

.sfx-if-industries-grid button:hover img,
.sfx-if-industries-grid button:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.sfx-if-industries-grid span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(21px, 1.65vw, 32px);
}

.sfx-if-industries-grid strong {
  font-weight: 500;
}

.sfx-if-industries-grid i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
}

.sfx-if-rollout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
  gap: clamp(50px, 10vw, 190px);
  padding: var(--sfx-if-section) var(--sfx-if-inset);
  background: var(--sfx-if-light);
}

.sfx-if-rollout h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.sfx-if-rollout p {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--sfx-if-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.sfx-if-rollout ul {
  align-self: end;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.sfx-if-rollout li {
  padding: 18px 0;
  border-bottom: 1px solid var(--sfx-if-line);
  font-size: clamp(22px, 1.55vw, 30px);
}

.sfx-if-faq {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 190px);
  padding: var(--sfx-if-section) var(--sfx-if-inset);
  background: var(--sfx-if-dark);
  color: #fff;
}

.sfx-if-faq-head {
  position: sticky;
  top: 130px;
  align-self: start;
}

.sfx-if-faq-list {
  border-top: 1px solid rgba(255,255,255,.2);
}

.sfx-if-faq details {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.sfx-if-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 0;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.sfx-if-faq summary::-webkit-details-marker { display: none; }

.sfx-if-faq summary span {
  font-size: 30px;
  font-weight: 300;
  transition: transform 220ms ease;
}

.sfx-if-faq details[open] summary span { transform: rotate(45deg); }

.sfx-if-faq details div {
  overflow: hidden;
}

.sfx-if-faq details p {
  max-width: 760px;
  padding: 0 54px 30px 0;
  margin-bottom: 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(16px, 1.08vw, 21px);
  line-height: 1.62;
}

.sfx-if-crosslinks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.18);
  border-top: 1px solid rgba(255,255,255,.18);
}

.sfx-if-crosslinks a {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.2vw, 54px);
  background: var(--sfx-if-dark);
  color: #fff;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.sfx-if-crosslinks a:hover,
.sfx-if-crosslinks a:focus-visible {
  background: var(--sfx-if-salmon);
  color: var(--sfx-if-ink);
}

.sfx-if-crosslinks span {
  margin-bottom: 18px;
  color: var(--sfx-if-salmon);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.sfx-if-crosslinks a:hover span,
.sfx-if-crosslinks a:focus-visible span { color: var(--sfx-if-ink); }

.sfx-if-crosslinks strong {
  max-width: 360px;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 500;
  line-height: 1.16;
}

.sfx-if-crosslinks i {
  position: absolute;
  top: 34px;
  right: 36px;
  font-size: 30px;
  font-style: normal;
}

/* Video dialog */
.sfx-if-lightbox[hidden] { display: none; }

.sfx-if-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 70px);
  background: rgba(8,9,10,.9);
  backdrop-filter: blur(16px);
}

.sfx-if-lightbox > button {
  position: fixed;
  z-index: 2;
  top: max(20px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0 !important;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: var(--sfx-if-dark-soft);
  color: #fff;
  font-size: 32px;
  line-height: 1 !important;
  cursor: pointer;
}

.sfx-if-lightbox [data-sfx-if-player] {
  width: min(1280px, 92vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.sfx-if-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.sfx-if-dialog-open { overflow: hidden; }

@media (max-width: 1100px) {
  :root { --sfx-if-inset: clamp(1.4rem, 5.4vw, 4.5rem); }
  .sfx-if-industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sfx-if-client-logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sfx-if-examples-head,
  .sfx-if-process,
  .sfx-if-why-intro,
  .sfx-if-industries-head,
  .sfx-if-rollout,
  .sfx-if-faq { gap: 42px; }
  .sfx-if-consult-card { grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr); gap: 46px; }
}

@media (max-width: 820px) {
  :root {
    --sfx-if-inset: 1.75rem;
    --sfx-if-section: 5.1rem;
  }
  .sfx-if-examples-head,
  .sfx-if-process,
  .sfx-if-why-intro,
  .sfx-if-industries-head,
  .sfx-if-rollout,
  .sfx-if-faq,
  .sfx-if-consult-card { grid-template-columns: 1fr; }
  .sfx-if-examples-head .sfx-if-eyebrow,
  .sfx-if-industries-head .sfx-if-eyebrow { grid-column: auto; }
  .sfx-if-process > p { padding-top: 0; }
  .sfx-if-consult-person { order: -1; }
  .sfx-if-consult-person { min-height: 30rem; }
  .sfx-if-client-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.8rem 1.2rem; }
  .sfx-if-why-grid { grid-template-columns: 1fr; }
  .sfx-if-faq-head { position: static; }
  .sfx-if-crosslinks { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root {
    --sfx-if-inset: 1.25rem;
    --sfx-if-section: 4.25rem;
  }
  .sfx-if-eyebrow { margin-bottom: 20px; }
  .sfx-if-card-label { right: 0; left: 0; padding: 1.2rem; }
  .sfx-if-card-play { width: 3rem; height: 3rem; }
  .sfx-if-client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sfx-if-consult-card { padding: 20px; border-radius: 22px; }
  .sfx-if-consult-person { min-height: 26rem; }
  .sfx-if-why-grid article { grid-template-columns: 45px minmax(0,1fr); min-height: 0; padding: 24px 20px; }
  .sfx-if-why-grid article > span { width: 38px; height: 38px; }
  .sfx-if-industries-grid span { right: 16px; bottom: 15px; left: 16px; }
  .sfx-if-rollout { gap: 34px; }
  .sfx-if-faq { gap: 48px; }
  .sfx-if-faq summary { padding: 22px 0; }
  .sfx-if-faq details p { padding-right: 0; }
  .sfx-if-crosslinks a { min-height: 170px; }
  .sfx-if-lightbox { padding: 12px; }
  .sfx-if-lightbox [data-sfx-if-player] { width: 100%; border-radius: 12px; }
}

@media (max-width: 767px) {
  .sfx-if-donor--hero :is(h1, .elementor-heading-title) {
    font-size: clamp(2.35rem, 10.4vw, 3.35rem) !important;
    line-height: 1 !important;
  }
  .sfx-if-example-grid { grid-template-columns: 1fr; }
  .sfx-if-card,
  .sfx-if-card:nth-child(1),
  .sfx-if-card:nth-child(2) {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }
  .sfx-if-industries-grid { grid-template-columns: 1fr; }
}

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

/* Shared service-page template. The Imagefilm preview is the visual source
   of truth; these selectors give the other service routes the same rhythm
   without pulling their old Elementor containers back into the layout. */
.sfx-service-template {
  background: var(--sfx-if-dark);
  color: #fff;
}

.sfx-service-template .sfx-if-service-hero {
  position: relative;
  display: flex;
  min-height: min(88svh, 900px);
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(7rem, 15vw, 13rem) var(--sfx-if-inset) clamp(3.5rem, 7vw, 7rem);
  background: #111214;
}

.sfx-service-template .sfx-if-service-hero-media,
.sfx-service-template .sfx-if-service-hero-media::after,
.sfx-service-template .sfx-if-service-hero-video,
.sfx-service-template .sfx-if-service-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sfx-service-template .sfx-if-service-hero-media { z-index: -1; }

.sfx-service-template .sfx-if-service-hero-media::after {
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.2) 72%), linear-gradient(0deg, rgba(0,0,0,.6), transparent 60%);
  content: "";
}

.sfx-service-template .sfx-if-service-hero-video,
.sfx-service-template .sfx-if-service-hero-image {
  object-fit: cover;
}

.sfx-service-template .sfx-if-service-hero-content {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.sfx-service-template .sfx-if-service-hero-content .sfx-if-eyebrow { margin-bottom: 1.6rem; }

.sfx-service-template .sfx-if-service-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 3.6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.045em;
}

.sfx-service-template .sfx-if-service-hero-tagline {
  max-width: 42rem;
  margin: 2rem 0 2.2rem;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.5;
}

.sfx-service-template .sfx-if-service-hero .sfx-if-button {
  background: var(--sfx-if-salmon);
  color: var(--sfx-if-ink);
}

.sfx-service-template .sfx-if-service-hero-mark {
  margin: 3.5rem 0 0;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.sfx-service-template .sfx-if-service-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: center;
  padding: var(--sfx-if-section) var(--sfx-if-inset);
  background: var(--sfx-if-dark);
}

.sfx-service-template .sfx-if-service-intro-copy { max-width: 690px; }

.sfx-service-template .sfx-if-service-intro h2,
.sfx-service-template .sfx-if-service-section-head h2 {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.sfx-service-template .sfx-if-service-intro-copy > p:not(.sfx-if-eyebrow),
.sfx-service-template .sfx-if-service-section-head > p:not(.sfx-if-eyebrow) {
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  line-height: 1.65;
}

.sfx-service-template .sfx-if-service-intro-media {
  min-height: clamp(23rem, 45vw, 43rem);
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #121315;
}

.sfx-service-template .sfx-if-service-intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.sfx-service-template .sfx-if-service-checklist {
  display: grid;
  gap: 0;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.sfx-service-template .sfx-if-service-checklist li {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.35;
}

.sfx-service-template .sfx-if-service-checklist li span:first-child {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
  place-items: center;
  border: 1px solid var(--sfx-if-salmon);
  border-radius: 50%;
  color: var(--sfx-if-salmon);
  font-size: .85rem;
}

.sfx-service-template .sfx-if-service-process,
.sfx-service-template .sfx-if-service-marketing {
  padding: var(--sfx-if-section) var(--sfx-if-inset);
  background: var(--sfx-if-dark);
}

.sfx-service-template .sfx-if-service-process {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: start;
}

.sfx-service-template .sfx-if-service-section-head { position: sticky; top: 7.5rem; }

.sfx-service-template .sfx-if-service-step-grid {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.2);
}

.sfx-service-template .sfx-if-service-step {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.8rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.sfx-service-template .sfx-if-service-step-num {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(255,129,132,.65);
  border-radius: 50%;
  color: var(--sfx-if-salmon);
  font-size: .75rem;
}

.sfx-service-template .sfx-if-service-step h3,
.sfx-service-template .sfx-if-service-channel-grid h3 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: clamp(1.3rem, 1.7vw, 1.9rem);
  font-weight: 450;
  line-height: 1.2;
}

.sfx-service-template .sfx-if-service-step p,
.sfx-service-template .sfx-if-service-channel-grid p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 1rem;
  line-height: 1.6;
}

.sfx-service-template .sfx-if-service-marketing {
  background: var(--sfx-if-dark-soft);
}

.sfx-service-template .sfx-if-service-marketing .sfx-if-service-section-head {
  position: static;
  max-width: 830px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.sfx-service-template .sfx-if-service-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 6vw, 7rem);
  width: min(100%, 1180px);
  margin-left: auto;
}

.sfx-service-template .sfx-if-service-channel-grid article {
  min-height: 12rem;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.sfx-service-template .sfx-if-service-channel-grid article:nth-last-child(-n+2) {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.sfx-service-template .sfx-if-service-marketing .sfx-if-eyebrow,
.sfx-service-template .sfx-if-service-process .sfx-if-eyebrow {
  color: var(--sfx-if-salmon);
}

.sfx-service-template .sfx-if-service-marketing .sfx-if-service-section-head h2 {
  max-width: 18ch;
}

@media (max-width: 820px) {
  .sfx-service-template .sfx-if-service-intro,
  .sfx-service-template .sfx-if-service-process { grid-template-columns: 1fr; gap: 3rem; }
  .sfx-service-template .sfx-if-service-section-head { position: static; }
  .sfx-service-template .sfx-if-service-intro-media { min-height: 24rem; }
}

@media (max-width: 620px) {
  .sfx-service-template .sfx-if-service-hero { min-height: 78svh; padding-top: 8rem; }
  .sfx-service-template .sfx-if-service-hero h1 { max-width: 11ch; font-size: clamp(2.35rem, 10.4vw, 3.35rem); }
  .sfx-service-template .sfx-if-service-hero-tagline { margin-top: 1.35rem; }
  .sfx-service-template .sfx-if-service-channel-grid { grid-template-columns: 1fr; }
  .sfx-service-template .sfx-if-service-channel-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .sfx-service-template .sfx-if-service-channel-grid article:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
  .sfx-service-template .sfx-if-service-step { grid-template-columns: 2.5rem minmax(0,1fr); gap: 1rem; }
}
