/* =========================================================
PLAB PRODUCTIONS WEBSITE v5
Anton headings. Manrope body. Orange #FE6300.
========================================================= */

:root {
  --orange: #FE6300;
  --black: #050505;
  --black-2: #0A0A0A;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,.72);
  --soft: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.045);
  --card-hover: rgba(255,255,255,.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: Manrope, sans-serif; overflow-x: hidden; }
a { color: inherit; }

/* SECTION 01 HERO */
.plab-hero { position: relative; min-height: 100vh; overflow: hidden; background: #000; color: #fff; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(1.08); transform: scale(1.01); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 72% 26%, rgba(254,99,0,.13), transparent 34%), linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.58), rgba(0,0,0,.94)); z-index: 1; }
.plab-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;

    padding: 28px 60px;

    display: flex;
    align-items: center;

    gap: 50px;
}
.plab-logo img { height: 72px; width: auto; display: block; }
.plab-menu {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
}
.plab-menu a { text-decoration: none; color: rgba(255,255,255,.88); font-size: 15px; font-weight: 700; transition: color .25s ease; }
.plab-menu a:hover { color: var(--orange); }
.nav-services {
    position: relative;
}

.nav-services::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 18px;
}

.nav-services-summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
    transition: color .25s ease, text-shadow .25s ease;
}

.nav-services-summary::-webkit-details-marker {
    display: none;
}

.nav-services-summary:hover,
.nav-services.is-nav-open .nav-services-summary,
.nav-services:focus-within .nav-services-summary {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(254,99,0,.34);
}

.nav-services-arrow {
    display: inline-block;
    color: var(--orange);
    font-size: 10px;
    line-height: 1;
    transform: translateY(1px);
    transition: transform .2s ease;
}

.nav-services:hover .nav-services-arrow,
.nav-services.is-nav-open .nav-services-arrow,
.nav-services:focus-within .nav-services-arrow {
    transform: translateY(1px) rotate(180deg);
}

.nav-services.is-nav-closing .nav-services-arrow {
    transform: translateY(1px);
}

.nav-services-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 20;
    min-width: 248px;
    padding: 12px;
    border: 1px solid rgba(254,99,0,.42);
    border-radius: 16px;
    background:
        radial-gradient(circle at 78% 18%, rgba(254,99,0,.16), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
        rgba(0,0,0,.74);
    box-shadow: 0 26px 80px rgba(0,0,0,.56), 0 0 48px rgba(254,99,0,.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}

.nav-services.is-nav-open .nav-services-panel,
.nav-services:focus-within .nav-services-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 4px);
    transition-delay: 0s;
}

.nav-services.is-nav-closing .nav-services-panel {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}

.nav-services-panel a {
    display: block;
    padding: 12px 13px;
    border-radius: 11px;
    color: rgba(255,255,255,.84);
    line-height: 1.2;
}

.nav-services-panel a:hover,
.nav-services-panel a:focus-visible {
    color: var(--orange);
    background: rgba(254,99,0,.08);
    text-shadow: 0 0 18px rgba(254,99,0,.36);
    outline: none;
}

.nav-services-divider {
    display: block;
    height: 1px;
    margin: 8px 10px;
    background: linear-gradient(90deg, transparent, rgba(254,99,0,.42), rgba(255,255,255,.14), transparent);
}
.nav-cta{

    margin-left:16px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    background:#FE6300;

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:800;

    transition:.35s ease;

    box-shadow:0 18px 45px rgba(254,99,0,.25);

}

.nav-cta:hover{

    transform:translateY(-2px);

    box-shadow:0 25px 65px rgba(254,99,0,.4);

}

.mobile-nav-toggle,
.mobile-menu-panel {
    display: none;
}

.hero-content { position: relative; z-index: 3; min-height: 100vh; max-width: 1400px; margin: 0 auto; padding: 120px 60px 110px; display: flex; flex-direction: column; justify-content: center; }
.framework-badge { display: inline-flex; width: fit-content; padding: 12px 20px; border-radius: 999px; color: var(--orange); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); font-size: 14px; font-weight: 800; margin-bottom: 28px; }
.hero-title { font-family: Anton, sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(84px, 11vw, 180px); line-height: .88; letter-spacing: -.03em; margin: 0; }
.hero-title span { display: block; margin-bottom: .08em; }
.hero-title span:last-child { margin-bottom: 0; }
.hero-copy { margin-top: 32px; max-width: 640px; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: rgba(255,255,255,.78); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 42px; }
.hero-cta-option { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-cta-option span { color: rgba(255,255,255,.54); font-size: 13px; font-weight: 700; line-height: 1.25; text-align: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 18px 34px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 15px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 18px 50px rgba(254,99,0,.32); }
.btn-primary:hover { box-shadow: 0 24px 70px rgba(254,99,0,.46); }
.btn-secondary { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.20); }
.btn-secondary:hover { background: rgba(255,255,255,.10); }
.hero-points { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 48px; font-size: 18px; font-weight: 800; }
.hero-points span { color: rgba(255,255,255,.86); }
.hero-points i { color: var(--orange); font-style: normal; }

/* SHARED SECTION STYLE */
.section-eyebrow { color: var(--orange); font-size: 14px; font-weight: 800; letter-spacing: .14em; margin-bottom: 26px; }
.section-title { font-family: Anton, sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(54px, 7vw, 118px); line-height: .96; letter-spacing: -.015em; max-width: 1120px; margin: 0; }
.section-title span { display: block; color: var(--orange); }

/* SECTION 02 PROBLEM */
.problem-section { position: relative; overflow: hidden; background: #050505; color: #fff; padding: 140px 24px; }
.section-bg-glow { position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(254,99,0,.18), transparent 32%), radial-gradient(circle at 10% 90%, rgba(254,99,0,.08), transparent 28%), linear-gradient(180deg, #050505 0%, #0A0A0A 100%); pointer-events: none; }
.problem-container { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; }
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; margin-top: 80px; align-items: start; }
.problem-copy { max-width: 590px; }
.problem-copy p { font-size: 21px; line-height: 1.62; color: rgba(255,255,255,.72); margin-bottom: 26px; }
.problem-copy strong { color: #fff; font-weight: 800; }
.problem-list { display: grid; gap: 18px; }
.problem-card { border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.045); backdrop-filter: blur(10px); border-radius: 28px; padding: 34px; transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.problem-card:hover { transform: translateY(-6px); border-color: rgba(254,99,0,.45); background: rgba(255,255,255,.07); }
.problem-number { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: .12em; margin-bottom: 18px; }
.problem-card h3 { font-size: 28px; line-height: 1.1; margin: 0 0 12px; color: #fff; letter-spacing: -.02em; }
.problem-card p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.65); margin: 0; }

/* SECTION 03 FRAMEWORK */
.framework-section { position: relative; overflow: hidden; background: radial-gradient(circle at 20% 10%, rgba(254,99,0,.14), transparent 30%), linear-gradient(180deg, #0A0A0A 0%, #050505 100%); color: #fff; padding: 140px 24px; }
.framework-container { max-width: 1360px; margin: 0 auto; }
.framework-title { max-width: 1180px; }
.framework-intro { margin-top: 34px; max-width: 820px; font-size: 22px; line-height: 1.6; color: rgba(255,255,255,.72); }
.framework-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 74px; }
.framework-card { min-height: 260px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.045); border-radius: 28px; padding: 34px; transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.framework-card:hover { transform: translateY(-6px); border-color: rgba(254,99,0,.45); background: rgba(255,255,255,.07); }
.framework-step { color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: .12em; margin-bottom: 22px; }
.framework-card h3 { font-size: 30px; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px; }
.framework-card p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.66); }
.highlight-card { background: linear-gradient(135deg, rgba(254,99,0,.22), rgba(255,255,255,.045)); border-color: rgba(254,99,0,.45); }

/* SECTION 04 MOTION VIDEO - REVISED */
.motion-section {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 140px 24px;
  color: #fff;
}

.motion-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.motion-copy p {
  margin-top: 34px;
  max-width: 590px;
  font-size: 21px;
  line-height: 1.62;
  color: rgba(255,255,255,.72);
}

.motion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.motion-tags span {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}

.motion-video-stage {
  position: relative;
  width: 100%;
  background: #000;
}

.motion-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
  border: none;
  outline: none;
  box-shadow: none;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .framework-flow, .problem-grid, .motion-container { grid-template-columns: 1fr; }
  .problem-grid { gap: 42px; margin-top: 54px; }
  .framework-flow { gap: 18px; margin-top: 54px; }
  .motion-container { gap: 54px; }
}

@media (max-width: 900px) {
  .plab-nav { padding: 24px; flex-wrap: wrap; gap: 16px; }
  .plab-logo img { height: 44px; }
  .plab-menu {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-left: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(0,0,0,.42);
    box-shadow: 0 20px 58px rgba(0,0,0,.34);
    backdrop-filter: blur(14px);
  }
  .plab-menu > a,
  .nav-services-summary {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 11px;
  }
  .nav-services-summary {
    justify-content: space-between;
  }
  .nav-services::after {
    display: none;
  }
  .nav-services-panel {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 4px 0 0 12px;
    border: 0;
    border-left: 1px solid rgba(254,99,0,.36);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    display: none;
  }
  .nav-services[open] .nav-services-panel {
    display: block;
  }
  .nav-services.is-nav-open .nav-services-panel,
  .nav-services:focus-within .nav-services-panel {
    transform: none;
  }
  .nav-services-panel a {
    padding: 11px 12px;
  }
  .nav-services-divider {
    margin: 7px 12px;
  }
  .hero-content { padding: 120px 24px 60px; }
  .hero-title { font-size: 64px; }
  .hero-buttons { flex-direction: column; max-width: 340px; }
  .hero-cta-option,
  .hero-cta-option .btn { width: 100%; }
  .hero-points { flex-direction: column; gap: 16px; font-size: 16px; }
  .problem-section, .framework-section, .motion-section { padding: 100px 22px; }
  .problem-copy p, .motion-copy p { font-size: 18px; }
  .problem-card, .framework-card { padding: 28px; border-radius: 22px; }
  .problem-card h3, .framework-card h3 { font-size: 24px; }
  .framework-intro { font-size: 18px; }
}

@media (max-width: 768px) {
  .motion-container {
    display: grid;
    gap: 26px;
  }

  .motion-copy {
    display: contents;
  }

  .motion-copy .section-eyebrow {
    order: 1;
  }

  .motion-title {
    order: 2;
  }

  .motion-video-stage {
    order: 3;
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .motion-copy p {
    order: 4;
    margin-top: 0;
  }

  .motion-tags {
    order: 5;
    margin-top: 2px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open::before,
  body.mobile-nav-closing::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 4;
    background:
      radial-gradient(circle at 50% 0%, rgba(254,99,0,.08), transparent 42%),
      rgba(0,0,0,.54);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    pointer-events: none;
    opacity: 1;
    transition: opacity .32s cubic-bezier(.16, 1, .3, 1), backdrop-filter .32s cubic-bezier(.16, 1, .3, 1);
    animation: mobileNavBackdropIn .32s cubic-bezier(.16, 1, .3, 1) both;
  }

  body.mobile-nav-closing::before {
    opacity: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    animation: none;
  }

  .plab-nav {
    position: absolute;
    top: max(12px, env(safe-area-inset-top));
    left: 14px;
    right: 14px;
    width: auto;
    min-height: 56px;
    padding: 8px 9px 8px 14px;
    gap: 12px;
    flex-wrap: nowrap;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 17px;
    background:
      radial-gradient(circle at 84% 12%, rgba(254,99,0,.11), transparent 38%),
      linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.035)),
      rgba(5,5,5,.86);
    box-shadow: 0 14px 44px rgba(0,0,0,.46), 0 0 26px rgba(254,99,0,.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .plab-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .plab-logo img {
    height: 34px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 10px 28px rgba(0,0,0,.30);
    cursor: pointer;
    transition: border-color .28s cubic-bezier(.16, 1, .3, 1), box-shadow .28s cubic-bezier(.16, 1, .3, 1), transform .28s cubic-bezier(.16, 1, .3, 1), background .28s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), opacity .2s ease, background .28s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus-visible {
    border-color: rgba(254,99,0,.58);
    background: rgba(254,99,0,.10);
    box-shadow: inset 0 0 0 1px rgba(254,99,0,.10), 0 12px 32px rgba(0,0,0,.36), 0 0 24px rgba(254,99,0,.16);
    outline: none;
  }

  .plab-nav.is-mobile-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--orange);
  }

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

  .plab-nav.is-mobile-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--orange);
  }

  .plab-menu {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(620px, calc(100vh - 104px - env(safe-area-inset-top)));
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    margin-left: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    background:
      radial-gradient(circle at 86% 0%, rgba(254,99,0,.14), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
      rgba(3,3,3,.94);
    box-shadow: 0 30px 90px rgba(0,0,0,.72), 0 0 44px rgba(254,99,0,.10);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(18px, -20px) scale(.12, .18);
    transform-origin: top right;
    transition:
      opacity .34s cubic-bezier(.16, 1, .3, 1),
      transform .46s cubic-bezier(.16, 1, .3, 1),
      border-radius .46s cubic-bezier(.16, 1, .3, 1),
      visibility 0s linear .46s;
  }

  .plab-nav.is-mobile-open .mobile-menu-panel,
  .plab-nav.is-mobile-closing .mobile-menu-panel {
    visibility: visible;
  }

  .plab-nav.is-mobile-open .mobile-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    border-radius: 22px;
    transition-delay: 0s;
  }

  .plab-nav.is-mobile-closing .mobile-menu-panel {
    opacity: 0;
    pointer-events: none;
    transform: translate(18px, -20px) scale(.12, .18);
    border-radius: 28px;
    transition:
      opacity .24s ease,
      transform .38s cubic-bezier(.5, 0, .75, 0),
      border-radius .38s cubic-bezier(.5, 0, .75, 0),
      visibility 0s linear .38s;
  }

  .mobile-menu-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: 14px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.055);
    opacity: 0;
    transform: translate(8px, -4px);
    transition:
      opacity .26s cubic-bezier(.16, 1, .3, 1),
      transform .32s cubic-bezier(.16, 1, .3, 1),
      color .18s ease,
      background .18s ease,
      border-color .18s ease,
      box-shadow .18s ease;
  }

  .plab-nav.is-mobile-open .mobile-menu-panel a {
    opacity: 1;
    transform: translateY(0);
  }

  .plab-nav.is-mobile-closing .mobile-menu-panel a {
    opacity: 0;
    transform: translate(8px, -4px);
    transition-delay: 0s;
  }

  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(1) { transition-delay: .16s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(2) { transition-delay: .195s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(3) { transition-delay: .23s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(4) { transition-delay: .265s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(5) { transition-delay: .30s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(6) { transition-delay: .335s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(7) { transition-delay: .37s; }
  .plab-nav.is-mobile-open .mobile-menu-panel a:nth-child(8) { transition-delay: .405s; }

  .plab-nav.is-mobile-open .mobile-menu-panel a:hover,
  .plab-nav.is-mobile-open .mobile-menu-panel a:focus-visible {
    transition-delay: 0s;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible {
    color: #fff;
    border-color: rgba(254,99,0,.28);
    background: rgba(254,99,0,.105);
    box-shadow: inset 0 0 0 1px rgba(254,99,0,.12), 0 0 20px rgba(254,99,0,.10);
    transform: translateY(-1px);
    outline: none;
  }

  .mobile-menu-panel a[href="quote.html"],
  .mobile-menu-panel a[href="marketing-audit-start.html"] {
    border: 1px solid rgba(254,99,0,.34);
    background:
      linear-gradient(135deg, rgba(254,99,0,.16), rgba(255,255,255,.035)),
      rgba(254,99,0,.06);
    color: #fff;
    box-shadow: 0 0 24px rgba(254,99,0,.08);
  }

  .mobile-menu-panel a[href="marketing-audit-start.html"] {
    color: var(--orange);
  }

  .hero-content,
  .service-page-hero-inner {
    padding-top: 136px;
  }

  .hero-title {
    font-size: 60px;
  }

  .service-page-title {
    font-size: clamp(48px, 16vw, 70px);
  }

  .plab-hero .hero-points {
    order: 1;
    margin-top: 30px;
  }

  .plab-hero .hero-buttons {
    order: 2;
    margin-top: 30px;
  }

  .plab-hero .hero-cta-option span {
    order: 1;
  }

  .plab-hero .hero-cta-option .btn {
    order: 2;
  }

  .problem-card.is-scroll-active {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(254,99,0,.50);
    background: rgba(255,255,255,.075);
    box-shadow: 0 18px 46px rgba(0,0,0,.28), 0 0 32px rgba(254,99,0,.16);
  }

  .problem-card.is-scroll-active h3 {
    color: #fff;
    text-shadow: 0 0 22px rgba(254,99,0,.14);
  }

  .problem-card.is-scroll-active p {
    color: rgba(255,255,255,.78);
  }

  .services-grid .service-card.is-scroll-active {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(254,99,0,.58);
    background:
      radial-gradient(circle at 78% 18%, rgba(254,99,0,.16), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.038)),
      rgba(255,255,255,.055);
    box-shadow: 0 22px 58px rgba(0,0,0,.32), 0 0 42px rgba(254,99,0,.18);
  }

  .services-grid .service-card.is-scroll-active h3 {
    color: #fff;
    text-shadow: 0 0 22px rgba(254,99,0,.14);
  }

  .services-grid .service-card.is-scroll-active p {
    color: rgba(255,255,255,.78);
  }

  .services-grid .service-card.is-scroll-active .service-icon {
    border-color: rgba(254,99,0,.58);
    background: rgba(254,99,0,.14);
    box-shadow: 0 0 32px rgba(254,99,0,.18);
  }

  .brand-benefit-grid .brand-glass-card.is-scroll-active,
  .brand-process-grid .brand-process-step.is-scroll-active,
  .brand-faq-grid .brand-faq-card.is-scroll-active {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(254,99,0,.52);
    background:
      radial-gradient(circle at 78% 18%, rgba(254,99,0,.14), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.038)),
      rgba(255,255,255,.055);
    box-shadow: 0 22px 58px rgba(0,0,0,.32), 0 0 42px rgba(254,99,0,.16);
  }

  .brand-benefit-grid .brand-glass-card.is-scroll-active h3,
  .brand-process-grid .brand-process-step.is-scroll-active h3,
  .brand-faq-grid .brand-faq-card.is-scroll-active h3 {
    color: #fff;
    text-shadow: 0 0 22px rgba(254,99,0,.14);
  }

  .brand-benefit-grid .brand-glass-card.is-scroll-active p,
  .brand-process-grid .brand-process-step.is-scroll-active p,
  .brand-faq-grid .brand-faq-card.is-scroll-active p {
    color: rgba(255,255,255,.78);
  }

  @keyframes mobileNavBackdropIn {
    from {
      opacity: 0;
      backdrop-filter: blur(0);
      -webkit-backdrop-filter: blur(0);
    }
    to {
      opacity: 1;
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(7px);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  body.mobile-nav-open::before,
  body.mobile-nav-closing::before,
  .mobile-nav-toggle,
  .mobile-nav-toggle span,
  .mobile-menu-panel,
  .mobile-menu-panel a,
  .problem-card,
  .services-grid .service-card,
  .brand-benefit-grid .brand-glass-card,
  .brand-process-grid .brand-process-step,
  .brand-faq-grid .brand-faq-card,
  .testimonial-use-grid span {
    animation: none;
    transition-duration: .01ms;
    transition-delay: 0s;
  }

  .mobile-menu-panel,
  .plab-nav.is-mobile-open .mobile-menu-panel,
  .plab-nav.is-mobile-closing .mobile-menu-panel,
  .mobile-menu-panel a,
  .plab-nav.is-mobile-open .mobile-menu-panel a,
  .plab-nav.is-mobile-closing .mobile-menu-panel a,
  .problem-card.is-scroll-active,
  .services-grid .service-card.is-scroll-active,
  .brand-benefit-grid .brand-glass-card.is-scroll-active,
  .brand-process-grid .brand-process-step.is-scroll-active,
  .brand-faq-grid .brand-faq-card.is-scroll-active,
  .testimonial-use-grid span.is-scroll-active {
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-title { font-size: 56px; }
  .hero-copy { font-size: 17px; }
  .section-title { font-size: 48px; }
  .section-eyebrow { font-size: 12px; }
}



/* =========================
SECTION 05 SERVICES
========================= */

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(254,99,0,.14), transparent 30%),
    linear-gradient(180deg, #000 0%, #050505 100%);
  padding: 140px 24px;
  color: #fff;
}

.services-container {
  max-width: 1360px;
  margin: 0 auto;
}

.services-title {
  max-width: 1180px;
}

.services-intro {
  margin-top: 34px;
  max-width: 820px;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 74px;
}

.service-card {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(255,255,255,.105);
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  border-radius: 28px;
  padding: 34px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 88px rgba(0,0,0,.34);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 78% 22%, rgba(254,99,0,.18), transparent 38%);
  opacity: .76;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254,99,0,.58);
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.038)),
    rgba(255,255,255,.045);
  box-shadow: 0 44px 120px rgba(0,0,0,.52), 0 0 96px rgba(254,99,0,.15);
}

.service-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(254,99,0,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #FE6300;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 0 28px rgba(254,99,0,.10);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.service-title-mobile-break {
  display: none;
}

.service-card p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.66);
}

.service-card-featured {
  background:
    radial-gradient(circle at 70% 22%, rgba(254,99,0,.22), transparent 38%),
    linear-gradient(135deg, rgba(254,99,0,.18), rgba(255,255,255,.045)),
    rgba(255,255,255,.04);
  border-color: rgba(254,99,0,.50);
  box-shadow: 0 34px 105px rgba(0,0,0,.44), 0 0 88px rgba(254,99,0,.12);
}

.service-card-featured:hover {
  border-color: rgba(254,99,0,.72);
  box-shadow: 0 48px 130px rgba(0,0,0,.58), 0 0 125px rgba(254,99,0,.24);
}

.service-card-featured .service-icon {
  border-color: rgba(254,99,0,.42);
  background: rgba(254,99,0,.10);
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 54px;
  }
}

@media (max-width: 900px) {
  .services-section {
    padding: 100px 22px;
  }

  .services-intro {
    font-size: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
    border-radius: 22px;
  }

  .service-icon {
    top: 22px;
    right: 22px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .service-title-mobile-break {
    display: block;
  }

  .services-grid + .services-related-links {
    margin-top: 46px;
  }
}

/* Premium Services micro-scenes */
.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 50% 22%, rgba(254,99,0,.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(254,99,0,.66);
  box-shadow: 0 48px 132px rgba(0,0,0,.58), 0 0 118px rgba(254,99,0,.20);
}

.service-card-featured {
  background:
    radial-gradient(circle at 50% 24%, rgba(254,99,0,.22), transparent 38%),
    linear-gradient(135deg, rgba(254,99,0,.20), rgba(255,255,255,.045)),
    rgba(255,255,255,.04);
}

.service-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 178px;
  margin: 4px 0 26px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(254,99,0,.12), transparent 38%),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    rgba(0,0,0,.28);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 0 58px rgba(0,0,0,.34), 0 0 48px rgba(254,99,0,.08);
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.service-card:hover .service-scene {
  transform: translateY(-3px);
  border-color: rgba(254,99,0,.34);
  box-shadow: inset 0 0 72px rgba(254,99,0,.08), 0 0 72px rgba(254,99,0,.16);
}

.service-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.07) 48%, transparent 58%);
  opacity: .26;
  transform: translateX(-65%);
  animation: serviceSceneSheen 7s ease-in-out infinite;
  pointer-events: none;
}

.service-scene-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scene-line,
.scene-wire,
.scene-dash,
.scene-star {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.scene-line {
  stroke: #FE6300;
  stroke-width: 2.8;
}

.scene-wire,
.scene-dash,
.scene-star {
  stroke: rgba(255,255,255,.70);
  stroke-width: 2.1;
}

.scene-dash {
  stroke-dasharray: 8 9;
  animation: serviceDashFlow 3.6s linear infinite;
}

.scene-soft-fill {
  fill: rgba(254,99,0,.10);
}

.scene-glow {
  fill: #FE6300;
  opacity: .13;
  filter: drop-shadow(0 0 24px rgba(254,99,0,.42));
}

.scene-dot {
  fill: #FE6300;
  filter: drop-shadow(0 0 10px rgba(254,99,0,.70));
}

.scene-text,
.scene-label {
  fill: rgba(255,255,255,.88);
  font-family: Manrope, sans-serif;
  font-weight: 900;
}

.scene-text {
  font-size: 17px;
}

.scene-label {
  font-size: 8px;
}

.scene-core-glow,
.scene-play,
.scene-core,
.scene-engine-core {
  animation: serviceCorePulse 2.8s ease-in-out infinite;
}

.scene-wave {
  animation: serviceWave 2.8s ease-in-out infinite;
}

.scene-wave-two {
  animation-delay: .22s;
}

.scene-tile {
  transform-origin: 120px 85px;
  animation: serviceTileDrift 6s ease-in-out infinite;
}

.scene-tile-two {
  animation-delay: .45s;
}

.scene-tile-three {
  animation-delay: .9s;
}

.scene-tile-four {
  animation-delay: 1.35s;
}

.scene-moving-dot {
  animation: serviceDotOrbit 6.6s linear infinite;
  transform-origin: 120px 85px;
}

.scene-star {
  stroke: #FE6300;
  stroke-width: 2.3;
  animation: serviceTrustGlow 2.6s ease-in-out infinite;
}

.scene-star-two {
  animation-delay: .2s;
}

.scene-star-three {
  animation-delay: .4s;
}

.scene-ripple {
  animation-duration: 3s;
}

.scene-ripple-two {
  animation-delay: .45s;
}

.scene-target,
.scene-ad-card,
.scene-cursor {
  animation: serviceTargetBreathe 2.8s ease-in-out infinite;
}

.scene-lead-dot {
  animation: serviceLeadBlink 2.4s ease-in-out infinite;
}

.scene-lead-two {
  animation-delay: .3s;
}

.scene-lead-three {
  animation-delay: .6s;
}

.scene-workflow {
  stroke: #FE6300;
  stroke-width: 2.5;
  stroke-dasharray: 10 12;
}

.scene-flow-dot {
  animation: serviceWorkflowTravel 4.2s ease-in-out infinite;
}

.scene-stage {
  animation: serviceStagePulse 4.2s ease-in-out infinite;
}

.scene-stage-two {
  animation-delay: .35s;
}

.scene-stage-three {
  animation-delay: .7s;
}

.scene-stage-four {
  animation-delay: 1.05s;
}

.service-scene-engine {
  height: 190px;
  box-shadow: inset 0 0 84px rgba(254,99,0,.10), 0 0 92px rgba(254,99,0,.18);
}

.scene-engine-glow {
  opacity: .22;
  animation: serviceEngineGlow 3s ease-in-out infinite;
}

.scene-engine-ring {
  transform-origin: 120px 85px;
}

.scene-engine-ring-one {
  animation: serviceOrbit 12s linear infinite;
}

.scene-engine-ring-two {
  animation: serviceOrbitReverse 16s linear infinite;
}

.scene-engine-dot {
  transform-origin: 120px 85px;
  animation: serviceDotOrbit 7.8s linear infinite;
}

.scene-system-node {
  animation: serviceNodePulse 3.4s ease-in-out infinite;
}

.scene-node-ads {
  animation-delay: .25s;
}

.scene-node-crm {
  animation-delay: .5s;
}

.scene-node-email {
  animation-delay: .75s;
}

.scene-node-calls {
  animation-delay: 1s;
}

.service-card:hover .scene-dash {
  animation-duration: 2.2s;
}

.service-card:hover .scene-core-glow,
.service-card:hover .scene-engine-glow {
  opacity: .26;
}

@keyframes serviceSceneSheen {
  0%, 58%, 100% { transform: translateX(-70%); opacity: 0; }
  68% { opacity: .28; }
  84% { transform: translateX(70%); opacity: 0; }
}

@keyframes serviceDashFlow {
  to { stroke-dashoffset: -34; }
}

@keyframes serviceCorePulse {
  0%, 100% { opacity: .82; filter: drop-shadow(0 0 8px rgba(254,99,0,.24)); }
  50% { opacity: 1; filter: drop-shadow(0 0 20px rgba(254,99,0,.58)); }
}

@keyframes serviceWave {
  0%, 100% { opacity: .36; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

@keyframes serviceTileDrift {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(4px,-6px); }
}

@keyframes serviceDotOrbit {
  from { transform: rotate(0deg) translateX(66px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(66px) rotate(-360deg); }
}

@keyframes serviceOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes serviceOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes serviceTrustGlow {
  0%, 100% { opacity: .66; filter: drop-shadow(0 0 5px rgba(254,99,0,.20)); }
  50% { opacity: 1; filter: drop-shadow(0 0 16px rgba(254,99,0,.58)); }
}

@keyframes serviceTargetBreathe {
  0%, 100% { opacity: .78; filter: drop-shadow(0 0 4px rgba(254,99,0,.15)); }
  50% { opacity: 1; filter: drop-shadow(0 0 17px rgba(254,99,0,.48)); }
}

@keyframes serviceLeadBlink {
  0%, 100% { opacity: .42; transform: scale(.86); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes serviceWorkflowTravel {
  0% { transform: translate(0,0); opacity: .55; }
  28% { transform: translate(67px,-40px); opacity: 1; }
  62% { transform: translate(121px,30px); opacity: 1; }
  100% { transform: translate(170px,-4px); opacity: .55; }
}

@keyframes serviceStagePulse {
  0%, 100% { opacity: .78; }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(254,99,0,.36)); }
}

@keyframes serviceEngineGlow {
  0%, 100% { opacity: .18; }
  50% { opacity: .30; }
}

@keyframes serviceNodePulse {
  0%, 100% { opacity: .74; }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(254,99,0,.45)); }
}

@media (max-width: 900px) {
  .service-card {
    min-height: auto;
  }

  .service-scene {
    height: 158px;
    margin-bottom: 22px;
  }

  .service-scene-engine {
    height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-scene::after,
  .scene-dash,
  .scene-core-glow,
  .scene-play,
  .scene-core,
  .scene-engine-core,
  .scene-wave,
  .scene-tile,
  .scene-moving-dot,
  .scene-star,
  .scene-target,
  .scene-ad-card,
  .scene-cursor,
  .scene-lead-dot,
  .scene-flow-dot,
  .scene-stage,
  .scene-engine-glow,
  .scene-engine-ring-one,
  .scene-engine-ring-two,
  .scene-engine-dot,
  .scene-system-node {
    animation: none;
  }
}


/* Services shared marketing engine strip */
.services-engine {
  position: relative;
  margin: 62px 0 -22px;
  overflow: visible;
  background:
    radial-gradient(circle at 18% 48%, rgba(254,99,0,.20), transparent 22%),
    radial-gradient(circle at 84% 54%, rgba(254,99,0,.16), transparent 24%);
}

.services-engine::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4%;
  height: 86%;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-color: transparent;
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 46%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 46%, transparent 78%);
  box-shadow: inset 0 0 70px rgba(0,0,0,.32), 0 0 90px rgba(254,99,0,.08);
  opacity: .52;
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.services-engine::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(254,99,0,.18), rgba(254,99,0,.045) 42%, transparent 72%);
  opacity: .64;
  transform: translateY(-50%);
  animation: servicesEngineSheen 7.6s ease-in-out infinite;
  pointer-events: none;
  filter: blur(16px);
}

.services-engine-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 250px;
  overflow: visible;
}

.engine-ribbon,
.engine-light-stream,
.engine-line,
.engine-board,
.engine-camera-body,
.engine-lens,
.engine-content-card,
.engine-target-ring,
.engine-megaphone,
.engine-crm-line,
.engine-monitor,
.engine-phone-badge,
.engine-ad-wave,
.engine-phone-ring {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.engine-ribbon {
  stroke: url(#engineRibbonGradient);
  stroke-width: 18;
  fill: none;
  opacity: .42;
  filter: blur(.2px) drop-shadow(0 0 18px rgba(254,99,0,.42));
  animation: servicesRibbonBreathe 6.8s ease-in-out infinite;
}

.engine-ribbon-soft {
  stroke-width: 10;
  opacity: .22;
  animation-delay: -2.4s;
}

.engine-light-stream {
  stroke: rgba(254,99,0,.74);
  stroke-width: 4.2;
  fill: none;
  stroke-dasharray: 260 980;
  stroke-dashoffset: 260;
  opacity: .72;
  filter: drop-shadow(0 0 16px rgba(254,99,0,.68));
  animation: servicesLightStream 8.4s cubic-bezier(.45,0,.22,1) infinite;
}

.engine-board,
.engine-camera-body,
.engine-lens,
.engine-content-card,
.engine-target-ring,
.engine-megaphone,
.engine-crm-line,
.engine-monitor,
.engine-phone-badge {
  stroke: #FE6300;
  stroke-width: 2.7;
}

.engine-line,
.engine-ad-wave,
.engine-phone-ring {
  stroke: rgba(255,255,255,.74);
  stroke-width: 2.1;
}

.engine-camera-body,
.engine-content-card,
.engine-monitor,
.engine-phone-badge {
  fill: rgba(0,0,0,.48);
}

.engine-camera-body,
.engine-content-card,
.engine-monitor,
.engine-phone-badge {
  filter: drop-shadow(0 20px 38px rgba(0,0,0,.35));
}

.engine-line-fill-soft,
.engine-lens-core,
.engine-rec-light,
.engine-play,
.engine-particle {
  fill: #FE6300;
  filter: drop-shadow(0 0 12px rgba(254,99,0,.58));
}

.engine-line-fill-soft {
  fill: rgba(254,99,0,.12);
  stroke: #FE6300;
  stroke-width: 2.4;
}

.engine-node-glow {
  fill: #FE6300;
  opacity: .08;
  filter: drop-shadow(0 0 30px rgba(254,99,0,.62));
  transform-box: fill-box;
  transform-origin: center;
  animation: servicesStageGlow 8.4s ease-in-out infinite;
}

.engine-step-one .engine-node-glow { animation-delay: .15s; }
.engine-step-two .engine-node-glow { animation-delay: 1.35s; }
.engine-step-three .engine-node-glow { animation-delay: 2.55s; }
.engine-step-four .engine-node-glow { animation-delay: 3.75s; }
.engine-step-five .engine-node-glow { animation-delay: 4.95s; }
.engine-step-six .engine-node-glow { animation-delay: 6.15s; }

.engine-check {
  stroke: #FE6300;
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(254,99,0,.58));
  stroke-dasharray: 46;
  stroke-dashoffset: 46;
  animation: servicesCheckPop 8.4s ease-in-out infinite;
}

.engine-label {
  fill: rgba(255,255,255,.86);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.engine-particle {
  opacity: 0;
  animation: servicesParticleDrift 8.4s ease-in-out infinite;
}

.engine-particle-two { animation-delay: 1.1s; }
.engine-particle-three { animation-delay: 2.4s; }
.engine-particle-four { animation-delay: 3.8s; }
.engine-particle-five { animation-delay: 5.2s; }

.engine-pawn {
  transform-box: fill-box;
  transform-origin: center;
  animation: servicesPawnMove 8.4s ease-in-out infinite;
}

.engine-knight {
  transform-box: fill-box;
  transform-origin: 50% 80%;
  animation: servicesKnightThink 8.4s ease-in-out infinite;
}

.engine-rec-light,
.engine-lens-core {
  animation: servicesRecPulse 8.4s ease-in-out infinite;
}

.engine-lens {
  animation: servicesLensPulse 8.4s ease-in-out infinite;
}

.engine-content-card,
.engine-play {
  transform-box: fill-box;
  transform-origin: center;
}

.engine-content-vertical-one {
  animation: servicesContentFanOne 8.4s ease-in-out infinite;
}

.engine-content-vertical-two {
  animation: servicesContentFanTwo 8.4s ease-in-out infinite;
}

.engine-content-landscape {
  animation: servicesContentLift 8.4s ease-in-out infinite;
}

.engine-play {
  animation: servicesPlayGlow 8.4s ease-in-out infinite;
}

.engine-target-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: servicesTargetRotate 8.4s ease-in-out infinite;
}

.engine-ad-wave {
  opacity: .35;
  animation: servicesAdWave 8.4s ease-in-out infinite;
}

.engine-ad-wave-two {
  animation-delay: .08s;
}

.engine-crm-line,
.engine-person {
  animation: servicesCrmPulse 8.4s ease-in-out infinite;
}

.engine-person {
  transform-box: fill-box;
  transform-origin: center;
}

.engine-person-center {
  animation-name: servicesCrmPulseCenter;
}

.engine-phone-badge,
.engine-phone-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: servicesPhoneRing 8.4s ease-in-out infinite;
}

.engine-phone-ring {
  opacity: 0;
  animation-name: servicesPhoneWave;
}

.services-grid {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.service-card {
  min-height: 260px;
  display: block;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.026)),
    rgba(255,255,255,.035);
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(254,99,0,.48);
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.034)),
    rgba(255,255,255,.04);
  box-shadow: 0 38px 104px rgba(0,0,0,.50), 0 0 72px rgba(254,99,0,.13);
}

.service-card-featured {
  background:
    radial-gradient(circle at 82% 12%, rgba(254,99,0,.16), transparent 34%),
    linear-gradient(135deg, rgba(254,99,0,.13), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
}

@keyframes servicesRibbonBreathe {
  0%, 100% { opacity: .30; stroke-width: 14; }
  48% { opacity: .54; stroke-width: 20; }
}

@keyframes servicesLightStream {
  0% { stroke-dashoffset: 1100; opacity: 0; }
  9% { opacity: .72; }
  86% { opacity: .74; }
  100% { stroke-dashoffset: -360; opacity: 0; }
}

@keyframes servicesStageGlow {
  0%, 100% { opacity: .08; transform: scale(.96); }
  8%, 15% { opacity: .24; transform: scale(1.08); }
  22% { opacity: .10; transform: scale(1); }
}

@keyframes servicesEngineSheen {
  0%, 100% { opacity: .44; transform: translateY(-50%) scaleX(.92); }
  50% { opacity: .72; transform: translateY(-50%) scaleX(1.04); }
}

@keyframes servicesParticleDrift {
  0%, 100% { opacity: 0; transform: translate(0,0) scale(.8); }
  10% { opacity: .92; }
  28% { opacity: 0; transform: translate(24px,-14px) scale(1.08); }
}

@keyframes servicesPawnMove {
  0%, 5%, 15%, 100% { transform: translate(0,0); }
  8%, 12% { transform: translate(8px,-8px); }
}

@keyframes servicesKnightThink {
  0%, 5%, 15%, 100% { transform: rotate(0deg); }
  8%, 12% { transform: rotate(-5deg); }
}

@keyframes servicesRecPulse {
  0%, 19%, 30%, 100% { opacity: .82; transform: scale(1); filter: drop-shadow(0 0 10px rgba(254,99,0,.42)); }
  22%, 26% { opacity: 1; transform: scale(1.34); filter: drop-shadow(0 0 22px rgba(254,99,0,.82)); }
}

@keyframes servicesLensPulse {
  0%, 19%, 30%, 100% { filter: drop-shadow(0 18px 34px rgba(0,0,0,.35)); }
  22%, 26% { filter: drop-shadow(0 0 20px rgba(254,99,0,.56)); }
}

@keyframes servicesContentFanOne {
  0%, 33%, 44%, 100% { transform: translate(0,0) rotate(0deg); }
  37%, 41% { transform: translate(-7px,-6px) rotate(-5deg); }
}

@keyframes servicesContentFanTwo {
  0%, 33%, 44%, 100% { transform: translate(0,0) rotate(0deg); }
  37%, 41% { transform: translate(8px,-4px) rotate(5deg); }
}

@keyframes servicesContentLift {
  0%, 33%, 44%, 100% { transform: translate(0,0); }
  37%, 41% { transform: translate(0,-5px); }
}

@keyframes servicesPlayGlow {
  0%, 33%, 44%, 100% { opacity: .78; filter: drop-shadow(0 0 10px rgba(254,99,0,.48)); }
  37%, 41% { opacity: 1; filter: drop-shadow(0 0 20px rgba(254,99,0,.88)); }
}

@keyframes servicesTargetRotate {
  0%, 49%, 60%, 100% { transform: rotate(0deg); }
  53%, 57% { transform: rotate(9deg); }
}

@keyframes servicesAdWave {
  0%, 49%, 60%, 100% { opacity: .20; transform: scale(.98); }
  52% { opacity: .90; transform: scale(1.02); }
  58% { opacity: 0; transform: scale(1.14); }
}

@keyframes servicesCrmPulse {
  0%, 63%, 74%, 100% { opacity: .86; transform: translateY(0); filter: none; }
  67%, 70% { opacity: 1; transform: translateY(-3px); filter: drop-shadow(0 0 14px rgba(254,99,0,.48)); }
}

@keyframes servicesCrmPulseCenter {
  0%, 63%, 74%, 100% { opacity: .90; transform: translateY(0) scale(1); filter: none; }
  67%, 70% { opacity: 1; transform: translateY(-5px) scale(1.04); filter: drop-shadow(0 0 18px rgba(254,99,0,.58)); }
}

@keyframes servicesPhoneRing {
  0%, 77%, 89%, 100% { transform: translate(0,0) scale(1); filter: drop-shadow(0 20px 38px rgba(0,0,0,.35)); }
  81%, 85% { transform: translate(-2px,-2px) scale(1.05); filter: drop-shadow(0 0 18px rgba(254,99,0,.58)); }
}

@keyframes servicesPhoneWave {
  0%, 77%, 89%, 100% { opacity: 0; transform: scale(.92); }
  81% { opacity: .86; transform: scale(1); }
  86% { opacity: 0; transform: scale(1.18); }
}

@keyframes servicesCheckPop {
  0%, 77%, 100% { opacity: 0; stroke-dashoffset: 46; }
  81%, 88% { opacity: 1; stroke-dashoffset: 0; }
}

@media (max-width: 900px) {
  .services-engine {
    margin-top: 54px;
    border-radius: 24px;
  }

  .services-engine-svg {
    width: 960px;
    max-width: none;
  }

  .services-engine {
    overflow-x: auto;
  }

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

@media (max-width: 768px) {
  .services-engine {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .services-engine::-webkit-scrollbar {
    display: none;
  }

  .engine-step {
    scroll-snap-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-engine::after,
  .engine-ribbon,
  .engine-light-stream,
  .engine-node-glow,
  .engine-particle,
  .engine-pawn,
  .engine-knight,
  .engine-rec-light,
  .engine-lens,
  .engine-lens-core,
  .engine-content-card,
  .engine-play,
  .engine-target-ring,
  .engine-ad-wave,
  .engine-crm-line,
  .engine-person,
  .engine-phone-badge,
  .engine-phone-ring,
  .engine-check {
    animation: none;
  }
}



/* =========================
GOOGLE REVIEWS MINI MARQUEE
========================= */

.reviews-section {
  background: #000;
  color: #fff;
  padding: 90px 24px;
  overflow: hidden;
}

.reviews-container {
  max-width: 1360px;
  margin: 0 auto;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.reviews-title {
  max-width: 780px;
}

.reviews-intro {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
  max-width: 520px;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  padding-block: 18px 24px;
  margin-block: -18px -24px;
  overflow-x: hidden;
  overflow-y: visible;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewsScroll 32s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-mini-card {
  width: 360px;
  min-height: 260px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  border-radius: 24px;
  padding: 26px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.review-mini-card:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(254,99,0,.58);
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 54px rgba(0,0,0,.38), 0 0 46px rgba(254,99,0,.20);
}

.review-mini-card img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.18);
  margin-bottom: 18px;
}

.review-mini-card .stars {
  color: #FE6300;
  font-size: 16px;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.review-mini-card p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}

.review-mini-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}

.review-mini-card span {
  display: block;
  color: #FE6300;
  font-size: 13px;
  font-weight: 800;
}

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

@media (max-width: 900px) {
  .reviews-section {
    padding: 80px 22px;
  }

  .reviews-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .reviews-intro {
    font-size: 18px;
  }

  .review-mini-card {
    width: 310px;
  }
}

@media (max-width: 768px) {
  .reviews-marquee {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .reviews-marquee::-webkit-scrollbar {
    display: none;
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 28px;
    opacity: .28;
  }

  .reviews-marquee::before {
    background: linear-gradient(to right, rgba(0,0,0,.72), transparent);
  }

  .reviews-marquee::after {
    background: linear-gradient(to left, rgba(0,0,0,.72), transparent);
  }

  .reviews-track {
    gap: 16px;
    will-change: transform;
  }

  .reviews-marquee.is-user-interacting .reviews-track {
    animation-play-state: paused;
  }

  .reviews-marquee:not(.is-user-interacting) .reviews-track:hover {
    animation-play-state: running;
  }

  .review-mini-card {
    width: min(82vw, 310px);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    transform: translateX(0);
  }
}

/* =========================
SECTION 07 SELECTED WORK
========================= */

.work-section {
  background: #050505;
  padding: 140px 24px;
  color: #fff;
  overflow: hidden;
}

.work-container {
  max-width: 1360px;
  margin: 0 auto;
}

.work-title {
  max-width: 980px;
}

.work-intro {
  margin-top: 34px;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 74px;
}

.work-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254,99,0,.5);
  background: rgba(255,255,255,.07);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  filter: brightness(.82);
  transition: transform .45s ease, filter .45s ease;
}

.work-card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.play-btn {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #FE6300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(254,99,0,.38);
}

.play-btn::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.work-card h3 {
  margin: 22px 10px 6px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.work-card p {
  margin: 0 10px 10px;
  color: #FE6300;
  font-weight: 800;
  font-size: 14px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.active {
  display: flex;
}

.video-modal-bg {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-frame {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(254, 99, 0, .24);
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}

.video-frame iframe,
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-close {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .work-section {
    padding: 100px 22px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .work-intro {
    font-size: 18px;
  }
}
/* =========================
SECTION 08 ABOUT / WHY PLAB
========================= */

.about-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(254,99,0,.12), transparent 30%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  padding: 140px 24px 76px;
  color: #fff;
  overflow: hidden;
}

.about-container {
  max-width: 920px;
  margin: 0 auto;
  display: block;
}

.about-image-wrap {
  position: relative;
  max-width: 620px;
  margin-top: 38px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  min-height: 620px;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 25% center;
  display: block;
  filter: brightness(.9) contrast(1.05);
}

.about-copy p {
  margin-top: 26px;
  max-width: 720px;
  font-size: 21px;
  line-height: 1.62;
  color: rgba(255,255,255,.72);
}

.about-signature {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.about-signature strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.about-signature span {
  color: #FE6300;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .about-image-wrap,
  .about-image-wrap img {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  .about-section {
    padding: 100px 22px 58px;
  }

  .about-copy p {
    font-size: 18px;
  }

  .about-image-wrap,
  .about-image-wrap img {
    min-height: 360px;
  }
}
.portfolio-cta{
    margin-top:70px;
    text-align:center;
}

.portfolio-cta .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 42px;
    border-radius:999px;
    background:#FE6300;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    transition:.35s ease;
    box-shadow:0 18px 45px rgba(254,99,0,.22);
}

.portfolio-cta .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 60px rgba(254,99,0,.35);
}

.portfolio-cta p{
    margin-top:18px;
    color:rgba(255,255,255,.55);
    font-size:15px;
}
/* =========================
FINAL CTA
========================= */

.cta-section{

    position:relative;

    overflow:hidden;

    background:#000;

    padding:84px 24px 72px;

    text-align:center;

}

.cta-glow{

    position:absolute;

    width:900px;

    height:900px;

    left:50%;

    top:45%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(254,99,0,.22),
    transparent 70%);

    filter:blur(80px);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.cta-title{

    margin-top:16px;

}

.cta-text{

    margin:34px auto 48px;

    max-width:720px;

    color:rgba(255,255,255,.72);

    font-size:22px;

    line-height:1.48;

}

.cta-big-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#FE6300;

    color:#fff;

    text-decoration:none;

    min-height:58px;

    padding:18px 46px;

    border-radius:999px;

    font-size:20px;

    font-weight:800;

    transition:.35s;

    box-shadow:0 25px 60px rgba(254,99,0,.35);

}

.cta-big-button:hover{

    transform:translateY(-5px);

    box-shadow:0 35px 90px rgba(254,99,0,.45);

}

.cta-note{

    margin-top:20px;

    color:rgba(255,255,255,.5);

    font-size:15px;

    letter-spacing:.03em;

}

@media (max-width: 700px) {
  .cta-section {
    padding: 68px 22px 56px;
  }

  .cta-title {
    margin-top: 14px;
  }

  .cta-text {
    margin: 28px auto 38px;
    font-size: 18px;
    line-height: 1.48;
  }

  .cta-big-button {
    width: min(100%, 360px);
    min-height: 54px;
    padding: 16px 22px;
    font-size: 15px;
    white-space: nowrap;
  }

  .cta-note {
    margin-top: 18px;
    font-size: 13px;
  }
}
/* =========================
STRATEGY CALL PAGE
========================= */

.strategy-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: Manrope, sans-serif;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.strategy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(254,99,0,.18), transparent 32%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.strategy-nav {
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-home {
  text-decoration: none;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

.back-home:hover {
  color: #FE6300;
}

.strategy-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.strategy-title {
  font-family: Anton, sans-serif;
  font-size: clamp(62px, 7vw, 118px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0;
}

.strategy-title span {
  display: block;
  color: #FE6300;
}

.strategy-intro {
  margin-top: 34px;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}

.strategy-list {
  margin-top: 42px;
  display: grid;
  gap: 18px;
  font-size: 18px;
  font-weight: 800;
}

.strategy-list span {
  color: #FE6300;
  margin-right: 10px;
}

.calendar-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(14px);
}

.calendar-card h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.calendar-card p {
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
}

.calendar-placeholder {
  min-height: 520px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.5);
  padding: 24px;
}

@media(max-width: 1000px) {
  .strategy-container {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .strategy-nav {
    left: 24px;
    right: 24px;
  }
}

@media(max-width: 700px) {
  .strategy-page {
    padding: 110px 22px 70px;
  }

  .strategy-title {
    font-size: 54px;
  }

  .strategy-intro {
    font-size: 18px;
  }

  .calendar-card {
    padding: 24px;
  }
}

/* Services actions and detail modal */
body.service-modal-open {
  overflow: hidden;
}

.services-grid .service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.services-grid .service-card p {
  margin-bottom: 28px;
}

.service-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid rgba(254,99,0,.42);
  border-radius: 999px;
  background: rgba(254,99,0,.12);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(254,99,0,.16);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.service-button:hover,
.service-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(254,99,0,.72);
  background: #FE6300;
  box-shadow: 0 22px 62px rgba(254,99,0,.34);
  outline: none;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}

.service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  border: 1px solid rgba(254,99,0,.44);
  border-radius: 30px;
  padding: 44px;
  background:
    radial-gradient(circle at 80% 12%, rgba(254,99,0,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    #050505;
  box-shadow: 0 44px 130px rgba(0,0,0,.68), 0 0 120px rgba(254,99,0,.20);
  transform: translateY(14px) scale(.98);
  transition: transform .25s ease;
}

.service-modal.is-open .service-modal-panel {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
  border-color: rgba(254,99,0,.58);
  background: rgba(254,99,0,.14);
  color: #FE6300;
  outline: none;
}

.service-modal-eyebrow {
  color: #FE6300;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.service-modal-panel h3 {
  margin: 0 46px 18px 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.025em;
}

.service-modal-panel p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 19px;
  line-height: 1.72;
}

@media(max-width: 700px) {
  .services-grid .service-card {
    min-height: auto;
  }

  .service-button {
    width: 100%;
  }

  .service-modal {
    padding: 18px;
  }

  .service-modal-panel {
    padding: 34px 24px 28px;
    border-radius: 24px;
  }

  .service-modal-panel h3 {
    margin-right: 42px;
  }

  .service-modal-panel p {
    font-size: 17px;
  }
}

/* Premium site footer */
.plab-footer {
  position: relative;
  overflow: hidden;
  padding: 62px 24px 44px;
  background:
    radial-gradient(circle at 16% 28%, rgba(254,99,0,.20), transparent 30%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  color: #fff;
}

.plab-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .20;
  pointer-events: none;
}

.plab-footer::after {
  content: "";
  position: absolute;
  left: 5%;
  top: 18%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(254,99,0,.14);
  filter: blur(92px);
  pointer-events: none;
}

.footer-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FE6300;
  opacity: .22;
  filter: drop-shadow(0 0 10px rgba(254,99,0,.72));
  animation: footerParticleDrift 12s ease-in-out infinite;
}

.footer-particles span:nth-child(1) { left: 12%; top: 54%; animation-delay: 0s; }
.footer-particles span:nth-child(2) { left: 36%; top: 24%; animation-delay: 2.2s; }
.footer-particles span:nth-child(3) { left: 72%; top: 34%; animation-delay: 4.4s; }
.footer-particles span:nth-child(4) { left: 86%; top: 70%; animation-delay: 6.6s; }

.plab-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
}

.footer-brand,
.footer-nav,
.footer-contact {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.footer-logo img {
  width: 164px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 34px rgba(254,99,0,.22));
}

.footer-brand p {
  max-width: 410px;
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 17px;
  line-height: 1.72;
}

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

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  transition: transform .28s ease, color .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill .28s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-3px) scale(1.08);
  color: #FE6300;
  border-color: rgba(254,99,0,.66);
  background: rgba(254,99,0,.10);
  box-shadow: 0 0 34px rgba(254,99,0,.24);
  outline: none;
}

.footer-socials a:hover svg,
.footer-socials a:focus-visible svg {
  fill: rgba(254,99,0,.18);
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  position: relative;
  width: fit-content;
  display: block;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

.footer-nav a {
  margin-bottom: 15px;
}

.footer-nav a::after,
.footer-contact a::after,
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #FE6300;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #FE6300;
  text-shadow: 0 0 20px rgba(254,99,0,.32);
  transform: translateY(-2px);
  outline: none;
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-contact a:hover::after,
.footer-contact a:focus-visible::after,
.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 12%, rgba(254,99,0,.13), transparent 34%),
    rgba(255,255,255,.04);
  box-shadow: 0 26px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}

.footer-contact-item {
  margin-bottom: 18px;
}

.footer-contact-item span {
  display: block;
  margin-bottom: 5px;
  color: #FE6300;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.5;
}

.footer-map-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 12px;
  color: #FE6300;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-map-label svg {
  width: 18px;
  height: 18px;
  fill: rgba(254,99,0,.16);
  stroke: #FE6300;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(254,99,0,.42));
}

.footer-map {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(254,99,0,.48);
  border-radius: 16px;
  background: #050505;
  box-shadow: 0 0 42px rgba(254,99,0,.12);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.88) brightness(.62);
}

.footer-map span {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.20));
}

.footer-map:hover,
.footer-map:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(254,99,0,.78);
  box-shadow: 0 0 54px rgba(254,99,0,.22);
  outline: none;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 72px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

@keyframes footerParticleDrift {
  0%, 100% { transform: translate3d(0,0,0); opacity: .10; }
  45% { opacity: .30; }
  50% { transform: translate3d(18px,-24px,0); }
}

@media(max-width: 1000px) {
  .plab-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media(max-width: 700px) {
  .plab-footer {
    padding: 38px 22px 26px;
    text-align: center;
  }

  .plab-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    margin-bottom: 14px;
  }

  .footer-logo img {
    width: 124px;
  }

  .footer-brand p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-socials {
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .footer-socials svg {
    width: 18px;
    height: 18px;
  }

  .footer-nav h2,
  .footer-contact h2 {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
  }

  .footer-nav h2 {
    grid-column: 1 / -1;
  }

  .footer-nav a {
    width: 100%;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.25;
  }

  .footer-brand p,
  .footer-nav a,
  .footer-contact a,
  .footer-contact-item p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact {
    grid-column: auto;
    padding: 18px;
    border-radius: 16px;
  }

  .footer-contact-item {
    margin-bottom: 12px;
  }

  .footer-contact-item span {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .footer-contact a,
  .footer-contact-item p {
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-map-label {
    justify-content: center;
    margin: 10px 0 8px;
    font-size: 11px;
  }

  .footer-map-label svg {
    width: 15px;
    height: 15px;
  }

  .footer-map {
    width: fit-content;
    min-height: 42px;
    aspect-ratio: auto;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    background: rgba(254,99,0,.10);
  }

  .footer-map::before {
    content: "View Brisbane CBD on Maps";
  }

  .footer-map iframe,
  .footer-map span {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding-top: 18px;
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-particles span {
    animation: none;
  }
}

/* Legal pages */
.service-page-hero.legal-page-hero {
  min-height: 68vh;
}

.legal-page-hero .legal-hero-inner {
  min-height: 68vh;
}

.legal-content-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 140px;
  background:
    radial-gradient(circle at 18% 12%, rgba(254,99,0,.12), transparent 30%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  color: #fff;
}

.legal-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .18;
  pointer-events: none;
}

.legal-content-panel {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 8%, rgba(254,99,0,.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 120px rgba(0,0,0,.44), 0 0 90px rgba(254,99,0,.08);
  backdrop-filter: blur(14px);
}

.legal-content-panel h2 {
  margin: 48px 0 16px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.legal-content-panel h2:first-child {
  margin-top: 0;
}

.legal-content-panel p,
.legal-content-panel li {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.75;
}

.legal-content-panel p {
  margin: 0 0 18px;
}

.legal-content-panel ul {
  margin: 0 0 26px;
  padding-left: 22px;
}

.legal-content-panel li {
  margin-bottom: 8px;
}

.legal-content-panel li::marker {
  color: #FE6300;
}

.legal-content-panel a {
  color: #FE6300;
  font-weight: 800;
  text-decoration: none;
}

.legal-content-panel a:hover,
.legal-content-panel a:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media(max-width: 700px) {
  .service-page-hero.legal-page-hero,
  .legal-page-hero .legal-hero-inner {
    min-height: 58vh;
  }

  .legal-content-section {
    padding: 88px 22px 110px;
  }

  .legal-content-panel {
    border-radius: 22px;
  }

  .legal-content-panel p,
  .legal-content-panel li {
    font-size: 16px;
    line-height: 1.68;
  }
}

/* Portfolio page */
.service-page-hero.portfolio-page-hero {
  min-height: 86vh;
}

.portfolio-page-hero .service-page-hero-inner {
  min-height: 86vh;
}

.portfolio-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 140px;
  background:
    radial-gradient(circle at 18% 18%, rgba(254,99,0,.12), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(254,99,0,.10), transparent 34%),
    #050505;
  color: #fff;
}

.portfolio-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .24;
  pointer-events: none;
}

.portfolio-showcase-container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.portfolio-showcase-header {
  max-width: 920px;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.portfolio-showcase-header p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.portfolio-preview-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
  width: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  padding: 14px;
  font: inherit;
  color: inherit;
  text-align: left;
  background:
    radial-gradient(circle at 74% 18%, rgba(254,99,0,.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    opacity .62s cubic-bezier(.16, 1, .3, 1),
    transform .42s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.portfolio-preview-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-preview-card:hover,
.portfolio-preview-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(254,99,0,.58);
  background:
    radial-gradient(circle at 74% 18%, rgba(254,99,0,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.034)),
    rgba(255,255,255,.045);
  box-shadow: 0 38px 110px rgba(0,0,0,.54), 0 0 76px rgba(254,99,0,.16);
  outline: none;
}

.portfolio-preview-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(254,99,0,.22), transparent 28%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(0,0,0,.58));
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.portfolio-preview-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  filter: brightness(.78) saturate(1.04);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.portfolio-preview-visual::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(254,99,0,.24);
  border-radius: 999px;
  opacity: .54;
  filter: blur(.2px);
}

.portfolio-preview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 18%, rgba(255,255,255,.08), transparent 48%);
  opacity: .40;
  transform: translateX(-36%);
  transition: transform .45s ease, opacity .45s ease;
}

.portfolio-preview-card:hover .portfolio-preview-visual::after,
.portfolio-preview-card:focus-visible .portfolio-preview-visual::after {
  opacity: .62;
  transform: translateX(28%);
}

.portfolio-preview-card:hover .portfolio-preview-visual img,
.portfolio-preview-card:focus-visible .portfolio-preview-visual img {
  transform: scale(1.07);
  filter: brightness(.96) saturate(1.1);
}

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(254,99,0,.58);
  border-radius: 50%;
  background: rgba(0,0,0,.48);
  color: #fff;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 42px rgba(254,99,0,.28);
  transition: transform .32s ease, border-color .32s ease, background .32s ease, box-shadow .32s ease;
}

.portfolio-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.portfolio-preview-card:hover .portfolio-play,
.portfolio-preview-card:focus-visible .portfolio-play {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(254,99,0,.86);
  background: rgba(254,99,0,.16);
  box-shadow: 0 0 62px rgba(254,99,0,.38);
}

.portfolio-card-large,
.portfolio-card-wide,
.portfolio-card-tall {
  grid-column: auto;
  grid-row: auto;
}

.portfolio-cta-section {
  padding-top: 150px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-preview-card {
    opacity: 1;
    transform: none;
    transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
  }

  .portfolio-preview-visual img,
  .portfolio-play {
    transition: none;
  }
}

@media(max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 700px) {
  .portfolio-page-hero,
  .portfolio-page-hero .service-page-hero-inner {
    min-height: 78vh;
  }

  .portfolio-showcase-section {
    padding: 90px 22px 110px;
  }

  .portfolio-showcase-header {
    margin-bottom: 38px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-preview-card {
    border-radius: 24px;
  }

  .portfolio-preview-card:hover,
  .portfolio-preview-card:focus-visible {
    transform: translateY(0);
  }

}

/* Brand Story Videos service page */
.service-page-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(254,99,0,.20), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(254,99,0,.10), transparent 30%),
    linear-gradient(180deg, #000 0%, #050505 100%);
  color: #fff;
}

.service-page-hero .plab-nav {
  z-index: 5;
}

.service-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.44) saturate(1.06);
  transform: scale(1.01);
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 24%, rgba(254,99,0,.18), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(254,99,0,.10), transparent 30%),
    linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.62), rgba(0,0,0,.96));
  pointer-events: none;
}

.service-page-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .16;
  pointer-events: none;
}

.service-page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1360px;
  margin: 0 auto;
  padding: 150px 60px 110px;
  display: flex;
  align-items: center;
}

.service-page-copy {
  width: min(65%, 880px);
}

.service-page-title {
  font-family: Anton, sans-serif;
  font-size: clamp(62px, 8.4vw, 132px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}

.service-page-title span {
  display: block;
  color: #FE6300;
}

.service-page-copy p {
  margin-top: 32px;
  max-width: 690px;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.brand-video-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 16px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 40px 130px rgba(0,0,0,.58), 0 0 100px rgba(254,99,0,.14);
  backdrop-filter: blur(16px);
}

.brand-video-screen {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(254,99,0,.28), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    #000;
}

.brand-video-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .28;
}

.brand-play-button {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #FE6300;
  box-shadow: 0 0 0 24px rgba(254,99,0,.10), 0 0 80px rgba(254,99,0,.48);
  font-size: 30px;
}

.brand-video-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.brand-video-meta span {
  color: #FE6300;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.brand-video-meta strong {
  font-size: 18px;
}

.brand-story-section {
  position: relative;
  overflow: hidden;
  background: #050505;
  color: #fff;
  padding: 130px 24px;
}

.brand-story-band {
  background:
    radial-gradient(circle at 82% 8%, rgba(254,99,0,.14), transparent 32%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.brand-story-container {
  max-width: 1360px;
  margin: 0 auto;
}

.brand-story-two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.brand-story-rich-copy {
  display: grid;
  gap: 24px;
}

.brand-story-inline-video {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 16px;
  border: 1px solid rgba(254,99,0,.34);
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.46), 0 0 70px rgba(254,99,0,.14);
}

.brand-story-inline-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-video-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: calc(100% - 44px);
  padding: 14px 16px;
  border: 1px solid rgba(254,99,0,.42);
  border-radius: 16px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0,0,0,.38), 0 0 34px rgba(254,99,0,.18);
  pointer-events: none;
}

.brand-video-badge span,
.brand-video-badge strong,
.brand-video-badge small {
  display: block;
}

.brand-video-badge span {
  color: #FE6300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.brand-video-badge-label {
  position: relative;
  padding-left: 18px;
}

.brand-video-badge-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #FE6300;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 8px rgba(254,99,0,.35));
}

.brand-video-badge strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
}

.brand-video-badge small {
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
}

.brand-story-rich-copy p,
.brand-final-panel p {
  color: rgba(255,255,255,.72);
  font-size: 21px;
  line-height: 1.64;
}

.brand-benefit-grid,
.brand-process-grid,
.brand-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}

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

.brand-glass-card,
.brand-process-step,
.brand-faq-card,
.brand-use-panel,
.brand-final-panel {
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 28px 90px rgba(0,0,0,.36);
  backdrop-filter: blur(14px);
}

.brand-glass-card,
.brand-process-step,
.brand-faq-card {
  padding: 30px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.brand-glass-card:hover,
.brand-process-step:hover,
.brand-faq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254,99,0,.48);
  box-shadow: 0 38px 110px rgba(0,0,0,.50), 0 0 70px rgba(254,99,0,.12);
}

.brand-glass-card span,
.brand-process-step span {
  display: block;
  color: #FE6300;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 20px;
}

.brand-glass-card h3,
.brand-process-step h3,
.brand-faq-card h3 {
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.brand-glass-card p,
.brand-process-step p,
.brand-faq-card p {
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.58;
}

.social-process-journey {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(254,99,0,.13), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(254,99,0,.08), transparent 34%),
    #000;
}

.social-process-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .12;
  pointer-events: none;
}

.social-process-journey .brand-story-container {
  position: relative;
  z-index: 2;
}

.social-process-journey .brand-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 1180px;
  margin: 72px auto 0;
}

.social-process-journey .brand-process-grid::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 48px;
  bottom: 48px;
  width: 4px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% var(--process-pulse, 0%), rgba(254,99,0,.95) 0 2px, rgba(254,99,0,.46) 3px 12px, transparent 28px),
    linear-gradient(to bottom, rgba(254,99,0,.72) 0 var(--process-progress, 0%), rgba(254,99,0,.13) var(--process-progress, 0%) 100%);
  filter: drop-shadow(0 0 16px rgba(254,99,0,.44));
  opacity: .72;
  pointer-events: none;
  transition: background .18s linear;
}

.social-process-journey .brand-process-step {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  column-gap: 44px;
  padding: 42px 48px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 28%, rgba(254,99,0,.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 100px rgba(0,0,0,.42);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .72s ease,
    transform .72s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.social-process-journey.is-process-ready .brand-process-step {
  opacity: 0;
  transform: translateY(34px);
}

.social-process-journey.is-process-visible .brand-process-step,
.social-process-journey:not(.is-process-ready) .brand-process-step {
  opacity: 1;
  transform: translateY(0);
}

.social-process-journey.is-process-visible .brand-process-step:nth-child(1) { transition-delay: .04s; }
.social-process-journey.is-process-visible .brand-process-step:nth-child(2) { transition-delay: .12s; }
.social-process-journey.is-process-visible .brand-process-step:nth-child(3) { transition-delay: .20s; }
.social-process-journey.is-process-visible .brand-process-step:nth-child(4) { transition-delay: .28s; }

.social-process-journey .brand-process-step::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 50%;
  z-index: 3;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(254,99,0,.62);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 24px rgba(254,99,0,.22);
  transform: translateY(-50%);
  transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.social-process-journey .brand-process-step::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 84% 28%, rgba(254,99,0,.18), transparent 36%);
  opacity: .64;
  pointer-events: none;
}

.social-process-journey .brand-process-step:hover,
.social-process-journey .brand-process-step:focus-visible,
.social-process-journey .brand-process-step.is-process-active {
  transform: translateY(-8px);
  border-color: rgba(254,99,0,.68);
  background:
    radial-gradient(circle at 88% 28%, rgba(254,99,0,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(254,99,0,.048)),
    rgba(255,255,255,.05);
  box-shadow: 0 48px 132px rgba(0,0,0,.56), 0 0 118px rgba(254,99,0,.21), 0 0 40px rgba(254,99,0,.14);
}

.social-process-journey .brand-process-step:focus-visible {
  outline: none;
}

.social-process-journey .brand-process-step:hover::before,
.social-process-journey .brand-process-step:focus-visible::before,
.social-process-journey .brand-process-step.is-process-active::before {
  border-color: rgba(254,99,0,.96);
  background: rgba(254,99,0,.18);
  box-shadow: 0 0 34px rgba(254,99,0,.52), 0 0 0 8px rgba(254,99,0,.06);
}

.social-process-journey .brand-process-step span {
  position: relative;
  z-index: 4;
  grid-row: 1 / span 2;
  margin: 0;
  font-family: Anton, sans-serif;
  font-size: clamp(78px, 8vw, 128px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
  color: rgba(255,255,255,.045);
  -webkit-text-stroke: 1px rgba(254,99,0,.48);
  transition: color .35s ease, -webkit-text-stroke-color .35s ease, transform .35s ease;
}

.social-process-journey .brand-process-step:hover span,
.social-process-journey .brand-process-step:focus-visible span,
.social-process-journey .brand-process-step.is-process-active span {
  color: rgba(254,99,0,.10);
  -webkit-text-stroke-color: rgba(254,99,0,.86);
  transform: translateX(4px);
}

.social-process-journey .brand-process-step h3,
.social-process-journey .brand-process-step p {
  position: relative;
  z-index: 4;
  grid-column: 2;
}

.social-process-journey .brand-process-step h3 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.025em;
  transition: transform .35s ease;
}

.social-process-journey .brand-process-step:hover h3,
.social-process-journey .brand-process-step:focus-visible h3,
.social-process-journey .brand-process-step.is-process-active h3 {
  transform: translateX(8px);
}

.social-process-journey .brand-process-step p {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.62;
}

.brand-use-panel {
  padding: 48px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(255,255,255,.035);
}

.brand-use-intro {
  position: sticky;
  top: 110px;
  padding-top: 18px;
}

.brand-use-intro p {
  max-width: 430px;
  margin-top: 26px;
  color: rgba(255,255,255,.70);
  font-size: 18px;
  line-height: 1.62;
}

.brand-use-deck {
  position: relative;
  min-height: 720px;
  isolation: isolate;
}

.brand-use-deck::before {
  content: "";
  position: absolute;
  inset: 12% 8% 16%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,99,0,.22), rgba(254,99,0,.08) 38%, transparent 68%);
  filter: blur(28px);
  opacity: .86;
  pointer-events: none;
}

.brand-placement-card {
  position: absolute;
  width: 390px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    rgba(0,0,0,.74);
  box-shadow: 0 26px 70px rgba(0,0,0,.56), 0 0 34px rgba(254,99,0,.08);
  backdrop-filter: blur(18px);
  transform: rotate(var(--rotate, 0deg)) scale(var(--scale, 1));
  transform-origin: center;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, opacity .32s ease;
  z-index: var(--z, 1);
}

.brand-placement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(254,99,0,.18), transparent 46%);
  opacity: .32;
  pointer-events: none;
  transition: opacity .32s ease;
}

.brand-placement-card.is-active-usecase {
  z-index: 18;
  border-color: rgba(254,99,0,.58);
  box-shadow: 0 31px 88px rgba(0,0,0,.64), 0 0 54px rgba(254,99,0,.18);
  transform: rotate(0deg) scale(1.01);
}

.brand-placement-card.is-active-usecase::after {
  opacity: .62;
}

.brand-placement-card.is-active-usecase .placement-video {
  opacity: .96;
  border-color: rgba(254,99,0,.48);
  box-shadow: inset 0 0 28px rgba(254,99,0,.11), 0 0 30px rgba(254,99,0,.17);
}

.brand-placement-card:hover,
.brand-placement-card:focus-visible {
  z-index: 20;
  border-color: rgba(254,99,0,.68);
  box-shadow: 0 34px 95px rgba(0,0,0,.68), 0 0 62px rgba(254,99,0,.22);
  transform: translateY(-12px) scale(1.04) rotate(0deg);
  outline: none;
}

.brand-placement-card:hover::after,
.brand-placement-card:focus-visible::after {
  opacity: .72;
}

.placement-website {
  top: 145px;
  left: 16%;
  width: 520px;
  --z: 8;
  --scale: 1;
}

.placement-signature {
  top: 20px;
  left: 0;
  --rotate: -5deg;
  --scale: .88;
  --z: 4;
}

.placement-meta {
  top: 12px;
  right: 4px;
  width: 330px;
  --rotate: 4deg;
  --scale: .90;
  --z: 5;
}

.placement-linkedin {
  top: 305px;
  left: -22px;
  --rotate: 4deg;
  --scale: .86;
  --z: 3;
}

.placement-proposal {
  top: 365px;
  right: 10px;
  --rotate: -4deg;
  --scale: .88;
  --z: 4;
}

.placement-campaign {
  left: 12%;
  bottom: 8px;
  --rotate: -3deg;
  --scale: .86;
  --z: 2;
}

.placement-retargeting {
  right: 12%;
  bottom: 0;
  --rotate: 5deg;
  --scale: .84;
  --z: 2;
}

.placement-label {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: #FE6300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-placement-card h3,
.brand-placement-card strong {
  color: #fff;
}

.brand-placement-card p,
.brand-placement-card small,
.brand-placement-card span,
.mock-line {
  color: rgba(255,255,255,.66);
}

.brand-placement-card p {
  font-size: 12px;
  line-height: 1.48;
}

.mock-browser,
.mock-email,
.mock-social,
.mock-profile-page,
.mock-document,
.mock-campaign,
.mock-retargeting {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(0,0,0,.58);
}

.mock-browser,
.mock-email,
.mock-social,
.mock-document,
.mock-campaign,
.mock-retargeting {
  padding: 18px;
}

.mock-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mock-nav span {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.mock-browser h3,
.mock-profile-page h3,
.mock-document h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.05;
}

.placement-video {
  position: relative;
  margin-top: 14px;
  border: 1px solid rgba(254,99,0,.26);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 24px rgba(254,99,0,.08), 0 0 22px rgba(254,99,0,.10);
  opacity: .78;
  transition: opacity .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.brand-placement-card:hover .placement-video,
.brand-placement-card:focus-visible .placement-video {
  opacity: 1;
  border-color: rgba(254,99,0,.58);
  box-shadow: inset 0 0 30px rgba(254,99,0,.12), 0 0 34px rgba(254,99,0,.20);
}

.placement-video-wide {
  aspect-ratio: 16 / 9;
}

.placement-video-thumb {
  flex: 0 0 122px;
  aspect-ratio: 16 / 9;
  margin-top: 0;
}

.placement-video-portrait {
  aspect-ratio: 4 / 5;
  max-height: 240px;
}

.placement-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-email p,
.mock-campaign p,
.mock-retargeting p,
.mock-social p {
  margin: 12px 0;
}

.mock-line.strong {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 900;
}

.mock-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.mock-signature strong,
.mock-signature span {
  display: block;
  font-size: 12px;
}

.mock-profile {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
}

.mock-profile > span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(254,99,0,.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,99,0,.24), rgba(255,255,255,.04));
}

.mock-logo-avatar,
.mock-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mock-logo-avatar img,
.mock-avatar img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
}

.mock-profile strong,
.mock-profile small {
  display: block;
  font-size: 12px;
}

.mock-social button,
.mock-campaign button,
.mock-retargeting button {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(254,99,0,.32);
  border-radius: 999px;
  background: rgba(254,99,0,.12);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.mock-profile-page {
  padding-bottom: 18px;
}

.mock-banner {
  height: 54px;
  background: linear-gradient(135deg, rgba(254,99,0,.30), rgba(255,255,255,.08));
}

.mock-avatar {
  width: 52px;
  height: 52px;
  margin: -24px 0 10px 18px;
  border: 1px solid rgba(254,99,0,.45);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    #000;
  box-shadow: 0 0 22px rgba(254,99,0,.22), inset 0 0 18px rgba(255,255,255,.06);
}

.mock-profile-page h3,
.mock-profile-page p,
.mock-featured {
  margin-left: 18px;
  margin-right: 18px;
}

.mock-featured {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.mock-featured > span {
  display: block;
  margin-bottom: 8px;
  color: #FE6300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mock-doc-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mock-doc-lines span {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.mock-doc-lines span:nth-child(2) {
  width: 72%;
}

.mock-doc-lines span:nth-child(3) {
  width: 52%;
}

.brand-use-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.brand-use-labels span {
  padding: 8px 11px;
  border: 1px solid rgba(254,99,0,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .brand-placement-card,
  .brand-placement-card::after,
  .placement-video,
  .social-process-journey .brand-process-step,
  .social-process-journey .brand-process-step span,
  .social-process-journey .brand-process-step h3 {
    transition: none;
  }

  .social-process-journey.is-process-ready .brand-process-step {
    opacity: 1;
    transform: none;
  }
}

.brand-examples-grid {
  margin-top: 64px;
}

.brand-final-cta {
  background: #000;
  color: #fff;
  padding: 120px 24px;
}

.brand-final-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  background:
    radial-gradient(circle at 80% 20%, rgba(254,99,0,.24), transparent 34%),
    linear-gradient(135deg, rgba(254,99,0,.16), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
}

.brand-final-panel p {
  max-width: 760px;
  margin: 28px 0 34px;
}

@media(max-width: 1100px) {
  .brand-story-two-col,
  .brand-use-panel {
    grid-template-columns: 1fr;
  }

  .service-page-copy {
    width: min(760px, 100%);
  }

  .brand-use-intro {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .brand-use-intro p {
    max-width: 680px;
  }

  .brand-use-deck {
    min-height: 760px;
  }

  .brand-benefit-grid,
  .brand-process-grid,
  .brand-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-process-journey .brand-process-grid {
    grid-template-columns: 1fr;
  }

  .social-process-journey .brand-process-step {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 240px;
    padding: 36px;
    column-gap: 34px;
  }

  .social-process-journey .brand-process-grid::before {
    left: 66px;
  }

  .social-process-journey .brand-process-step::before {
    left: 58px;
  }
}

@media(max-width: 768px) {
  .brand-use-panel {
    padding: 30px;
    border-radius: 24px;
  }

  .brand-use-deck {
    --brand-use-card-width: min(86vw, 420px);
    --brand-use-side-padding: calc((100% - var(--brand-use-card-width)) / 2);
    display: flex;
    gap: 16px;
    min-height: 0;
    margin: 10px -30px 0;
    padding: 6px 0 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .brand-use-deck.is-auto-panning {
    scroll-snap-type: none;
  }

  .brand-use-deck::-webkit-scrollbar {
    display: none;
  }

  .brand-use-deck::before,
  .brand-use-deck::after {
    content: "";
    position: relative;
    inset: auto;
    flex: 0 0 var(--brand-use-side-padding);
    width: auto;
    height: 1px;
    border-radius: 0;
    background: none;
    filter: none;
    opacity: 1;
    pointer-events: none;
  }

  .brand-use-labels {
    display: none;
  }

  .brand-placement-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 0 0 var(--brand-use-card-width);
    width: auto;
    transform: none;
    scroll-snap-align: center;
  }

  .brand-placement-card.is-active-usecase {
    transform: none;
  }
}

@media(max-width: 700px) {
  .service-page-hero-inner {
    padding: 120px 24px 80px;
    gap: 44px;
  }

  .service-page-title {
    font-size: 56px;
  }

  .brand-video-screen {
    min-height: 270px;
  }

  .brand-video-meta {
    display: grid;
  }

  .brand-story-section,
  .brand-final-cta {
    padding: 90px 22px;
  }

  .brand-benefit-grid,
  .brand-process-grid,
  .brand-faq-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .social-process-journey .brand-process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 46px;
  }

  .social-process-journey .brand-process-grid::before {
    display: none;
  }

  .social-process-journey .brand-process-step {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px;
    border-radius: 28px;
  }

  .social-process-journey .brand-process-step::before {
    left: auto;
    right: 28px;
    top: 38px;
    width: 16px;
    height: 16px;
  }

  .social-process-journey .brand-process-step span {
    grid-row: auto;
    font-size: 66px;
    margin-bottom: 22px;
  }

  .social-process-journey .brand-process-step h3,
  .social-process-journey .brand-process-step p {
    grid-column: auto;
  }

  .social-process-journey .brand-process-step h3 {
    font-size: 34px;
  }

  .social-process-journey .brand-process-step p {
    font-size: 16px;
    line-height: 1.62;
  }

  .brand-use-panel,
  .brand-final-panel {
    padding: 30px;
    border-radius: 24px;
  }

  .brand-use-deck {
    --brand-use-card-width: min(86vw, 420px);
    --brand-use-side-padding: calc((100% - var(--brand-use-card-width)) / 2);
    display: flex;
    gap: 16px;
    min-height: 0;
    margin: 10px -30px 0;
    padding: 6px 0 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
  }

  .brand-use-deck::-webkit-scrollbar {
    display: none;
  }

  .brand-use-deck::before,
  .brand-use-deck::after {
    content: "";
    position: relative;
    inset: auto;
    flex: 0 0 var(--brand-use-side-padding);
    width: auto;
    height: 1px;
    border-radius: 0;
    background: none;
    filter: none;
    opacity: 1;
    pointer-events: none;
  }

  .brand-use-labels {
    display: none;
  }

  .brand-placement-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 0 0 var(--brand-use-card-width);
    width: auto;
    transform: none;
    scroll-snap-align: center;
  }

  .brand-placement-card.is-active-usecase {
    transform: none;
  }

  .brand-placement-card:hover,
  .brand-placement-card:focus-visible {
    transform: translateY(-4px) scale(1.01);
  }

  .placement-video-portrait {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .mock-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .placement-video-thumb {
    flex: none;
    width: 100%;
  }

  .brand-story-rich-copy p,
  .brand-final-panel p {
    font-size: 18px;
  }

  .brand-video-badge {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 12px 13px;
    border-radius: 14px;
  }

  .brand-video-badge strong {
    font-size: 15px;
  }
}

/* Social Media Content service page */
.social-service-hero {
  background:
    radial-gradient(circle at 74% 26%, rgba(254,99,0,.22), transparent 32%),
    radial-gradient(circle at 28% 72%, rgba(254,99,0,.12), transparent 34%),
    linear-gradient(135deg, #050505 0%, #000 62%, #090503 100%);
}

.social-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .75fr);
  gap: 70px;
}

.social-hero-inner .service-page-copy {
  width: min(100%, 820px);
}

.social-hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}

.social-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 -16% 2%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,99,0,.24), rgba(254,99,0,.08) 42%, transparent 68%);
  filter: blur(30px);
  opacity: .9;
}

.social-phone-frame {
  position: relative;
  z-index: 4;
  margin-top: -26px;
  width: min(344px, 70vw);
  aspect-ratio: 9 / 18.6;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.045)),
    #050505;
  box-shadow:
    0 48px 132px rgba(0,0,0,.60),
    0 0 126px rgba(254,99,0,.30),
    inset 0 0 0 1px rgba(255,255,255,.08);
  animation: socialPhoneFloat 5.4s ease-in-out infinite;
}

.social-phone-frame::before {
  content: "";
  position: absolute;
  inset: -54px -96px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,99,0,.34), rgba(254,99,0,.14) 42%, transparent 70%);
  filter: blur(30px);
}

.social-phone-frame::after {
  content: "";
  position: absolute;
  top: 92px;
  right: -5px;
  width: 4px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.social-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(254,99,0,.34);
  border-radius: 35px;
  background: #000;
  box-shadow: inset 0 0 34px rgba(0,0,0,.48), 0 0 42px rgba(254,99,0,.12);
}

.social-phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.06);
}

.social-platform-strip {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 11px;
  margin-top: 22px;
}

.social-chip-grid span {
  border: 1px solid rgba(254,99,0,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 0 28px rgba(254,99,0,.10);
}

.social-platform-strip span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #FE6300;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    rgba(255,255,255,.82);
  box-shadow: 0 16px 34px rgba(0,0,0,.30), 0 0 24px rgba(254,99,0,.18);
  backdrop-filter: blur(12px);
  animation: socialIconFloat 4.8s ease-in-out infinite;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.social-platform-strip span:nth-child(2) {
  animation-delay: .45s;
}

.social-platform-strip span:nth-child(3) {
  animation-delay: .9s;
}

.social-platform-strip span:nth-child(4) {
  animation-delay: 1.35s;
}

.social-platform-strip span:nth-child(5) {
  animation-delay: 1.8s;
}

.social-platform-strip span:hover {
  translate: 0 0;
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(254,99,0,1);
  background:
    linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,.82)),
    rgba(255,255,255,.92);
  box-shadow: 0 20px 46px rgba(0,0,0,.38), 0 0 40px rgba(254,99,0,.34);
  animation-play-state: paused;
}

.social-platform-strip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

@keyframes socialIconFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -3px; }
}

@keyframes socialPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .social-platform-strip span,
  .social-phone-frame {
    animation: none;
  }

  .social-library-copy,
  .social-library-side,
  .social-chip-grid span,
  .social-library-card {
    transition: none;
  }
}

.social-problem-copy {
  max-width: 850px;
  margin-top: 32px;
}

.social-problem-copy p,
.social-multiplier-panel p {
  color: rgba(255,255,255,.72);
  font-size: 21px;
  line-height: 1.64;
}

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

.social-library-copy {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.social-library-showcase.is-visible .social-library-copy {
  opacity: 1;
  transform: translateY(0);
}

.social-library-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255,255,255,.72);
  font-size: 21px;
  line-height: 1.64;
}

.social-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-chip-grid span {
  opacity: 0;
  transform: translateY(12px);
  padding: 14px 16px;
  border: 1px solid rgba(254,99,0,.24);
  border-radius: 999px;
  background: rgba(254,99,0,.08);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(254,99,0,.08);
  transition: opacity .55s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.social-library-showcase.is-visible .social-chip-grid span {
  opacity: 1;
  transform: translateY(0);
}

.social-library-showcase.is-visible .social-chip-grid span:nth-child(1) { transition-delay: .12s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(2) { transition-delay: .17s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(3) { transition-delay: .22s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(4) { transition-delay: .27s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(5) { transition-delay: .32s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(6) { transition-delay: .37s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(7) { transition-delay: .42s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(8) { transition-delay: .47s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(9) { transition-delay: .52s; }
.social-library-showcase.is-visible .social-chip-grid span:nth-child(10) { transition-delay: .57s; }

.social-chip-grid span:hover {
  transition-delay: 0s;
  transform: translateY(-3px);
  border-color: rgba(254,99,0,.62);
  background: rgba(254,99,0,.14);
  box-shadow: 0 16px 42px rgba(0,0,0,.26), 0 0 36px rgba(254,99,0,.18);
}

.social-library-showcase.is-visible .social-chip-grid span:hover {
  transition-delay: 0s;
}

.social-library-side {
  display: grid;
  gap: 34px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease .12s, transform .7s ease .12s;
}

.social-library-showcase.is-visible .social-library-side {
  opacity: 1;
  transform: translateY(0);
}

.social-library-stack {
  position: relative;
  min-height: 420px;
  isolation: isolate;
}

.social-library-stack::before {
  content: "";
  position: absolute;
  inset: 12% 4% 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,99,0,.24), rgba(254,99,0,.08) 42%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.social-library-card {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 206px;
  aspect-ratio: 9 / 16;
  padding: 8px;
  border: 1px solid rgba(254,99,0,.34);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035)),
    rgba(0,0,0,.78);
  box-shadow: 0 34px 96px rgba(0,0,0,.54), 0 0 66px rgba(254,99,0,.16);
  backdrop-filter: blur(14px);
  transition: transform .36s ease, opacity .36s ease, filter .36s ease, border-color .36s ease, box-shadow .36s ease;
}

.social-library-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 21px;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.30));
  pointer-events: none;
}

.social-library-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 21px;
}

.library-card-one {
  z-index: 2;
  transform: translateX(-118%) rotate(-8deg);
}

.library-card-two {
  z-index: 4;
  transform: translateX(-50%) translateY(-18px) rotate(3deg);
}

.library-card-three {
  z-index: 3;
  transform: translateX(18%) translateY(16px) rotate(8deg);
}

.social-library-stack:hover .social-library-card {
  opacity: .62;
  filter: saturate(.88) brightness(.82);
}

.social-library-stack:hover .social-library-card:hover,
.social-library-card.is-library-active {
  z-index: 8;
  opacity: 1;
  filter: none;
  border-color: rgba(254,99,0,.62);
  box-shadow: 0 42px 116px rgba(0,0,0,.62), 0 0 92px rgba(254,99,0,.24);
}

.library-card-one:hover,
.library-card-one.is-library-active {
  transform: translateX(-118%) translateY(-10px) rotate(-5deg) scale(1.05);
}

.library-card-two:hover,
.library-card-two.is-library-active {
  transform: translateX(-50%) translateY(-28px) rotate(1deg) scale(1.05);
}

.library-card-three:hover,
.library-card-three.is-library-active {
  transform: translateX(18%) translateY(4px) rotate(5deg) scale(1.05);
}

.social-multiplier-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 30%, rgba(254,99,0,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 110px rgba(0,0,0,.44);
  backdrop-filter: blur(14px);
}

.social-multiplier-panel p {
  margin-top: 26px;
}

.social-flow-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    rgba(0,0,0,.36);
  background-size: 48px 48px;
}

.flow-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid rgba(254,99,0,.52);
  border-radius: 50%;
  background: rgba(254,99,0,.12);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 64px rgba(254,99,0,.30);
}

.flow-node svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #FE6300;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(254,99,0,.46));
}

.flow-node span {
  font-size: 13px;
}

.flow-trail {
  position: absolute;
  left: 138px;
  right: 292px;
  top: 50%;
  z-index: 4;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform-origin: left center;
  opacity: 0;
  transform: translateX(-18px);
  pointer-events: none;
}

.flow-trail span {
  width: 36px;
  height: 36px;
  border-top: 5px solid #FE6300;
  border-right: 5px solid #FE6300;
  border-radius: 3px;
  filter: drop-shadow(0 0 16px rgba(254,99,0,.68));
  opacity: .9;
  transform: rotate(45deg);
}

.flow-trail span:nth-child(2) { opacity: .68; }
.flow-trail span:nth-child(3) { opacity: .38; }

.flow-result {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  text-align: center;
  transform: translate(-50%, calc(-50% + 18px));
  opacity: 0;
}

.flow-result strong,
.flow-result span {
  display: block;
}

.flow-result strong {
  color: #FE6300;
  font-family: Anton, sans-serif;
  font-size: 88px;
  font-weight: 400;
  line-height: .86;
  text-shadow: 0 0 34px rgba(254,99,0,.26);
}

.flow-result span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.flow-reel-grid {
  position: absolute;
  top: 42px;
  right: 46px;
  z-index: 6;
  width: 216px;
  height: 316px;
  perspective: 760px;
  transform-style: preserve-3d;
}

.flow-reel-grid span {
  position: absolute;
  right: 0;
  top: 0;
  width: 78px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(254,99,0,.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 22%, rgba(254,99,0,.30), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02) 46%, rgba(0,0,0,.56)),
    rgba(0,0,0,.60);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    inset 0 -34px 42px rgba(0,0,0,.46),
    0 20px 48px rgba(0,0,0,.42),
    0 0 30px rgba(254,99,0,.12);
  opacity: 0;
  transform: translate3d(var(--deal-x, -88px), -218px, 90px) scale(1.18) rotateX(64deg) rotateY(-16deg) rotateZ(calc(var(--rx) - 18deg));
  transform-origin: center bottom;
  transform-style: preserve-3d;
}

.flow-reel-grid span::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.34) 0 16px, transparent 16px 100%) left 10px bottom 12px / 40px 3px no-repeat,
    linear-gradient(90deg, rgba(254,99,0,.74) 0 24px, rgba(255,255,255,.16) 24px 42px, transparent 42px 100%) left 10px bottom 20px / 54px 3px no-repeat,
    radial-gradient(circle at 74% 18%, rgba(255,255,255,.26), transparent 8%),
    radial-gradient(circle at 38% 34%, rgba(254,99,0,.26), transparent 30%),
    linear-gradient(160deg, rgba(255,255,255,.14), transparent 34%, rgba(0,0,0,.52) 82%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 26px rgba(254,99,0,.08);
}

.flow-reel-grid span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(254,99,0,.30);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1 1L9 6L1 11Z' fill='white'/%3E%3C/svg%3E") center / 8px 10px no-repeat,
    rgba(0,0,0,.42);
  line-height: 1;
  box-shadow: 0 0 18px rgba(254,99,0,.18);
  transform: translate(-50%, -50%);
}

.social-multiplier-visual.is-visible .flow-node {
  animation: multiplierNodeTravel 1.1s cubic-bezier(.22,.8,.22,1) forwards;
}

.social-multiplier-visual.is-visible .flow-trail {
  animation: multiplierTrailSend 1.02s ease .82s both;
}

.social-multiplier-visual.is-visible .flow-result {
  animation: multiplierResultIn .55s ease 1.7s forwards;
}

.social-multiplier-visual.is-visible .flow-reel-grid span {
  animation: multiplierCardIn .42s cubic-bezier(.18,.78,.26,1.08) forwards;
}

.flow-reel-grid span:nth-child(1) { right: 104px; top: 140px; z-index: 1; --rx: -9deg; --deal-x: -114px; }
.flow-reel-grid span:nth-child(2) { right: 91px; top: 123px; z-index: 2; --rx: 6deg; --deal-x: -100px; }
.flow-reel-grid span:nth-child(3) { right: 77px; top: 107px; z-index: 3; --rx: -4deg; --deal-x: -92px; }
.flow-reel-grid span:nth-child(4) { right: 63px; top: 93px; z-index: 4; --rx: 8deg; --deal-x: -82px; }
.flow-reel-grid span:nth-child(5) { right: 50px; top: 80px; z-index: 5; --rx: -7deg; --deal-x: -74px; }
.flow-reel-grid span:nth-child(6) { right: 38px; top: 68px; z-index: 6; --rx: 5deg; --deal-x: -66px; }
.flow-reel-grid span:nth-child(7) { right: 28px; top: 57px; z-index: 7; --rx: -3deg; --deal-x: -60px; }
.flow-reel-grid span:nth-child(8) { right: 18px; top: 47px; z-index: 8; --rx: 7deg; --deal-x: -54px; }
.flow-reel-grid span:nth-child(9) { right: 9px; top: 38px; z-index: 9; --rx: -6deg; --deal-x: -48px; }
.flow-reel-grid span:nth-child(10) { right: 17px; top: 29px; z-index: 10; --rx: 4deg; --deal-x: -42px; }
.flow-reel-grid span:nth-child(11) { right: 27px; top: 20px; z-index: 11; --rx: -5deg; --deal-x: -38px; }
.flow-reel-grid span:nth-child(12) { right: 39px; top: 11px; z-index: 12; --rx: 5deg; --deal-x: -34px; }

.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(1) { animation-delay: 1.12s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(2) { animation-delay: 1.28s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(3) { animation-delay: 1.40s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(4) { animation-delay: 1.50s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(5) { animation-delay: 1.58s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(6) { animation-delay: 1.65s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(7) { animation-delay: 1.71s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(8) { animation-delay: 1.76s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(9) { animation-delay: 1.80s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(10) { animation-delay: 1.83s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(11) { animation-delay: 1.86s; }
.social-multiplier-visual.is-visible .flow-reel-grid span:nth-child(12) { animation-delay: 1.88s; }

@keyframes multiplierNodeTravel {
  0% { transform: translate(-50%, -50%) scale(1.14); }
  46% { transform: translate(-50%, -50%) scale(1.2); }
  100% { left: 32px; transform: translate(0, -50%) scale(.78); }
}

@keyframes multiplierTrailSend {
  0% { transform: translateX(-18px); opacity: 0; }
  24% { opacity: 1; }
  68% { opacity: .86; }
  100% { transform: translateX(68px); opacity: 0; }
}

@keyframes multiplierCardIn {
  0% { opacity: 0; transform: translate3d(var(--deal-x, -88px), -218px, 90px) scale(1.18) rotateX(64deg) rotateY(-16deg) rotateZ(calc(var(--rx) - 18deg)); }
  58% { opacity: 1; transform: translate3d(10px, 16px, 28px) scale(1.045) rotateX(18deg) rotateY(-4deg) rotateZ(calc(var(--rx) + 3deg)); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(var(--rx)); }
}

@keyframes multiplierResultIn {
  to { opacity: 1; transform: translate(-50%, -50%); }
}

@media (prefers-reduced-motion: reduce) {
  .social-multiplier-visual.is-visible .flow-node {
    left: 32px;
    transform: translate(0, -50%) scale(.78);
    animation: none;
  }

  .social-multiplier-visual.is-visible .flow-trail {
    opacity: 0;
    transform: translateX(68px);
    animation: none;
  }

  .social-multiplier-visual.is-visible .flow-result {
    opacity: 1;
    transform: translate(-50%, -50%);
    animation: none;
  }

  .social-multiplier-visual.is-visible .flow-reel-grid span {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) rotateZ(var(--rx));
    animation: none;
  }
}

.social-example-showcase {
  position: relative;
  margin-top: 48px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(254,99,0,.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 110px rgba(0,0,0,.44);
  backdrop-filter: blur(14px);
}

.social-example-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .36;
  pointer-events: none;
}

.social-example-showcase.is-changing .social-example-featured,
.social-example-showcase.is-changing .social-example-supporting {
  opacity: 0;
  transform: translateY(12px);
}

.social-example-featured,
.social-example-supporting {
  position: relative;
  z-index: 2;
  transition: opacity .28s ease, transform .28s ease;
}

.social-example-featured {
  margin-bottom: 22px;
}

.social-example-carousel-wrap {
  position: relative;
  z-index: 2;
}

.social-example-supporting {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 78px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transition: opacity .28s ease, transform .28s ease;
}

.social-example-supporting::-webkit-scrollbar {
  display: none;
}

.social-example-arrow {
  appearance: none;
  position: absolute;
  top: 8px;
  bottom: 18px;
  z-index: 4;
  width: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(254,99,0,.10), transparent 55%),
    rgba(0,0,0,.48);
  color: rgba(255,255,255,.82);
  font: inherit;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  transition: transform .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease, background .28s ease;
}

.social-example-arrow-left {
  left: 0;
}

.social-example-arrow-right {
  right: 0;
}

.social-example-arrow:hover,
.social-example-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(254,99,0,.52);
  color: #fff;
  outline: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(254,99,0,.20), transparent 58%),
    rgba(0,0,0,.58);
  box-shadow: 0 30px 88px rgba(0,0,0,.56), 0 0 48px rgba(254,99,0,.18);
}

.social-example-card {
  appearance: none;
  position: relative;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(254,99,0,.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.032)),
    #050505;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 24px 74px rgba(0,0,0,.42);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.social-example-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(254,99,0,.18), transparent 36%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: .55;
  pointer-events: none;
}

.social-example-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
  pointer-events: none;
}

.social-example-card::before,
.social-example-card::after {
  transition: opacity .34s ease;
}

.social-example-card.is-playing::before,
.social-example-card.is-playing::after {
  opacity: 0;
}

.social-example-card:hover,
.social-example-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(254,99,0,.58);
  outline: none;
  box-shadow: 0 34px 96px rgba(0,0,0,.52), 0 0 70px rgba(254,99,0,.18);
}

.social-example-featured .social-example-card {
  min-height: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
}

.social-example-supporting .social-example-card {
  flex: 0 0 min(360px, 36vw);
  min-height: 220px;
  aspect-ratio: 16 / 9;
  scroll-snap-align: start;
}

.social-example-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.social-example-frame video,
.social-example-frame img,
.social-example-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  filter: saturate(1.02) brightness(.88);
}

.social-example-frame iframe {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: none;
  transition: opacity .34s ease;
}

.social-example-card.is-playing .social-example-frame iframe {
  opacity: 1;
}

.social-example-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  object-fit: cover;
  filter: none;
  opacity: 1;
  transition: opacity .34s ease, transform .34s ease;
}

.social-example-card.is-playing .social-example-poster {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
}

.social-example-frame video {
  pointer-events: none;
}

.social-example-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(254,99,0,.55);
  border-radius: 50%;
  background: rgba(0,0,0,.54);
  color: #fff;
  line-height: 1;
  box-shadow: 0 0 40px rgba(254,99,0,.22);
  transform: translate(-50%, -50%);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.social-example-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.social-example-card:hover .social-example-play,
.social-example-card:focus-visible .social-example-play {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(254,99,0,.84);
  box-shadow: 0 0 54px rgba(254,99,0,.32);
}

.social-example-card.is-playing .social-example-play {
  opacity: 0;
  pointer-events: none;
}

.social-example-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.social-example-modal.is-open {
  display: flex;
}

.social-example-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
}

.social-example-modal-frame {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(254,99,0,.32);
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 130px rgba(0,0,0,.72), 0 0 80px rgba(254,99,0,.18);
}

.social-example-modal-frame.is-vertical {
  width: min(440px, 90vw);
  aspect-ratio: 9 / 16;
}

.social-example-modal-frame iframe,
.social-example-modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #000;
}

.social-example-modal-close {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(0,0,0,.56);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.social-example-modal-close:hover,
.social-example-modal-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(254,99,0,.55);
  outline: none;
  box-shadow: 0 0 34px rgba(254,99,0,.20);
}

body.social-example-modal-open {
  overflow: hidden;
}

@media(max-width: 1100px) {
  .social-hero-inner,
  .social-multiplier-panel {
    grid-template-columns: 1fr;
  }

  .social-hero-visual {
    min-height: 760px;
    width: min(620px, 100%);
  }

  .social-example-featured .social-example-card {
    min-height: 420px;
  }

  .social-example-supporting .social-example-card {
    flex-basis: min(330px, 48vw);
    min-height: 260px;
  }

  .social-library-stack {
    min-height: 370px;
  }

  .social-library-card {
    width: 176px;
  }
}

@media(max-width: 700px) {
  .social-hero-inner {
    gap: 36px;
  }

  .social-hero-visual {
    min-height: 650px;
  }

  .social-phone-frame {
    margin-top: -22px;
    width: min(276px, 74vw);
  }

  .social-platform-strip {
    gap: 9px;
    margin-top: 22px;
  }

  .social-platform-strip span {
    width: 38px;
    height: 38px;
  }

  .social-three-grid {
    grid-template-columns: 1fr;
  }

  .social-example-showcase {
    padding: 16px;
    border-radius: 26px;
  }

  .social-example-featured .social-example-card {
    min-height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .social-example-supporting {
    gap: 12px;
    padding: 8px 54px 18px;
  }

  .social-example-supporting .social-example-card {
    flex-basis: min(250px, 74vw);
    min-height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .social-example-card.is-vertical {
    aspect-ratio: 9 / 16;
  }

  .social-example-arrow {
    width: 44px;
    border-radius: 18px;
    font-size: 32px;
  }

  .social-example-modal {
    padding: 18px;
  }

  .social-example-modal-close {
    top: 18px;
    right: 18px;
  }

  .social-library-side {
    gap: 28px;
  }

  .social-library-stack {
    display: flex;
    gap: 14px;
    min-height: 0;
    overflow-x: auto;
    padding: 8px 2px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .social-library-stack::-webkit-scrollbar {
    display: none;
  }

  .social-library-stack::before {
    inset: 10% 0 16%;
  }

  .social-library-card {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 172px;
    width: 172px;
    transform: none;
    scroll-snap-align: start;
  }

  .library-card-one:hover,
  .library-card-one.is-library-active,
  .library-card-two:hover,
  .library-card-two.is-library-active,
  .library-card-three:hover,
  .library-card-three.is-library-active {
    transform: translateY(-4px) scale(1.02);
  }

  .social-multiplier-panel {
    padding: 30px;
    border-radius: 24px;
  }

  .social-flow-visual {
    min-height: 420px;
  }

  .flow-node {
    left: 24px;
    top: 34px;
    transform: none;
    width: 94px;
    height: 94px;
  }

  .social-multiplier-visual.is-visible .flow-node {
    animation: none;
  }

  .flow-trail {
    left: 118px;
    right: 148px;
    top: 82px;
    gap: 7px;
  }

  .flow-trail span {
    width: 18px;
    height: 18px;
    border-top-width: 3px;
    border-right-width: 3px;
  }

  .flow-result {
    left: 38%;
    top: 196px;
  }

  .flow-result strong {
    font-size: 58px;
  }

  .flow-reel-grid {
    top: 104px;
    right: 24px;
    width: 150px;
    height: 248px;
  }

  .flow-reel-grid span {
    width: 54px;
  }

  .social-problem-copy p,
  .social-multiplier-panel p {
    font-size: 18px;
  }
}

@media(max-width: 768px) {
  .social-example-supporting {
    align-items: center;
    gap: 14px;
    padding: 8px calc((100% - min(175px, 52vw)) / 2) 16px;
    scroll-padding-inline: calc((100% - min(175px, 52vw)) / 2);
  }

  .social-example-supporting .social-example-card {
    scroll-snap-align: center;
  }

  .social-example-supporting .social-example-card.is-vertical {
    flex-basis: min(175px, 52vw);
    border-radius: 18px;
    box-shadow: 0 18px 54px rgba(0,0,0,.38);
  }

  .social-example-supporting .social-example-card.is-vertical .social-example-play {
    width: 44px;
    height: 44px;
    box-shadow: 0 0 30px rgba(254,99,0,.20);
  }

  .social-example-supporting .social-example-card.is-vertical .social-example-play::before {
    margin-left: 3px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
  }

  .social-example-arrow {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
    transform: translateY(-50%);
    box-shadow: 0 14px 36px rgba(0,0,0,.38), 0 0 22px rgba(254,99,0,.12);
  }

  .social-example-arrow-left {
    left: 8px;
  }

  .social-example-arrow-right {
    right: 8px;
  }

  .social-example-arrow:hover,
  .social-example-arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .social-library-stack {
    --social-library-card-width: 172px;
    display: flex;
    gap: 14px;
    min-height: 0;
    overflow-x: auto;
    padding: 8px calc((100% - var(--social-library-card-width)) / 2) 22px;
    scroll-padding-inline: calc((100% - var(--social-library-card-width)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .social-library-stack.is-auto-panning {
    scroll-snap-type: none;
  }

  .social-library-stack::-webkit-scrollbar {
    display: none;
  }

  .social-library-card {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 var(--social-library-card-width);
    width: var(--social-library-card-width);
    transform: none;
    scroll-snap-align: center;
  }
}

/* Testimonial Videos service page */
.testimonial-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.22), transparent 34%),
    radial-gradient(circle at 22% 84%, rgba(254,99,0,.12), transparent 32%),
    linear-gradient(180deg, #000 0%, #050505 100%);
}

.testimonial-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 64px;
}

.testimonial-hero-inner .service-page-copy {
  width: 100%;
}

.testimonial-hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.testimonial-orbit-glow {
  position: absolute;
  width: min(440px, 86%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(254,99,0,.26), rgba(254,99,0,.09) 42%, transparent 70%);
  filter: blur(18px);
  opacity: .86;
  animation: testimonialGlowFloat 6s ease-in-out infinite;
}

.testimonial-mockup-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    rgba(0,0,0,.70);
  box-shadow: 0 30px 90px rgba(0,0,0,.50), 0 0 60px rgba(254,99,0,.12);
  backdrop-filter: blur(18px);
}

.testimonial-mockup-main {
  z-index: 3;
  width: min(470px, 100%);
  padding: 34px;
  border-color: rgba(254,99,0,.38);
  border-radius: 34px;
  transform: rotate(-2deg);
  animation: testimonialCardFloat 7s ease-in-out infinite;
}

.testimonial-mockup-main::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .18;
  pointer-events: none;
}

.testimonial-quote-mark {
  position: relative;
  z-index: 2;
  color: #FE6300;
  font-family: Anton, sans-serif;
  font-size: 96px;
  line-height: .72;
  text-shadow: 0 0 30px rgba(254,99,0,.38);
}

.testimonial-stars {
  position: relative;
  z-index: 2;
  color: #FE6300;
  font-size: 18px;
  letter-spacing: .14em;
  margin: 12px 0 20px;
  text-shadow: 0 0 22px rgba(254,99,0,.32);
}

.testimonial-mockup-main p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.03em;
}

.testimonial-client-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-client-row > span {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(254,99,0,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.80) 0 13%, transparent 14%),
    radial-gradient(circle at 50% 92%, rgba(255,255,255,.40) 0 28%, transparent 29%),
    rgba(254,99,0,.11);
  box-shadow: 0 0 30px rgba(254,99,0,.16);
}

.testimonial-client-row strong,
.testimonial-client-row small {
  display: block;
}

.testimonial-client-row strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.testimonial-client-row small {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
}

.testimonial-play-button {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(254,99,0,.94);
  color: #fff;
  box-shadow: 0 0 0 12px rgba(254,99,0,.09), 0 0 44px rgba(254,99,0,.40);
}

.testimonial-play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.testimonial-mockup-side {
  z-index: 2;
  right: 0;
  bottom: 52px;
  width: 230px;
  padding: 22px;
  border-radius: 24px;
  transform: rotate(7deg);
  animation: testimonialSideFloat 8s ease-in-out infinite;
}

.testimonial-mockup-review {
  z-index: 1;
  left: 0;
  top: 74px;
  width: 210px;
  padding: 20px;
  border-radius: 22px;
  transform: rotate(-8deg);
  animation: testimonialSideFloat 7.4s ease-in-out infinite reverse;
}

.testimonial-mockup-side span,
.testimonial-mockup-review span {
  display: block;
  color: #FE6300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: 12px;
}

.testimonial-mockup-side strong {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: 19px;
  line-height: 1.22;
}

.testimonial-mini-bars {
  display: grid;
  gap: 9px;
}

.testimonial-mini-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.testimonial-mini-bars i:nth-child(2) {
  width: 78%;
  background: rgba(254,99,0,.52);
}

.testimonial-mini-bars i:nth-child(3) {
  width: 58%;
}

.testimonial-reel-phone {
  position: relative;
  width: min(300px, 74vw);
  aspect-ratio: 368 / 615;
  margin: 18px auto 0;
  padding: 10px;
  border: 1px solid rgba(254,99,0,.45);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
    rgba(0,0,0,.76);
  box-shadow: 0 34px 96px rgba(0,0,0,.48), 0 0 74px rgba(254,99,0,.18);
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.testimonial-reel-phone::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 46px;
  background: radial-gradient(circle, rgba(254,99,0,.22), transparent 68%);
  filter: blur(18px);
  opacity: .84;
  pointer-events: none;
}

.testimonial-reel-phone::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 66px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  transform: translateX(-50%);
  pointer-events: none;
}

.testimonial-reel-phone:hover {
  transform: translateY(-8px);
  border-color: rgba(254,99,0,.72);
  box-shadow: 0 42px 118px rgba(0,0,0,.56), 0 0 92px rgba(254,99,0,.24);
}

.testimonial-reel-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.testimonial-reel-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.testimonial-proof-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(254,99,0,.15), transparent 30%),
    radial-gradient(circle at 84% 70%, rgba(254,99,0,.10), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.testimonial-proof-intro {
  max-width: 980px;
}

.testimonial-proof-intro p {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255,255,255,.72);
  font-size: 21px;
  line-height: 1.62;
}

.testimonial-proof-showcase {
  position: relative;
  margin-top: 58px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(254,99,0,.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 110px rgba(0,0,0,.44);
  backdrop-filter: blur(14px);
}

.testimonial-proof-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .34;
  pointer-events: none;
}

.testimonial-video-featured,
.testimonial-proof-grid {
  position: relative;
  z-index: 2;
}

.testimonial-video-featured {
  min-height: 520px;
  margin-bottom: 22px;
  border-radius: 28px;
  border-color: rgba(254,99,0,.28);
  box-shadow: 0 34px 102px rgba(0,0,0,.50), 0 0 76px rgba(254,99,0,.12);
}

.testimonial-video-featured .testimonial-video-play {
  width: 78px;
  height: 78px;
}

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

.testimonial-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.testimonial-video-card {
  appearance: none;
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 24%, rgba(254,99,0,.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.032)),
    #050505;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 74px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.testimonial-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 38%, rgba(254,99,0,.18), transparent 36%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: .42;
  pointer-events: none;
  transition: opacity .34s ease;
}

.testimonial-video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  pointer-events: none;
  transition: opacity .34s ease;
}

.testimonial-video-card:hover,
.testimonial-video-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(254,99,0,.58);
  outline: none;
  box-shadow: 0 34px 96px rgba(0,0,0,.52), 0 0 70px rgba(254,99,0,.18);
}

.testimonial-video-card:hover::before,
.testimonial-video-card:focus-visible::before {
  opacity: .58;
}

.testimonial-video-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  display: block;
  background: #000;
}

.testimonial-video-preview img,
.testimonial-video-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(.86);
  transition: transform .34s ease, filter .34s ease;
}

.testimonial-video-card:hover .testimonial-video-preview img,
.testimonial-video-card:hover .testimonial-video-preview video,
.testimonial-video-card:focus-visible .testimonial-video-preview img,
.testimonial-video-card:focus-visible .testimonial-video-preview video {
  transform: scale(1.025);
  filter: saturate(1.06) brightness(.94);
}

.testimonial-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(254,99,0,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.54);
  color: #fff;
  line-height: 1;
  box-shadow: 0 0 40px rgba(254,99,0,.22);
  transform: translate(-50%, -50%);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.testimonial-video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.testimonial-video-card:hover .testimonial-video-play,
.testimonial-video-card:focus-visible .testimonial-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(254,99,0,.84);
  box-shadow: 0 0 54px rgba(254,99,0,.32);
}

.testimonial-use-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
}

.testimonial-use-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    rgba(255,255,255,.035);
  color: rgba(255,255,255,.80);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
}

.testimonial-use-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(254,99,0,.48);
  color: #fff;
  box-shadow: 0 26px 68px rgba(0,0,0,.36), 0 0 42px rgba(254,99,0,.13);
}

@keyframes testimonialGlowFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .72; }
  50% { transform: translate3d(8px, -10px, 0) scale(1.06); opacity: .92; }
}

@keyframes testimonialCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(-1deg); }
}

@keyframes testimonialSideFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-orbit-glow,
  .testimonial-mockup-main,
  .testimonial-mockup-side,
  .testimonial-mockup-review {
    animation: none;
  }
}

@media(max-width: 1100px) {
  .testimonial-hero-inner {
    grid-template-columns: 1fr;
  }

  .testimonial-hero-visual {
    min-height: 460px;
  }

  .testimonial-example-grid,
  .testimonial-proof-grid,
  .testimonial-three-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-video-featured {
    min-height: 420px;
  }
}

@media(max-width: 700px) {
  .testimonial-hero-visual {
    min-height: 430px;
  }

  .testimonial-mockup-main {
    width: min(330px, 92vw);
    padding: 26px;
    border-radius: 28px;
  }

  .testimonial-mockup-side {
    right: 2px;
    bottom: 30px;
    width: 188px;
  }

  .testimonial-mockup-review {
    left: 2px;
    top: 50px;
    width: 174px;
  }

  .testimonial-example-grid,
  .testimonial-proof-grid,
  .testimonial-three-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-proof-intro p {
    font-size: 18px;
  }

  .testimonial-proof-showcase {
    padding: 16px;
    border-radius: 26px;
  }

  .testimonial-video-featured {
    min-height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .testimonial-use-grid {
    gap: 10px;
  }

  .testimonial-use-grid span {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width: 768px) {
  .testimonial-use-grid span:hover {
    transform: none;
    border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.80);
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
  }

  .testimonial-use-grid span.is-scroll-active {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(254,99,0,.54);
    color: #fff;
    box-shadow: 0 22px 58px rgba(0,0,0,.32), 0 0 42px rgba(254,99,0,.16);
  }
}

/* One-off quote flow */
.quote-page-hero,
.quote-thank-page {
  min-height: auto;
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.20), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(254,99,0,.12), transparent 32%),
    linear-gradient(180deg, #000 0%, #050505 100%);
}

.quote-hero-inner {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .82fr);
  gap: 58px;
  align-items: start;
  padding-bottom: 130px;
}

.quote-copy {
  width: 100%;
  padding-top: 42px;
}

.quote-copy > p,
.quote-thank-panel > p {
  margin-top: 30px;
  max-width: 680px;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.quote-copy .quote-trust-line {
  margin-top: 20px;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  font-weight: 800;
}

.quote-request-card,
.quote-form-card,
.quote-thank-panel,
.quote-next-card {
  border: 1px solid rgba(255,255,255,.105);
  background:
    radial-gradient(circle at 76% 18%, rgba(254,99,0,.14), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 110px rgba(0,0,0,.44);
  backdrop-filter: blur(14px);
}

.quote-request-card {
  margin-top: 42px;
  padding: 30px;
  border-radius: 28px;
}

.quote-request-card h2,
.quote-next-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.quote-request-card ul,
.quote-next-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.quote-request-card li,
.quote-next-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.42;
}

.quote-request-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FE6300;
  box-shadow: 0 0 18px rgba(254,99,0,.46);
}

.quote-next-card li {
  counter-increment: quote-next;
}

.quote-next-card ol {
  counter-reset: quote-next;
}

.quote-next-card li::before {
  content: counter(quote-next, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: #FE6300;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.quote-request-card p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.58;
}

.quote-form-card {
  position: relative;
  overflow: visible;
  min-height: 2184px;
  padding: 14px;
  border-color: rgba(254,99,0,.38);
  border-radius: 34px;
}

.quote-form-glow {
  position: absolute;
  inset: -80px 10% auto;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,99,0,.24), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.quote-form-card iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 2156px !important;
  border: 0;
  border-radius: 24px !important;
  background: #050505;
}

.quote-thank-inner {
  min-height: 100vh;
  justify-content: center;
}

.quote-thank-panel {
  width: min(920px, 100%);
  padding: clamp(30px, 5vw, 62px);
  border-color: rgba(254,99,0,.30);
  border-radius: 34px;
}

.quote-next-card {
  margin-top: 36px;
  padding: 28px;
  border-radius: 26px;
}

.quote-thank-buttons {
  margin-top: 36px;
}

@media(max-width: 1100px) {
  .quote-hero-inner {
    grid-template-columns: 1fr;
  }

  .quote-form-card {
    min-height: 2184px;
  }
}

@media(max-width: 700px) {
  .quote-hero-inner {
    gap: 42px;
    padding-bottom: 90px;
  }

  .quote-copy {
    padding-top: 0;
  }

  .quote-request-card,
  .quote-thank-panel,
  .quote-next-card {
    padding: 26px;
    border-radius: 24px;
  }

  .quote-form-card {
    min-height: 2176px;
    padding: 10px;
    border-radius: 26px;
  }

  .quote-form-card iframe {
    height: 2156px !important;
    border-radius: 20px !important;
  }
}

/* Content Engine funnel */
.content-engine-hero .service-hero-overlay {
  background:
    radial-gradient(circle at 74% 24%, rgba(254,99,0,.18), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(254,99,0,.10), transparent 30%),
    linear-gradient(to bottom, rgba(0,0,0,.34), rgba(0,0,0,.66), rgba(0,0,0,.96));
}

.content-engine-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, clamp(560px, 44vw, 700px));
  gap: clamp(34px, 3.6vw, 64px);
  max-width: 1480px;
  align-items: start;
}

.content-engine-hero-copy {
  width: auto;
}

.content-hero-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(254,99,0,.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(254,99,0,.16), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.032)),
    rgba(255,255,255,.04);
  box-shadow: 0 34px 110px rgba(0,0,0,.48), 0 0 76px rgba(254,99,0,.16);
  backdrop-filter: blur(16px);
}

.content-hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), inset 0 0 0 1px rgba(255,255,255,.04);
  pointer-events: none;
}

.content-hero-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(1.06) contrast(1.04);
}

.content-engine-hero-copy > .content-hero-video-frame {
  display: none;
}

.content-hero-video-frame-desktop {
  align-self: start;
  justify-self: end;
  width: min(100%, 700px);
  margin-top: clamp(46px, 7vh, 96px);
}

.content-engine-hero-points {
  max-width: 760px;
}

@media(max-width: 1200px) and (min-width: 1001px) {
  .content-engine-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 48vw);
    gap: 30px;
  }

  .content-hero-video-frame-desktop {
    width: 100%;
    margin-top: clamp(40px, 6vh, 72px);
  }
}

.content-engine-problem .problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.content-engine-problem .problem-card small {
  display: block;
  margin-bottom: 26px;
  color: #FE6300;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.content-engine-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .74fr);
  gap: 70px;
  align-items: center;
}

.content-engine-flow {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(254,99,0,.20), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.032)),
    rgba(255,255,255,.04);
  box-shadow: 0 40px 120px rgba(0,0,0,.46), 0 0 100px rgba(254,99,0,.14);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.content-engine-flow::before {
  content: "";
  position: absolute;
  inset: -80px 16% auto;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,99,0,.24), transparent 68%);
  filter: blur(26px);
  opacity: .76;
  pointer-events: none;
}

.content-flow-line {
  position: absolute;
  left: clamp(42px, 6vw, 70px);
  top: 72px;
  bottom: 72px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(254,99,0,.72), transparent);
  box-shadow: 0 0 18px rgba(254,99,0,.34);
}

.content-flow-step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(0,0,0,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0;
  transform: translate3d(0, var(--flow-origin-y, 0), 0) scale(1.10);
  transform-origin: center;
  animation-duration: 4.4s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  will-change: opacity, transform;
}

.content-flow-step:nth-child(1) {
  --flow-origin-y: 144px;
  animation-name: contentFlowStepOne;
}

.content-flow-step:nth-child(2) {
  --flow-origin-y: 48px;
  animation-name: contentFlowStepTwo;
}

.content-flow-step:nth-child(3) {
  --flow-origin-y: -48px;
  animation-name: contentFlowStepThree;
}

.content-flow-step:nth-child(4) {
  --flow-origin-y: -144px;
  animation-name: contentFlowStepFour;
}

@keyframes contentFlowStepOne {
  0% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.12); }
  8% { opacity: 1; transform: translate3d(0, 58px, 0) scale(1.07); }
  18%, 76% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  84%, 100% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.08); }
}

@keyframes contentFlowStepTwo {
  0%, 6% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.12); }
  14% { opacity: 1; transform: translate3d(0, 20px, 0) scale(1.07); }
  24%, 76% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  84%, 100% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.08); }
}

@keyframes contentFlowStepThree {
  0%, 12% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.12); }
  20% { opacity: 1; transform: translate3d(0, -20px, 0) scale(1.07); }
  30%, 76% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  84%, 100% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.08); }
}

@keyframes contentFlowStepFour {
  0%, 18% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.12); }
  26% { opacity: 1; transform: translate3d(0, -58px, 0) scale(1.07); }
  36%, 76% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  84%, 100% { opacity: 0; transform: translate3d(0, var(--flow-origin-y), 0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .content-flow-step {
    opacity: 1;
    transform: none;
    animation: none;
    will-change: auto;
  }
}

.content-flow-step span {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(254,99,0,.50);
  border-radius: 50%;
  color: #FE6300;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(254,99,0,.16);
}

.content-flow-step strong {
  color: #fff;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.15;
}

.content-channel-grid {
  align-items: stretch;
}

.content-channel-grid span {
  white-space: nowrap;
}

.content-channel-split {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(280px, 420px);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

.content-channel-copy .audit-section-copy {
  margin-left: 0;
  margin-right: 0;
}

.content-channel-copy .content-channel-grid {
  justify-content: start;
  margin-top: 38px;
}

.content-channel-video-card {
  position: relative;
  justify-self: center;
  width: min(390px, 100%);
  padding: 14px;
  border: 1px solid rgba(254,99,0,.30);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 12%, rgba(254,99,0,.20), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.092), rgba(255,255,255,.030)),
    rgba(255,255,255,.036);
  box-shadow: 0 38px 120px rgba(0,0,0,.54), 0 0 92px rgba(254,99,0,.16);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.content-channel-video-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.14);
  pointer-events: none;
}

.content-channel-video-card > span {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: max-content;
  max-width: calc(100% - 56px);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(0,0,0,.38), 0 0 32px rgba(254,99,0,.14);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.content-channel-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 28px;
  filter: saturate(1.08) contrast(1.04) brightness(.92);
}

.content-engine-results .reviews-intro {
  max-width: 620px;
}

.content-proof-video-section {
  position: relative;
  margin-top: clamp(70px, 8vw, 112px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.15), transparent 42%),
    radial-gradient(circle at 88% 74%, rgba(254,99,0,.09), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.066), rgba(255,255,255,.024)),
    rgba(0,0,0,.34);
  box-shadow: 0 38px 125px rgba(0,0,0,.46), 0 0 110px rgba(254,99,0,.10);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.content-proof-video-section::before {
  content: "";
  position: absolute;
  inset: -120px 14% auto;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,99,0,.20), transparent 68%);
  filter: blur(30px);
  opacity: .74;
  pointer-events: none;
}

.content-proof-video-header {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  text-align: center;
}

.content-proof-video-header .section-title {
  max-width: 850px;
  margin: 0 auto;
}

.content-proof-video-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.56;
}

.content-proof-video-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(34px, 5vw, 58px);
}

.content-proof-video-card {
  grid-column: span 2;
  width: 100%;
  appearance: none;
  border-color: rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 74% 18%, rgba(254,99,0,.12), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.026)),
    rgba(0,0,0,.42);
  box-shadow: 0 28px 88px rgba(0,0,0,.42), 0 0 52px rgba(254,99,0,.08);
}

.content-proof-video-card-featured {
  grid-column: span 3;
}

.content-proof-video-card:hover,
.content-proof-video-card:focus-visible {
  border-color: rgba(254,99,0,.56);
  background:
    radial-gradient(circle at 74% 18%, rgba(254,99,0,.18), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.096), rgba(255,255,255,.034)),
    rgba(0,0,0,.48);
  box-shadow: 0 40px 115px rgba(0,0,0,.56), 0 0 90px rgba(254,99,0,.15);
  outline: none;
}

.content-proof-video-card img {
  border-radius: 20px;
}

.content-proof-video-card .play-btn {
  top: 50%;
  width: 58px;
  height: 58px;
}

.content-proof-video-card-featured .play-btn {
  width: 66px;
  height: 66px;
}

.content-testimonial-transition {
  width: min(920px, 100%);
  margin: 76px auto 0;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
  text-align: center;
}

.content-testimonial-transition .section-title {
  max-width: none;
}

.content-testimonial-transition p {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.56;
}

.content-engine-pipeline {
  position: relative;
  width: min(900px, 100%);
  margin: clamp(42px, 5vw, 66px) auto 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 10%, rgba(254,99,0,.16), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.070), rgba(255,255,255,.026)),
    rgba(255,255,255,.030);
  box-shadow: 0 42px 130px rgba(0,0,0,.48), 0 0 110px rgba(254,99,0,.10);
  backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
}

.content-engine-pipeline::before {
  content: "";
  position: absolute;
  inset: -120px 16% auto;
  z-index: -1;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,99,0,.20), transparent 68%);
  filter: blur(30px);
  opacity: .74;
}

.content-pipeline-video-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.content-pipeline-video-layer video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .155;
  filter: saturate(1.22) sepia(.20) hue-rotate(-10deg) contrast(1.10) brightness(.92);
}

.content-pipeline-video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(254,99,0,.20), transparent 38%),
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.70)),
    linear-gradient(90deg, rgba(0,0,0,.66), rgba(254,99,0,.10), rgba(0,0,0,.66));
}

.content-pipeline-card {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(620px, 100%);
  min-height: 96px;
  margin: 0 auto 32px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 18%, rgba(254,99,0,.055), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    rgba(0,0,0,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30);
  opacity: .62;
  transform: translate3d(0, 10px, 0) scale(.985);
  transition: none;
  animation-duration: 9s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-play-state: paused;
  will-change: opacity, transform, border-color, box-shadow, background;
}

.content-engine-pipeline.is-visible .content-pipeline-card {
  animation-play-state: running;
}

.content-pipeline-card:nth-of-type(1) {
  animation-name: contentPipelineCardOne;
}

.content-pipeline-card:nth-of-type(2) {
  animation-name: contentPipelineCardTwo;
}

.content-pipeline-card:nth-of-type(3) {
  animation-name: contentPipelineCardThree;
}

.content-pipeline-card:nth-of-type(4) {
  animation-name: contentPipelineCardFour;
}

.content-pipeline-card:nth-of-type(5) {
  animation-name: contentPipelineCardFive;
}

.content-pipeline-card-final {
  display: block;
  width: min(760px, 100%);
  min-height: 0;
  margin-bottom: 0;
  padding: clamp(28px, 4vw, 42px);
  text-align: center;
  border-color: rgba(254,99,0,.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.16), transparent 44%),
    linear-gradient(135deg, rgba(254,99,0,.10), rgba(255,255,255,.035)),
    rgba(0,0,0,.40);
  animation-name: contentPipelineFinal;
}

.content-pipeline-icon {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(254,99,0,.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(254,99,0,.30), transparent 58%),
    rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 30px rgba(254,99,0,.12);
}

.content-pipeline-icon::before,
.content-pipeline-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 6px;
}

.content-pipeline-icon::after {
  inset: 19px;
  border-color: rgba(254,99,0,.92);
  box-shadow: 0 0 18px rgba(254,99,0,.40);
}

.content-pipeline-card h3 {
  margin: 0;
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.content-pipeline-card p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.70);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
}

.content-pipeline-card-final h3 {
  font-size: clamp(34px, 5vw, 62px);
}

.content-pipeline-outcomes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.content-pipeline-outcomes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.content-pipeline-outcomes i {
  color: #FE6300;
  font-style: normal;
  text-shadow: 0 0 18px rgba(254,99,0,.46);
}

@keyframes contentPipelineCardOne {
  0% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
  7%, 82% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); border-color: rgba(254,99,0,.50); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 86px rgba(0,0,0,.42), 0 0 52px rgba(254,99,0,.15); }
  91%, 100% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
}

@keyframes contentPipelineCardTwo {
  0%, 12% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
  19%, 82% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); border-color: rgba(254,99,0,.50); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 86px rgba(0,0,0,.42), 0 0 52px rgba(254,99,0,.15); }
  91%, 100% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
}

@keyframes contentPipelineCardThree {
  0%, 24% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
  31%, 82% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); border-color: rgba(254,99,0,.50); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 86px rgba(0,0,0,.42), 0 0 52px rgba(254,99,0,.15); }
  91%, 100% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
}

@keyframes contentPipelineCardFour {
  0%, 36% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
  43%, 82% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); border-color: rgba(254,99,0,.50); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 86px rgba(0,0,0,.42), 0 0 52px rgba(254,99,0,.15); }
  91%, 100% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
}

@keyframes contentPipelineCardFive {
  0%, 48% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
  55%, 82% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); border-color: rgba(254,99,0,.50); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 86px rgba(0,0,0,.42), 0 0 52px rgba(254,99,0,.15); }
  91%, 100% { opacity: .54; transform: translate3d(0, 10px, 0) scale(.985); border-color: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 24px 70px rgba(0,0,0,.30); }
}

@keyframes contentPipelineFinal {
  0%, 60% { opacity: .58; transform: translate3d(0, 12px, 0) scale(.985); border-color: rgba(254,99,0,.20); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 26px 78px rgba(0,0,0,.34), 0 0 34px rgba(254,99,0,.10); }
  70%, 82% { opacity: 1; transform: translate3d(0, 0, 0) scale(1.012); border-color: rgba(254,99,0,.70); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 44px 128px rgba(0,0,0,.56), 0 0 120px rgba(254,99,0,.30); }
  91%, 100% { opacity: .58; transform: translate3d(0, 12px, 0) scale(.985); border-color: rgba(254,99,0,.20); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 26px 78px rgba(0,0,0,.34), 0 0 34px rgba(254,99,0,.10); }
}

@media (prefers-reduced-motion: reduce) {
  .content-pipeline-card {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .content-pipeline-card {
    opacity: 1;
    border-color: rgba(254,99,0,.34);
  }

  .content-pipeline-video-layer video {
    display: none;
  }
}

.content-testimonial-transition p + p {
  margin-top: 10px;
}

.content-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.content-section-cta .btn {
  min-width: min(100%, 270px);
}

.content-transformation-section {
  overflow: hidden;
}

.content-transformation-section .section-title {
  max-width: 960px;
}

.content-transformation-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(38px, 5vw, 60px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,70,44,.09), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(254,99,0,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.074), rgba(255,255,255,.025)),
    rgba(0,0,0,.48);
  box-shadow: 0 36px 120px rgba(0,0,0,.45), 0 0 92px rgba(254,99,0,.11);
  backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
}

.content-transformation-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,70,44,.08) 34%, rgba(254,99,0,.24) 52%, rgba(254,99,0,.10) 66%, transparent 82%);
  opacity: .62;
  transform: translate3d(-18%, 0, 0);
  animation: contentTransformationDrift 8s cubic-bezier(.16, 1, .3, 1) infinite alternate;
  will-change: transform, opacity;
}

.content-transformation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,106,0,.12) 0%, rgba(255,106,0,.04) 35%, transparent 70%),
    rgba(0,0,0,.60);
  pointer-events: none;
}

.content-transformation-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.content-transformation-video-layer video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
  filter: saturate(1.08) contrast(1.04) brightness(.92);
}

.content-transformation-column,
.content-transformation-divider {
  position: relative;
  z-index: 3;
}

.content-transformation-column {
  display: grid;
  align-content: start;
  min-width: 0;
}

.content-transformation-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.content-transformation-before .content-transformation-label {
  border-color: rgba(255,88,62,.22);
  color: rgba(255,190,176,.90);
  background: rgba(255,76,48,.055);
}

.content-transformation-after .content-transformation-label {
  border-color: rgba(254,99,0,.38);
  color: #FE6300;
  background: rgba(254,99,0,.075);
  box-shadow: 0 0 24px rgba(254,99,0,.11);
}

.content-transformation-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.content-transformation-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.066), rgba(255,255,255,.022)),
    rgba(0,0,0,.36);
  color: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 48px rgba(0,0,0,.24);
  opacity: 0;
  transform: translate3d(-14px, 12px, 0);
  animation-duration: .72s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform, border-color, box-shadow, background;
}

.content-transformation-item i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-style: normal;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.content-transformation-item span {
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
}

.content-transformation-before .content-transformation-item {
  border-color: rgba(255,88,62,.12);
}

.content-transformation-before .content-transformation-item i {
  color: rgba(255,174,158,.94);
  background: rgba(255,66,42,.08);
  border: 1px solid rgba(255,88,62,.24);
}

.content-transformation-after .content-transformation-item {
  transform: translate3d(16px, 12px, 0) scale(.985);
}

.content-transformation-after .content-transformation-item i {
  color: #fff;
  background: rgba(254,99,0,.88);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 24px rgba(254,99,0,.30);
}

.content-transformation-card.is-visible .content-transformation-before .content-transformation-item {
  animation-name: contentTransformationBeforeIn;
}

.content-transformation-card.is-visible .content-transformation-after .content-transformation-item {
  animation-name: contentTransformationAfterIn;
}

.content-transformation-before .content-transformation-item:nth-child(1) { animation-delay: .06s; }
.content-transformation-before .content-transformation-item:nth-child(2) { animation-delay: .17s; }
.content-transformation-before .content-transformation-item:nth-child(3) { animation-delay: .28s; }
.content-transformation-before .content-transformation-item:nth-child(4) { animation-delay: .39s; }
.content-transformation-before .content-transformation-item:nth-child(5) { animation-delay: .50s; }

.content-transformation-after .content-transformation-item:nth-child(1) { animation-delay: 1.00s; }
.content-transformation-after .content-transformation-item:nth-child(2) { animation-delay: 1.13s; }
.content-transformation-after .content-transformation-item:nth-child(3) { animation-delay: 1.26s; }
.content-transformation-after .content-transformation-item:nth-child(4) { animation-delay: 1.39s; }
.content-transformation-after .content-transformation-item:nth-child(5) { animation-delay: 1.52s; }
.content-transformation-after .content-transformation-item:nth-child(6) { animation-delay: 1.65s; }

.content-transformation-divider {
  width: 1px;
  min-height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.12), transparent);
  overflow: hidden;
}

.content-transformation-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent, rgba(254,99,0,.95), transparent);
  box-shadow: 0 0 28px rgba(254,99,0,.44), 0 0 64px rgba(254,99,0,.18);
  opacity: 0;
  transform: translate3d(0, -112%, 0);
}

.content-transformation-card.is-visible .content-transformation-divider::after {
  animation: contentTransformationSweep .96s cubic-bezier(.16, 1, .3, 1) .72s forwards;
}

.content-transformation-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.content-transformation-cta p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  text-align: center;
}

@keyframes contentTransformationDrift {
  0% {
    opacity: .42;
    transform: translate3d(-18%, 0, 0) scale(1);
  }
  100% {
    opacity: .76;
    transform: translate3d(16%, 0, 0) scale(1.04);
  }
}

@keyframes contentTransformationBeforeIn {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 14px, 0) scale(.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes contentTransformationAfterIn {
  0% {
    opacity: 0;
    transform: translate3d(18px, 14px, 0) scale(.982);
    border-color: rgba(255,255,255,.095);
  }
  55% {
    opacity: 1;
    border-color: rgba(254,99,0,.48);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 22px 62px rgba(0,0,0,.32), 0 0 42px rgba(254,99,0,.16);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    border-color: rgba(254,99,0,.24);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 48px rgba(0,0,0,.24), 0 0 30px rgba(254,99,0,.10);
  }
}

@keyframes contentTransformationSweep {
  0% {
    opacity: 0;
    transform: translate3d(0, -112%, 0);
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 112%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-transformation-card::before,
  .content-transformation-divider::after,
  .content-transformation-item {
    animation: none !important;
  }

  .content-transformation-video-layer {
    display: none;
  }

  .content-transformation-item {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 768px) {
  .content-transformation-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 32px;
    padding: 20px;
    border-radius: 26px;
  }

  .content-transformation-card::before {
    inset: -20%;
  }

  .content-transformation-card::after {
    background:
      radial-gradient(circle at 75% 20%, rgba(255,106,0,.14) 0%, rgba(255,106,0,.055) 35%, transparent 70%),
      rgba(0,0,0,.56);
  }

  .content-transformation-video-layer video {
    opacity: .20;
  }

  .content-transformation-column {
    gap: 0;
  }

  .content-transformation-list {
    gap: 10px;
    margin-top: 16px;
  }

  .content-transformation-item {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 54px;
    padding: 12px 13px;
    border-radius: 16px;
    transition: border-color .28s ease, box-shadow .28s ease, background .28s ease, transform .28s ease, color .28s ease;
  }

  .content-transformation-item i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .content-transformation-item span {
    font-size: 14px;
  }

  .content-transformation-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  }

  .content-transformation-divider::after {
    background: linear-gradient(90deg, transparent, rgba(254,99,0,.95), transparent);
    transform: translate3d(-112%, 0, 0);
  }

  .content-transformation-card.is-visible .content-transformation-divider::after {
    animation-name: contentTransformationSweepMobile;
  }

  .content-transformation-item.is-scroll-active {
    color: #fff;
    border-color: rgba(254,99,0,.50);
    background:
      radial-gradient(circle at 84% 18%, rgba(254,99,0,.13), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.088), rgba(255,255,255,.030)),
      rgba(0,0,0,.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 24px 62px rgba(0,0,0,.34), 0 0 44px rgba(254,99,0,.17);
    transform: translate3d(0, -3px, 0);
  }

  .content-transformation-cta {
    margin-top: 30px;
  }
}

@keyframes contentTransformationSweepMobile {
  0% {
    opacity: 0;
    transform: translate3d(-112%, 0, 0);
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(112%, 0, 0);
  }
}

.content-monthly-system .section-title {
  max-width: 950px;
}

.content-monthly-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(38px, 5vw, 58px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.15), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.072), rgba(255,255,255,.026)),
    rgba(255,255,255,.032);
  box-shadow: 0 34px 108px rgba(0,0,0,.42), 0 0 82px rgba(254,99,0,.10);
  backdrop-filter: blur(16px);
  overflow: hidden;
  isolation: isolate;
}

.content-monthly-timeline::before {
  content: "";
  position: absolute;
  left: clamp(44px, 5vw, 72px);
  right: clamp(44px, 5vw, 72px);
  top: 50%;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(254,99,0,.22), rgba(254,99,0,.48), rgba(254,99,0,.22), transparent);
  box-shadow: 0 0 24px rgba(254,99,0,.18);
  transform: translateY(-50%);
}

.content-monthly-pulse {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 2;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(254,99,0,.98), transparent);
  box-shadow: 0 0 24px rgba(254,99,0,.52), 0 0 54px rgba(254,99,0,.24);
  opacity: 0;
  transform: translate3d(0, -50%, 0);
  animation: contentMonthlyPulse 6s cubic-bezier(.16, 1, .3, 1) infinite paused;
  will-change: left, top, transform, opacity;
}

.content-monthly-timeline.is-visible .content-monthly-pulse,
.content-monthly-timeline.is-visible .content-monthly-step {
  animation-play-state: running;
}

.content-monthly-step {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(254,99,0,.075), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.074), rgba(255,255,255,.026)),
    rgba(0,0,0,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 22px 64px rgba(0,0,0,.30);
  opacity: .72;
  transform: translate3d(0, 0, 0);
  animation-duration: 6s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-play-state: paused;
  will-change: transform, opacity, border-color, box-shadow, background;
}

.content-monthly-step:nth-of-type(1) { animation-name: contentMonthlyStepOne; }
.content-monthly-step:nth-of-type(2) { animation-name: contentMonthlyStepTwo; }
.content-monthly-step:nth-of-type(3) { animation-name: contentMonthlyStepThree; }
.content-monthly-step:nth-of-type(4) { animation-name: contentMonthlyStepFour; }
.content-monthly-step:nth-of-type(5) { animation-name: contentMonthlyStepFive; }

.content-monthly-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(254,99,0,.44);
  border-radius: 999px;
  color: #FE6300;
  background: rgba(254,99,0,.065);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(254,99,0,.12);
}

.content-monthly-step small {
  display: block;
  margin-bottom: 8px;
  color: #FE6300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.content-monthly-step h3 {
  margin: 0;
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.content-monthly-step p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes contentMonthlyPulse {
  0%, 5% { left: 8%; opacity: 0; transform: translate3d(0, -50%, 0) scaleX(.65); }
  12% { opacity: 1; transform: translate3d(0, -50%, 0) scaleX(1); }
  78% { left: 84%; opacity: 1; transform: translate3d(0, -50%, 0) scaleX(1); }
  86%, 100% { left: 84%; opacity: 0; transform: translate3d(0, -50%, 0) scaleX(.65); }
}

@keyframes contentMonthlyPulseMobile {
  0%, 5% { top: 34px; opacity: 0; transform: translate3d(-50%, 0, 0) scaleY(.65); }
  12% { opacity: 1; transform: translate3d(-50%, 0, 0) scaleY(1); }
  78% { top: calc(100% - 80px); opacity: 1; transform: translate3d(-50%, 0, 0) scaleY(1); }
  86%, 100% { top: calc(100% - 80px); opacity: 0; transform: translate3d(-50%, 0, 0) scaleY(.65); }
}

@keyframes contentMonthlyStepOne {
  0%, 5%, 86%, 100% { opacity: .72; transform: translateY(0); border-color: rgba(255,255,255,.105); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 22px 64px rgba(0,0,0,.30); }
  8%, 24% { opacity: 1; transform: translateY(-5px); border-color: rgba(254,99,0,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 82px rgba(0,0,0,.42), 0 0 58px rgba(254,99,0,.16); }
}

@keyframes contentMonthlyStepTwo {
  0%, 18%, 86%, 100% { opacity: .72; transform: translateY(0); border-color: rgba(255,255,255,.105); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 22px 64px rgba(0,0,0,.30); }
  22%, 38% { opacity: 1; transform: translateY(-5px); border-color: rgba(254,99,0,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 82px rgba(0,0,0,.42), 0 0 58px rgba(254,99,0,.16); }
}

@keyframes contentMonthlyStepThree {
  0%, 32%, 86%, 100% { opacity: .72; transform: translateY(0); border-color: rgba(255,255,255,.105); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 22px 64px rgba(0,0,0,.30); }
  36%, 52% { opacity: 1; transform: translateY(-5px); border-color: rgba(254,99,0,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 82px rgba(0,0,0,.42), 0 0 58px rgba(254,99,0,.16); }
}

@keyframes contentMonthlyStepFour {
  0%, 46%, 86%, 100% { opacity: .72; transform: translateY(0); border-color: rgba(255,255,255,.105); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 22px 64px rgba(0,0,0,.30); }
  50%, 66% { opacity: 1; transform: translateY(-5px); border-color: rgba(254,99,0,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 30px 82px rgba(0,0,0,.42), 0 0 58px rgba(254,99,0,.16); }
}

@keyframes contentMonthlyStepFive {
  0%, 60%, 92%, 100% { opacity: .72; transform: translateY(0); border-color: rgba(255,255,255,.105); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 22px 64px rgba(0,0,0,.30); }
  64%, 84% { opacity: 1; transform: translateY(-5px); border-color: rgba(254,99,0,.62); box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 32px 88px rgba(0,0,0,.46), 0 0 72px rgba(254,99,0,.20); }
}

@media (prefers-reduced-motion: reduce) {
  .content-monthly-pulse {
    display: none;
  }

  .content-monthly-step {
    animation: none;
    opacity: 1;
    transform: none;
    border-color: rgba(254,99,0,.30);
    will-change: auto;
  }
}

.content-step-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(254,99,0,.14), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(254,99,0,.10), transparent 30%),
    #050505;
}

.content-step-container {
  display: grid;
  justify-items: center;
  gap: 40px;
  text-align: center;
}

.content-step-copy {
  width: min(980px, 100%);
}

.content-step-copy .audit-section-copy {
  margin-left: auto;
  margin-right: auto;
}

.content-step-progress {
  width: min(320px, 100%);
  display: grid;
  gap: 10px;
  margin: 0 auto 30px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(255,255,255,.045);
  box-shadow: 0 18px 52px rgba(0,0,0,.34), 0 0 36px rgba(254,99,0,.12);
  backdrop-filter: blur(14px);
}

.content-step-progress span {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.content-step-progress i {
  position: relative;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.content-step-progress i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, #FE6300, #ff9a52);
  box-shadow: 0 0 18px rgba(254,99,0,.52);
}

.content-step-progress-complete i::before {
  width: 100%;
}

.content-step-embed {
  width: min(920px, 100%);
  padding: 22px;
  overflow: visible;
}

.content-step-embed.audit-survey-card iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin-inline: auto;
}

.content-funnel-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.content-funnel-logo {
  display: inline-flex;
  align-items: center;
}

.content-funnel-logo img {
  display: block;
  width: auto;
  height: 70px;
}

.content-funnel-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 24px 38px;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.10), transparent 34%),
    #050505;
  color: #fff;
  text-align: center;
}

.content-funnel-footer-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.content-funnel-footer-logo img {
  display: block;
  width: auto;
  height: 52px;
  opacity: .92;
}

.content-funnel-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
}

.content-funnel-footer-links a {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color .25s ease;
}

.content-funnel-footer-links a:hover,
.content-funnel-footer-links a:focus-visible {
  color: #FE6300;
}

.content-funnel-footer p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.5;
}

.content-booking-stack {
  display: grid;
  gap: 34px;
  justify-items: center;
  text-align: center;
}

.content-booking-visual {
  position: relative;
  width: min(560px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 30%, rgba(254,99,0,.20), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.032)),
    rgba(255,255,255,.04);
  box-shadow: 0 36px 110px rgba(0,0,0,.44), 0 0 86px rgba(254,99,0,.13);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.content-booking-visual .content-flow-line {
  left: clamp(38px, 7vw, 58px);
  top: 62px;
  bottom: 62px;
}

.content-booking-copy {
  width: min(940px, 100%);
}

.content-booking-copy p {
  margin-left: auto;
  margin-right: auto;
}

.content-booking-checklist {
  width: min(720px, 100%);
  margin-top: 0;
  text-align: left;
}

.content-booking-checklist > span {
  display: block;
  margin-bottom: 18px;
  color: #FE6300;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.content-calendar-card {
  width: min(920px, 100%);
}

.content-calendar-placeholder {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(254,99,0,.30);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(254,99,0,.12), transparent 42%),
    rgba(0,0,0,.34);
  color: rgba(255,255,255,.66);
  font-size: 15px;
  font-weight: 900;
}

.content-confirm-hero .audit-confirm-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.content-confirm-hero .audit-confirm-icon {
  width: min(260px, 48vw);
}

.content-confirm-hero .audit-confirm-copy {
  width: min(980px, 100%);
}

.content-confirm-hero .audit-confirm-copy p {
  margin-left: auto;
  margin-right: auto;
}

.content-confirm-final {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.content-confirm-secondary-cta {
  margin-top: 32px;
  border-color: rgba(254,99,0,.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.12), transparent 54%),
    linear-gradient(135deg, rgba(255,255,255,.082), rgba(255,255,255,.030));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 52px rgba(0,0,0,.26);
}

.content-confirm-secondary-cta:hover,
.content-confirm-secondary-cta:focus-visible {
  border-color: rgba(254,99,0,.58);
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.18), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.042));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 24px 66px rgba(0,0,0,.34), 0 0 34px rgba(254,99,0,.16);
  outline: none;
}

.content-real-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(254,99,0,.16), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(254,99,0,.08), transparent 30%),
    #050505;
}

.content-real-header {
  max-width: 1080px;
}

.content-real-copy {
  margin-top: 26px;
  max-width: 760px;
}

.content-real-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.content-real-copy p + p {
  margin-top: 6px;
}

.content-real-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 96px;
  gap: 18px;
  margin-top: clamp(42px, 5vw, 70px);
}

.content-real-card {
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
  border: 1px solid rgba(254,99,0,.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 18%, rgba(254,99,0,.12), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(0,0,0,.46);
  box-shadow: 0 26px 80px rgba(0,0,0,.38), 0 0 44px rgba(254,99,0,.10);
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition:
    opacity .62s cubic-bezier(.16, 1, .3, 1),
    transform .45s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease,
    box-shadow .35s ease;
}

.content-real-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.content-real-card:nth-child(1) { transition-delay: .04s; }
.content-real-card:nth-child(2) { transition-delay: .10s; }
.content-real-card:nth-child(3) { transition-delay: .16s; }
.content-real-card:nth-child(4) { transition-delay: .22s; }
.content-real-card:nth-child(5) { transition-delay: .28s; }
.content-real-card:nth-child(6) { transition-delay: .34s; }
.content-real-card:nth-child(7) { transition-delay: .40s; }
.content-real-card:nth-child(8) { transition-delay: .46s; }

.content-real-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.34));
  pointer-events: none;
}

.content-real-card:hover,
.content-real-card:focus-visible {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(254,99,0,.58);
  box-shadow: 0 34px 104px rgba(0,0,0,.48), 0 0 74px rgba(254,99,0,.22);
  outline: none;
}

.content-real-card img {
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.content-real-card:hover img,
.content-real-card:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.content-real-card .play-btn {
  z-index: 2;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
}

.content-real-card:hover .play-btn,
.content-real-card:focus-visible .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 52px rgba(254,99,0,.42), 0 0 32px rgba(254,99,0,.28);
}

.content-real-card-wide {
  grid-column: span 6;
}

.content-real-card-tall {
  grid-row: span 4;
}

.content-real-card-low {
  grid-row: span 2;
}

.content-real-dots {
  display: none;
}

.content-real-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: clamp(44px, 6vw, 78px);
  text-align: center;
}

.content-real-cta h3 {
  margin: 0;
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .content-real-card {
    opacity: 1;
    transform: none;
    transition: border-color .35s ease, box-shadow .35s ease;
  }

  .content-real-card img,
  .content-real-card .play-btn {
    transition: none;
  }
}

@media(max-width: 1000px) {
  .content-engine-problem .problem-grid,
  .content-engine-split {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {
  .content-engine-hero .service-page-copy {
    width: 100%;
  }

  .content-engine-hero-inner {
    display: block;
  }

  .content-engine-hero-copy {
    display: flex;
    flex-direction: column;
  }

  .content-engine-hero-copy .section-eyebrow {
    order: 1;
  }

  .content-engine-hero-copy .service-page-title {
    order: 2;
  }

  .content-engine-hero-copy > .content-hero-video-frame {
    display: block;
    order: 3;
    margin-top: 30px;
    border-radius: 26px;
  }

  .content-engine-hero-copy > p {
    order: 4;
    margin-top: 28px;
  }

  .content-engine-hero .hero-buttons {
    order: 5;
    gap: 14px;
  }

  .content-engine-hero-points {
    order: 6;
    gap: 14px;
    margin-top: 28px;
    font-size: 15px;
  }

  .content-hero-video-frame-desktop {
    display: none;
  }

  .content-hero-video-frame video {
    aspect-ratio: 16 / 9;
  }

  section.content-step-section {
    padding-top: 72px;
  }

  .content-testimonial-transition {
    margin-top: 48px;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .content-proof-video-section {
    margin-top: 54px;
    padding: 26px 16px;
    border-radius: 28px;
  }

  .content-proof-video-header {
    gap: 16px;
  }

  .content-proof-video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .content-proof-video-card,
  .content-proof-video-card-featured {
    grid-column: auto;
    padding: 10px;
    border-radius: 22px;
  }

  .content-proof-video-card img {
    border-radius: 16px;
  }

  .content-proof-video-card .play-btn,
  .content-proof-video-card-featured .play-btn {
    width: 54px;
    height: 54px;
  }

  .content-proof-video-card.is-scroll-active {
    transform: translateY(-5px) scale(1.015);
    border-color: rgba(254,99,0,.62);
    background:
      radial-gradient(circle at 74% 18%, rgba(254,99,0,.20), transparent 38%),
      linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.038)),
      rgba(0,0,0,.50);
    box-shadow: 0 36px 105px rgba(0,0,0,.58), 0 0 88px rgba(254,99,0,.18);
  }

  .content-proof-video-card.is-scroll-active img {
    filter: brightness(1);
  }

  .content-section-cta {
    margin-top: 30px;
  }

  .content-section-cta .btn {
    width: 100%;
  }

  .content-monthly-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
    padding: 18px;
    border-radius: 26px;
  }

  .content-monthly-timeline::before {
    top: 34px;
    bottom: 34px;
    left: 39px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(254,99,0,.24), rgba(254,99,0,.46), rgba(254,99,0,.24), transparent);
    transform: none;
  }

  .content-monthly-pulse {
    top: 34px;
    left: 39px;
    width: 2px;
    height: 46px;
    background: linear-gradient(180deg, transparent, rgba(254,99,0,.98), transparent);
    transform: translate3d(-50%, 0, 0);
    animation-name: contentMonthlyPulseMobile;
    display: none;
  }

  .content-monthly-step {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    animation: none !important;
    opacity: .68;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      opacity .4s cubic-bezier(.16, 1, .3, 1),
      transform .4s cubic-bezier(.16, 1, .3, 1),
      border-color .4s cubic-bezier(.16, 1, .3, 1),
      box-shadow .4s cubic-bezier(.16, 1, .3, 1),
      background .4s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity;
  }

  .content-monthly-step > span {
    width: 38px;
    height: 38px;
    transition:
      border-color .4s cubic-bezier(.16, 1, .3, 1),
      box-shadow .4s cubic-bezier(.16, 1, .3, 1),
      background .4s cubic-bezier(.16, 1, .3, 1),
      color .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-monthly-step h3 {
    font-size: 25px;
    color: rgba(255,255,255,.84);
    transition: color .4s cubic-bezier(.16, 1, .3, 1), text-shadow .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-monthly-step p {
    font-size: 13px;
    line-height: 1.42;
    color: rgba(255,255,255,.58);
    transition: color .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-monthly-step.is-scroll-active {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.015);
    border-color: rgba(254,99,0,.60);
    background:
      radial-gradient(circle at 82% 18%, rgba(254,99,0,.16), transparent 36%),
      linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.038)),
      rgba(0,0,0,.44);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 26px 76px rgba(0,0,0,.40), 0 0 56px rgba(254,99,0,.18);
  }

  .content-monthly-step.is-scroll-active > span {
    color: #fff;
    border-color: rgba(254,99,0,.72);
    background: rgba(254,99,0,.16);
    box-shadow: 0 0 34px rgba(254,99,0,.30), 0 0 72px rgba(254,99,0,.14);
  }

  .content-monthly-step.is-scroll-active h3 {
    color: #fff;
    text-shadow: 0 0 24px rgba(254,99,0,.16);
  }

  .content-monthly-step.is-scroll-active p {
    color: rgba(255,255,255,.78);
  }

  @media (prefers-reduced-motion: reduce) {
    .content-monthly-step,
    .content-monthly-step > span,
    .content-monthly-step h3,
    .content-monthly-step p {
      transition: none;
      transform: none;
      will-change: auto;
    }
  }

  .content-step-container {
    gap: 30px;
  }

  .content-step-progress {
    margin-bottom: 24px;
  }

  .content-step-embed {
    width: min(100%, 720px);
    padding: 20px;
  }

  .content-funnel-header {
    padding: 22px;
  }

  .content-funnel-logo img {
    height: 48px;
  }

  .content-funnel-footer {
    padding: 34px 22px 30px;
  }

  .content-funnel-footer-logo img {
    height: 42px;
  }

  .content-confirm-secondary-cta {
    width: min(100%, 320px);
  }

  .content-real-header {
    max-width: 100%;
  }

  .content-real-copy {
    margin-top: 22px;
  }

  .content-real-copy p {
    font-size: 17px;
  }

  .content-real-gallery {
    display: flex;
    gap: 16px;
    margin: 36px -22px 0;
    padding: 0 22px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .content-real-gallery::-webkit-scrollbar {
    display: none;
  }

  .content-real-card,
  .content-real-card-wide,
  .content-real-card-tall,
  .content-real-card-low {
    flex: 0 0 min(86vw, 390px);
    height: clamp(250px, 58vw, 360px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
    border-radius: 24px;
  }

  .content-real-card:hover,
  .content-real-card:focus-visible {
    transform: translateY(0) scale(1);
  }

  .content-real-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .content-real-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.24);
    cursor: pointer;
    transition: width .28s ease, background .28s ease, box-shadow .28s ease;
  }

  .content-real-dots button.is-active {
    width: 24px;
    background: #FE6300;
    box-shadow: 0 0 20px rgba(254,99,0,.34);
  }

  .content-real-cta {
    margin-top: 42px;
  }

  .content-real-cta h3 {
    font-size: clamp(34px, 13vw, 54px);
  }

  .content-engine-problem .problem-grid {
    gap: 18px;
  }

  .content-engine-split {
    gap: 42px;
  }

  .content-engine-flow {
    border-radius: 28px;
  }

  .content-flow-step:nth-child(1) {
    --flow-origin-y: 132px;
  }

  .content-flow-step:nth-child(2) {
    --flow-origin-y: 44px;
  }

  .content-flow-step:nth-child(3) {
    --flow-origin-y: -44px;
  }

  .content-flow-step:nth-child(4) {
    --flow-origin-y: -132px;
  }

  .content-engine-pipeline {
    margin-top: 34px;
    padding: 22px 16px;
    border-radius: 28px;
  }

  .content-pipeline-video-layer::after {
    background:
      radial-gradient(circle at 50% 20%, rgba(254,99,0,.22), transparent 38%),
      linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.62)),
      linear-gradient(90deg, rgba(0,0,0,.58), rgba(254,99,0,.12), rgba(0,0,0,.58));
  }

  .content-pipeline-video-layer video {
    opacity: .23;
  }

  .content-pipeline-card {
    gap: 14px;
    min-height: 88px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 22px;
    animation: none !important;
    opacity: .66;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      opacity .4s cubic-bezier(.16, 1, .3, 1),
      transform .4s cubic-bezier(.16, 1, .3, 1),
      border-color .4s cubic-bezier(.16, 1, .3, 1),
      box-shadow .4s cubic-bezier(.16, 1, .3, 1),
      background .4s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity;
  }

  .content-pipeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    transition:
      border-color .4s cubic-bezier(.16, 1, .3, 1),
      box-shadow .4s cubic-bezier(.16, 1, .3, 1),
      background .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-pipeline-icon::before {
    inset: 12px;
  }

  .content-pipeline-icon::after {
    inset: 17px;
  }

  .content-pipeline-card h3 {
    color: rgba(255,255,255,.82);
    transition: color .4s cubic-bezier(.16, 1, .3, 1), text-shadow .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-pipeline-card p {
    color: rgba(255,255,255,.58);
    transition: color .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-pipeline-card-final {
    padding: 26px 18px;
  }

  .content-pipeline-outcomes {
    gap: 10px;
    margin-top: 22px;
  }

  .content-pipeline-outcomes span {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
    transition: border-color .4s cubic-bezier(.16, 1, .3, 1), background .4s cubic-bezier(.16, 1, .3, 1), color .4s cubic-bezier(.16, 1, .3, 1);
  }

  .content-pipeline-card.is-scroll-active {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.015);
    border-color: rgba(254,99,0,.62);
    background:
      radial-gradient(circle at 84% 18%, rgba(254,99,0,.16), transparent 36%),
      linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.038)),
      rgba(0,0,0,.40);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 30px 86px rgba(0,0,0,.42), 0 0 64px rgba(254,99,0,.20);
  }

  .content-pipeline-card.is-scroll-active .content-pipeline-icon {
    border-color: rgba(254,99,0,.74);
    background:
      radial-gradient(circle at 50% 42%, rgba(254,99,0,.46), transparent 58%),
      rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 38px rgba(254,99,0,.30), 0 0 82px rgba(254,99,0,.14);
  }

  .content-pipeline-card.is-scroll-active .content-pipeline-icon::after {
    box-shadow: 0 0 24px rgba(254,99,0,.62);
  }

  .content-pipeline-card.is-scroll-active h3 {
    color: #fff;
    text-shadow: 0 0 24px rgba(254,99,0,.16);
  }

  .content-pipeline-card.is-scroll-active p {
    color: rgba(255,255,255,.78);
  }

  .content-pipeline-card-final.is-scroll-active {
    transform: translate3d(0, -2px, 0) scale(1.012);
    border-color: rgba(254,99,0,.68);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 34px 96px rgba(0,0,0,.46), 0 0 86px rgba(254,99,0,.24);
  }

  .content-pipeline-card-final.is-scroll-active .content-pipeline-outcomes span {
    border-color: rgba(254,99,0,.34);
    background: rgba(254,99,0,.075);
    color: rgba(255,255,255,.94);
  }

  @media (prefers-reduced-motion: reduce) {
    .content-pipeline-card,
    .content-pipeline-icon,
    .content-pipeline-card h3,
    .content-pipeline-card p,
    .content-pipeline-outcomes span {
      transition: none;
      transform: none;
      will-change: auto;
    }
  }

  .content-channel-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-channel-copy {
    display: contents;
  }

  .content-channel-copy .section-eyebrow {
    order: 1;
  }

  .content-channel-copy .section-title {
    order: 2;
  }

  .content-channel-copy .audit-section-copy {
    order: 3;
    margin-left: auto;
    margin-right: auto;
  }

  .content-channel-video-card {
    order: 4;
    width: min(280px, 82vw);
    padding: 10px;
    border-radius: 30px;
  }

  .content-channel-video-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .content-channel-video-card > span {
    bottom: 22px;
    max-width: calc(100% - 38px);
    padding: 8px 11px;
    font-size: 10px;
  }

  .content-channel-video-card video {
    border-radius: 22px;
  }

  .content-channel-grid {
    order: 5;
    gap: 10px;
    margin-top: 0;
    justify-content: center;
  }

  .content-channel-grid span {
    padding: 12px 14px;
    font-size: 13px;
    white-space: normal;
  }

  .content-booking-stack {
    gap: 26px;
  }

  .content-booking-hero .audit-copy.content-booking-copy {
    display: block;
    order: 1;
  }

  .content-booking-visual {
    width: min(430px, 100%);
    border-radius: 28px;
  }

  .content-booking-hero .content-booking-checklist {
    order: 2;
  }

  .content-booking-hero .content-calendar-card {
    order: 3;
  }

  .content-booking-checklist,
  .content-calendar-card {
    width: min(100%, 720px);
  }

  .content-calendar-placeholder {
    min-height: 520px;
  }

  .content-confirm-hero .audit-confirm-icon {
    width: min(230px, 58vw);
  }
}

/* Private AI Marketing Audit funnel */
.audit-funnel {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(254,99,0,.18), transparent 34%),
    radial-gradient(circle at 16% 86%, rgba(254,99,0,.10), transparent 30%),
    #050505;
  color: #fff;
}

.audit-funnel-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 28px 60px;
}

.audit-funnel-logo img {
  display: block;
  width: auto;
  height: 70px;
}

.audit-hero,
.audit-section,
.audit-processing {
  position: relative;
  padding: 150px 24px 110px;
}

.audit-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.audit-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .16;
  pointer-events: none;
}

.audit-container {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.audit-hero-grid,
.audit-survey-grid,
.audit-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr);
  gap: 70px;
  align-items: center;
}

.audit-copy p,
.audit-complete-panel > p,
.audit-processing-panel > p {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.audit-copy .btn {
  margin-top: 40px;
}

.audit-score-widget {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 42%, rgba(254,99,0,.22), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 40px 130px rgba(0,0,0,.52), 0 0 100px rgba(254,99,0,.14);
  backdrop-filter: blur(16px);
}

.audit-score-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(254,99,0,.48);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(254,99,0,.18), rgba(0,0,0,.72) 68%),
    rgba(0,0,0,.72);
  box-shadow: 0 0 0 18px rgba(254,99,0,.06), 0 0 80px rgba(254,99,0,.28);
  transform: translate(-50%, -50%);
  animation: auditCorePulse 3.8s ease-in-out infinite;
}

.audit-score-core span,
.audit-score-core small {
  color: rgba(255,255,255,.64);
  font-weight: 900;
}

.audit-score-core span {
  align-self: end;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.audit-score-core strong {
  color: #FE6300;
  font-family: Anton, sans-serif;
  font-size: 0;
  font-weight: 400;
  line-height: .78;
}

.audit-score-core strong::before {
  content: "?";
  font-size: 92px;
  animation: auditScoreCycle 4.8s steps(1, end) infinite;
}

.audit-score-core small {
  align-self: start;
  font-size: 17px;
}

.audit-score-card {
  position: absolute;
  min-width: 128px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(0,0,0,.58);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 22px 60px rgba(0,0,0,.36), 0 0 30px rgba(254,99,0,.08);
  backdrop-filter: blur(14px);
  animation: auditCardFloat 6s ease-in-out infinite;
}

.score-card-website { top: 72px; left: 60px; }
.score-card-message { top: 68px; right: 54px; animation-delay: .3s; }
.score-card-leads { top: 242px; left: 34px; animation-delay: .6s; }
.score-card-follow { top: 242px; right: 28px; animation-delay: .9s; }
.score-card-trust { bottom: 70px; left: 88px; animation-delay: 1.2s; }
.score-card-content { bottom: 72px; right: 76px; animation-delay: 1.5s; }

.audit-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(254,99,0,.12), transparent 32%),
    #050505;
}

.audit-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.audit-check-grid span,
.audit-checklist-card,
.audit-embed-card,
.audit-final-panel,
.audit-processing-panel,
.audit-complete-panel,
.audit-review-card {
  border: 1px solid rgba(255,255,255,.105);
  background:
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 30px 100px rgba(0,0,0,.40);
  backdrop-filter: blur(14px);
}

.audit-check-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  font-weight: 900;
}

.audit-check-grid span::before,
.audit-checklist-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 14px;
  border-radius: 50%;
  background: #FE6300;
  box-shadow: 0 0 18px rgba(254,99,0,.52);
}

.audit-final {
  padding-top: 70px;
}

.audit-how-section,
.audit-preview-section,
.audit-industry-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(254,99,0,.10), transparent 30%),
    #050505;
}

.audit-receive-section,
.audit-compare-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(254,99,0,.13), transparent 32%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.audit-final-panel,
.audit-complete-panel {
  padding: clamp(32px, 5vw, 64px);
  border-radius: 34px;
  text-align: center;
}

.audit-final-panel p {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.70);
  font-size: 19px;
  line-height: 1.62;
}

.audit-final-panel .btn,
.audit-review-card .btn {
  margin-top: 34px;
}

.audit-step-stack {
  display: grid;
  gap: 18px;
  margin-top: 58px;
}

.audit-journey-step,
.audit-feature-card,
.audit-report-mockup,
.audit-compare-card,
.audit-industry-grid span {
  border: 1px solid rgba(255,255,255,.105);
  background:
    radial-gradient(circle at 82% 18%, rgba(254,99,0,.10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
}

.audit-journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 30px 34px;
  border-radius: 30px;
  overflow: hidden;
  animation: auditCardReveal .8s ease both;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.audit-journey-step:nth-child(2) {
  animation-delay: .12s;
}

.audit-journey-step:nth-child(3) {
  animation-delay: .24s;
}

.audit-journey-step::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(254,99,0,.48), transparent);
}

.audit-journey-step:hover,
.audit-feature-card:hover,
.audit-compare-card:hover,
.audit-industry-grid span:hover {
  transform: translateY(-6px);
  border-color: rgba(254,99,0,.46);
  box-shadow: 0 40px 120px rgba(0,0,0,.50), 0 0 70px rgba(254,99,0,.13);
}

.audit-journey-step > span {
  position: relative;
  z-index: 2;
  color: rgba(254,99,0,.18);
  font-family: Anton, sans-serif;
  font-size: 74px;
  line-height: .9;
  -webkit-text-stroke: 1px rgba(254,99,0,.62);
}

.audit-journey-step h3,
.audit-feature-card h3,
.audit-compare-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.audit-journey-step p,
.audit-feature-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.58;
}

.audit-journey-step small {
  justify-self: end;
  padding: 11px 14px;
  border: 1px solid rgba(254,99,0,.30);
  border-radius: 999px;
  background: rgba(254,99,0,.08);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.audit-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.audit-feature-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 30px;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.audit-feature-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 28px;
  border: 1px solid rgba(254,99,0,.38);
  border-radius: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(254,99,0,.18), transparent 58%),
    rgba(0,0,0,.44);
  box-shadow: 0 0 46px rgba(254,99,0,.12);
  overflow: hidden;
}

.audit-feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .24;
}

.audit-feature-icon svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.audit-feature-icon path,
.audit-feature-icon line,
.audit-feature-icon circle,
.audit-feature-icon rect {
  vector-effect: non-scaling-stroke;
}

.audit-svg-muted,
.audit-funnel-body,
.audit-dollar-ring,
.audit-clipboard {
  fill: none;
  stroke: rgba(255,255,255,.30);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audit-svg-accent,
.audit-growth-arrow,
.audit-growth-head,
.audit-check,
.audit-final-tick,
.audit-clip,
.audit-funnel-neck,
.audit-block-marker {
  fill: none;
  stroke: #FE6300;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(254,99,0,.46));
}

.audit-svg-dot,
.audit-funnel-dot,
.audit-bar,
.audit-final-check {
  fill: #FE6300;
  filter: drop-shadow(0 0 8px rgba(254,99,0,.42));
}

.audit-feature-icon text {
  fill: #FE6300;
  font-family: Anton, sans-serif;
  font-size: 22px;
  font-weight: 400;
  filter: drop-shadow(0 0 8px rgba(254,99,0,.34));
}

.audit-score-arc {
  stroke-dasharray: 72 100;
  stroke-dashoffset: 100;
  animation: auditGaugeArc 4.8s ease-in-out infinite;
}

.audit-score-needle {
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  transform-origin: 60px 78px;
  transform: rotate(-62deg);
  filter: drop-shadow(0 0 8px rgba(254,99,0,.34));
  animation: auditNeedleSweep 4.8s ease-in-out infinite;
}

.audit-funnel-body {
  fill: rgba(255,255,255,.035);
}

.audit-funnel-dot {
  animation: auditFunnelDrop 3.8s ease-in-out infinite;
}

.dot-two { animation-delay: .4s; }
.dot-three { animation-delay: .8s; }
.dot-four {
  opacity: .3;
  animation: auditFunnelPass 3.8s ease-in-out infinite;
  animation-delay: 1.15s;
}

.audit-block-marker {
  stroke-width: 4;
  animation: auditBlockedPulse 3.8s ease-in-out infinite;
}

.audit-dollar-ring {
  stroke-width: 4;
  fill: rgba(254,99,0,.06);
}

.audit-dollar {
  font-size: 21px;
}

.audit-bar {
  transform-origin: center bottom;
  transform-box: fill-box;
  animation: auditBarRise 3.6s ease-in-out infinite;
}

.bar-two { animation-delay: .18s; }
.bar-three { animation-delay: .36s; }

.audit-growth-arrow,
.audit-growth-head {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: auditArrowSweep 3.6s ease-in-out infinite;
}

.audit-growth-head {
  animation-delay: .18s;
}

.audit-clipboard {
  stroke-width: 4;
  fill: rgba(255,255,255,.035);
}

.audit-clip,
.audit-line {
  stroke-width: 4;
}

.audit-line {
  stroke: rgba(255,255,255,.34);
  stroke-linecap: round;
}

.audit-check,
.audit-final-tick {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: auditCheckDraw 4s ease-in-out infinite;
}

.check-two {
  animation-delay: .55s;
}

.audit-final-check {
  opacity: 0;
  animation: auditFinalBadge 4s ease-in-out infinite;
  animation-delay: 1.1s;
}

.audit-final-tick {
  stroke: #fff;
  stroke-width: 4;
  animation-delay: 1.28s;
}

.audit-feature-card:hover .audit-feature-icon {
  border-color: rgba(254,99,0,.66);
  box-shadow: 0 0 62px rgba(254,99,0,.20);
}

.audit-preview-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 64px;
  align-items: center;
}

.audit-preview-cta {
  grid-column: 1 / -1;
  position: relative;
  max-width: 980px;
  margin: 6px auto 0;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(254,99,0,.34);
  border-radius: 34px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(254,99,0,.20), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.026)),
    rgba(0,0,0,.64);
  box-shadow: 0 34px 110px rgba(0,0,0,.46), 0 0 86px rgba(254,99,0,.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.audit-preview-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.audit-preview-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .24;
  pointer-events: none;
}

.audit-preview-cta > * {
  position: relative;
  z-index: 2;
}

.audit-preview-cta h3 {
  max-width: 760px;
  margin: 16px auto 0;
  color: #fff;
  font-family: Anton, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  line-height: .94;
  text-transform: uppercase;
}

.audit-preview-cta p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
}

.audit-preview-cta.is-visible .btn {
  margin-top: 34px;
  animation: auditPreviewButtonGlow 1.15s ease both 1.05s;
}

.audit-preview-cta .btn {
  margin-top: 34px;
}

.audit-preview-cta .btn:hover {
  box-shadow: 0 26px 76px rgba(254,99,0,.54), 0 0 54px rgba(254,99,0,.30);
}

.audit-preview-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 24px;
}

.audit-preview-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(8px);
}

.audit-preview-cta.is-visible .audit-preview-reassurance span {
  animation: auditPreviewCheckIn .5s ease forwards;
}

.audit-preview-reassurance span:nth-child(1) { animation-delay: 1.18s; }
.audit-preview-reassurance span:nth-child(2) { animation-delay: 1.34s; }
.audit-preview-reassurance span:nth-child(3) { animation-delay: 1.50s; }

.audit-preview-reassurance i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(254,99,0,.42);
  border-radius: 50%;
  background: rgba(254,99,0,.10);
  color: #FE6300;
  font-size: 12px;
  font-style: normal;
  box-shadow: 0 0 18px rgba(254,99,0,.16);
}

.audit-report-mockup {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 22px;
  border-color: rgba(254,99,0,.26);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(254,99,0,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.026)),
    rgba(0,0,0,.62);
  animation: auditDeviceFloat 7s ease-in-out infinite;
}

.audit-report-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .30;
  pointer-events: none;
}

.audit-device-bar,
.audit-report-header,
.audit-report-grid {
  position: relative;
  z-index: 2;
}

.audit-device-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 24px;
}

.audit-device-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.audit-device-bar span:first-child {
  background: #FE6300;
  box-shadow: 0 0 18px rgba(254,99,0,.44);
}

.audit-report-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(0,0,0,.38);
  animation: auditCardReveal .7s ease both;
}

.audit-report-header h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.audit-report-header p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  font-weight: 800;
}

.audit-report-header > span {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(254,99,0,.38);
  border-radius: 999px;
  background: rgba(254,99,0,.08);
  color: #FE6300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  box-shadow: 0 0 28px rgba(254,99,0,.12);
}

.audit-report-card > span {
  display: block;
  color: rgba(255,255,255,.54);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.audit-report-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  margin-top: 18px;
}

.audit-report-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  animation: auditCardReveal .8s ease both;
}

.audit-report-card:nth-child(2) {
  animation-delay: .14s;
}

.audit-report-card:nth-child(3) {
  animation-delay: .28s;
}

.audit-report-card:nth-child(4) { animation-delay: .40s; }
.audit-report-card:nth-child(5) { animation-delay: .52s; }
.audit-report-card:nth-child(6) { animation-delay: .64s; }
.audit-report-card:nth-child(7) { animation-delay: .76s; }

.audit-score-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}

.audit-score-row strong,
.audit-revenue-panel strong {
  display: block;
  color: #FE6300;
  font-family: Anton, sans-serif;
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 400;
  line-height: .9;
  animation: auditNumberPulse 3.4s ease-in-out infinite;
}

.audit-score-row svg {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.audit-mini-gauge-bg,
.audit-mini-gauge-fill {
  fill: none;
  stroke-width: 8;
}

.audit-mini-gauge-bg {
  stroke: rgba(255,255,255,.12);
}

.audit-mini-gauge-fill {
  stroke: #FE6300;
  stroke-linecap: round;
  stroke-dasharray: 72 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 8px rgba(254,99,0,.46));
  animation: auditMiniGaugeFill 2.2s ease forwards;
}

.audit-chart-panel {
  grid-row: span 2;
}

.audit-chart-panel svg {
  width: 100%;
  height: 150px;
  margin-top: 12px;
  overflow: visible;
}

.audit-chart-area {
  fill: url(#auditChartGradient);
  opacity: .72;
}

.audit-chart-line {
  fill: none;
  stroke: #FE6300;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 330;
  stroke-dashoffset: 330;
  filter: drop-shadow(0 0 10px rgba(254,99,0,.48));
  animation: auditChartDraw 2.4s ease forwards .45s;
}

.audit-summary-panel {
  grid-column: 1 / -1;
  min-height: auto;
}

.audit-summary-panel p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.52;
  font-weight: 800;
}

.audit-list-panel ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.audit-list-panel li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.audit-list-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FE6300;
  box-shadow: 0 0 14px rgba(254,99,0,.42);
}

.audit-revenue-panel {
  border-color: rgba(254,99,0,.42);
  background:
    radial-gradient(circle at 78% 20%, rgba(254,99,0,.30), transparent 40%),
    linear-gradient(135deg, rgba(254,99,0,.16), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
  box-shadow: 0 28px 90px rgba(0,0,0,.42), 0 0 72px rgba(254,99,0,.14);
  animation: auditCardReveal .8s ease both .64s, auditRevenueGlow 3.2s ease-in-out infinite 1.2s;
}

.audit-traffic-panel {
  grid-column: 1 / -1;
}

.audit-traffic-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.audit-traffic-row small {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
}

.audit-traffic-row i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.audit-traffic-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--traffic-width);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(254,99,0,.42), #FE6300);
  box-shadow: 0 0 20px rgba(254,99,0,.28);
  transform-origin: left center;
  animation: auditTrafficGrow 1.8s ease forwards;
}

.audit-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.audit-compare-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.audit-compare-card-featured {
  border-color: rgba(254,99,0,.45);
  background:
    radial-gradient(circle at 84% 20%, rgba(254,99,0,.24), transparent 38%),
    linear-gradient(135deg, rgba(254,99,0,.12), rgba(255,255,255,.035)),
    rgba(255,255,255,.04);
  box-shadow: 0 36px 120px rgba(0,0,0,.48), 0 0 90px rgba(254,99,0,.16);
}

.audit-compare-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.audit-compare-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.70);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.audit-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
}

.audit-compare-card-featured li {
  color: rgba(255,255,255,.84);
}

.audit-compare-card-featured li::before {
  background: #FE6300;
  box-shadow: 0 0 18px rgba(254,99,0,.48);
}

.audit-section-copy {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255,255,255,.70);
  font-size: 19px;
  line-height: 1.62;
}

.audit-industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.audit-industry-grid span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 16px 22px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 900;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.audit-survey-hero,
.audit-review-hero,
.audit-complete-hero {
  align-items: flex-start;
}

.audit-checklist-card {
  margin-top: 42px;
  padding: 30px;
  border-radius: 28px;
}

.audit-checklist-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-checklist-card li {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  font-weight: 900;
}

.audit-checklist-card p {
  margin: 26px 0 0;
  color: #FE6300;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audit-embed-card {
  position: relative;
  overflow: visible;
  padding: 14px;
  border-color: rgba(254,99,0,.34);
  border-radius: 34px;
}

.audit-loading-note {
  position: absolute;
  inset: 28px;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: rgba(255,255,255,.52);
  font-size: 14px;
  font-weight: 800;
  pointer-events: none;
}

.audit-embed-card iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 24px;
  background: #050505;
}

.audit-survey-card iframe {
  min-height: 850px;
}

.audit-calendar-card iframe {
  min-height: 780px;
}

.audit-processing-page {
  min-height: 100vh;
}

.audit-processing {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.audit-processing::before,
.audit-processing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audit-processing::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(254,99,0,.14), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(254,99,0,.12), transparent 32%);
  animation: auditAmbientBreath 7s ease-in-out infinite;
}

.audit-processing::after {
  background-image:
    radial-gradient(circle, rgba(254,99,0,.34) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.18) 0 1px, transparent 1.5px);
  background-size: 140px 140px, 210px 210px;
  background-position: 12% 20%, 80% 62%;
  opacity: .20;
  animation: auditParticlesDrift 18s linear infinite;
}

.audit-processing-panel {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  padding: clamp(30px, 5vw, 64px);
  border-color: rgba(254,99,0,.30);
  border-radius: 34px;
}

.audit-processing-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .20;
  pointer-events: none;
  animation: auditGridShift 12s linear infinite;
}

.audit-processing-panel > * {
  position: relative;
  z-index: 2;
}

.audit-status-copy {
  min-height: 22px;
  margin-top: 18px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.audit-status-copy span {
  display: inline-block;
  color: #FE6300;
  text-shadow: 0 0 24px rgba(254,99,0,.32);
  transition: opacity .35s ease;
}

.audit-status-copy span.is-changing {
  opacity: .18;
}

.audit-progress-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  margin-top: 46px;
}

.audit-progress-gauge {
  position: relative;
  --audit-tick-radius: 158px;
  width: min(340px, 74vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
}

.audit-gauge-glow {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,99,0,.22), rgba(254,99,0,.08) 42%, transparent 72%);
  filter: blur(18px);
  animation: auditGaugeBreath 4.8s ease-in-out infinite;
}

.audit-gauge-ticks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.audit-gauge-ticks i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(var(--tick-angle)) translateY(calc(var(--audit-tick-radius) * -1));
  transform-origin: 50% 50%;
  transition: height .18s ease, background .18s ease, box-shadow .18s ease;
}

.audit-gauge-ticks i.is-active {
  height: 18px;
  background: #FE6300;
  box-shadow: 0 0 16px rgba(254,99,0,.78);
  animation: auditTickPulse .42s ease;
}

.audit-gauge-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(254,99,0,.95);
  border-right-color: rgba(254,99,0,.38);
  filter: drop-shadow(0 0 18px rgba(254,99,0,.42));
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform .12s linear;
}

.audit-gauge-core {
  position: absolute;
  inset: 17%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(254,99,0,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(254,99,0,.18), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.024)),
    rgba(0,0,0,.68);
  box-shadow: inset 0 0 48px rgba(254,99,0,.08), 0 0 0 18px rgba(254,99,0,.035), 0 0 70px rgba(0,0,0,.40);
  backdrop-filter: blur(12px);
}

.audit-gauge-core strong {
  color: #FE6300;
  font-family: Anton, sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 400;
  line-height: .86;
}

.audit-gauge-core span {
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-align: center;
  transition: color .35s ease, text-shadow .35s ease;
}

.audit-progress-gauge.is-complete .audit-gauge-glow {
  animation: auditSuccessGlow 1s ease both;
}

.audit-progress-gauge.is-complete .audit-gauge-core {
  border-color: rgba(254,99,0,.82);
  box-shadow: inset 0 0 48px rgba(254,99,0,.12), 0 0 0 22px rgba(254,99,0,.065), 0 0 110px rgba(254,99,0,.36);
  animation: auditSuccessPulse 1s ease both;
}

.audit-progress-gauge.is-complete .audit-gauge-core span {
  color: #fff;
  text-shadow: 0 0 24px rgba(254,99,0,.42);
}

.audit-progress-gauge.is-complete .audit-gauge-sweep {
  border-top-color: #FE6300;
  border-right-color: #FE6300;
  border-bottom-color: rgba(254,99,0,.36);
  border-left-color: rgba(254,99,0,.18);
}

.audit-progress-side {
  min-width: 0;
}

.audit-progress-track {
  position: relative;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(255,255,255,.055);
  box-shadow: inset 0 0 28px rgba(0,0,0,.38);
}

.audit-progress-bar {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(254,99,0,.72), #FE6300, rgba(255,255,255,.38));
  box-shadow: 0 0 34px rgba(254,99,0,.38);
  transition: width .12s linear;
}

.audit-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: translateX(-100%);
  animation: auditProgressSheen 1.4s linear infinite;
}

.audit-console {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.audit-console span {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.64);
  font-size: 15px;
  font-weight: 800;
  transition: opacity .45s ease, transform .45s ease, color .45s ease, border-color .45s ease, background .45s ease, box-shadow .45s ease;
}

.audit-console span i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.audit-console span b {
  font: inherit;
}

.audit-console span.is-visible {
  transform: translateY(0);
  color: rgba(255,255,255,.88);
}

.audit-console span.is-active {
  border-color: rgba(254,99,0,.40);
  background: rgba(254,99,0,.055);
  box-shadow: 0 0 36px rgba(254,99,0,.10);
  color: #fff;
}

.audit-console span.is-active i {
  border-color: rgba(254,99,0,.82);
  border-top-color: transparent;
  box-shadow: 0 0 20px rgba(254,99,0,.34);
  animation: auditLineSpinner .8s linear infinite;
}

.audit-console span.is-complete {
  color: rgba(255,255,255,.54);
}

.audit-console span.is-complete i {
  display: grid;
  place-items: center;
  border-color: rgba(254,99,0,.72);
  background: rgba(254,99,0,.18);
  box-shadow: 0 0 18px rgba(254,99,0,.24);
}

.audit-console span.is-complete i::before {
  content: "✓";
  color: #FE6300;
  font-size: 10px;
  font-weight: 900;
}

.audit-complete-panel {
  max-width: 1040px;
  margin: 0 auto;
}

.audit-complete-panel > p {
  margin-left: auto;
  margin-right: auto;
}

.audit-review-card {
  margin-top: 42px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
}

.audit-review-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.audit-review-card p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.70);
  font-size: 18px;
  line-height: 1.62;
}

.audit-confirm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 24px 110px;
}

.audit-confirm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: 70px;
  align-items: center;
}

.audit-confirm-copy {
  animation: auditCardReveal .8s ease both;
}

.audit-confirm-copy p,
.audit-wait-panel p,
.audit-proof-strip p {
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.audit-confirm-copy p {
  margin-top: 26px;
}

.audit-confirm-copy p + p {
  margin-top: 16px;
}

.audit-confirm-icon {
  position: relative;
  width: min(330px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.audit-confirm-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(53,255,147,.18), transparent 28%),
    radial-gradient(circle, rgba(254,99,0,.22), rgba(254,99,0,.08) 45%, transparent 72%);
  filter: blur(18px);
  animation: auditConfirmGlow 3.4s ease-in-out infinite;
}

.audit-confirm-icon svg {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 34px rgba(254,99,0,.26));
}

.audit-confirm-circle {
  fill: rgba(0,0,0,.56);
  stroke: rgba(254,99,0,.72);
  stroke-width: 5;
  filter: drop-shadow(0 0 18px rgba(254,99,0,.32));
}

.audit-confirm-check {
  fill: none;
  stroke: #35ff93;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  filter: drop-shadow(0 0 16px rgba(53,255,147,.38)) drop-shadow(0 0 22px rgba(254,99,0,.24));
  animation: auditConfirmCheck 1.1s ease forwards .35s;
}

.audit-confirm-next {
  background:
    radial-gradient(circle at 84% 18%, rgba(254,99,0,.12), transparent 32%),
    #050505;
}

.audit-next-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.audit-next-card,
.audit-wait-panel,
.audit-logo-card {
  border: 1px solid rgba(255,255,255,.105);
  background:
    radial-gradient(circle at 82% 18%, rgba(254,99,0,.10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    rgba(255,255,255,.035);
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
}

.audit-next-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 28px;
  animation: auditCardReveal .8s ease both;
}

.audit-next-card:nth-child(2) { animation-delay: .12s; }
.audit-next-card:nth-child(3) { animation-delay: .24s; }
.audit-next-card:nth-child(4) { animation-delay: .36s; }

.audit-next-card span {
  display: block;
  color: rgba(254,99,0,.18);
  font-family: Anton, sans-serif;
  font-size: 58px;
  line-height: .9;
  -webkit-text-stroke: 1px rgba(254,99,0,.62);
  margin-bottom: 28px;
}

.audit-next-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.audit-next-card p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.58;
}

.audit-wait-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(254,99,0,.11), transparent 30%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.audit-wait-panel {
  padding: clamp(32px, 5vw, 64px);
  border-radius: 34px;
}

.audit-wait-panel p {
  margin-top: 24px;
}

.audit-wait-panel p + p {
  margin-top: 12px;
}

.audit-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
}

.audit-text-link {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.audit-text-link:hover,
.audit-text-link:focus-visible {
  color: #FE6300;
  text-shadow: 0 0 20px rgba(254,99,0,.36);
  transform: translateY(-2px);
  outline: none;
}

.audit-proof-strip {
  padding-top: 90px;
  text-align: center;
}

.audit-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.audit-logo-card {
  min-height: 112px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: rgba(255,255,255,.44);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
}

.audit-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254,99,0,.42);
  color: rgba(255,255,255,.74);
  box-shadow: 0 28px 90px rgba(0,0,0,.48), 0 0 56px rgba(254,99,0,.12);
}

.audit-proof-strip p {
  margin: 32px auto 0;
  font-size: 17px;
}

@keyframes auditConfirmGlow {
  0%, 100% { opacity: .76; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes auditConfirmCheck {
  to { stroke-dashoffset: 0; }
}

@keyframes auditCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes auditCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes auditScoreCycle {
  0% { content: "18"; }
  12% { content: "43"; }
  24% { content: "67"; }
  36% { content: "29"; }
  48% { content: "81"; }
  60% { content: "54"; }
  72% { content: "92"; }
  84%, 100% { content: "?"; }
}

@keyframes auditCardReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes auditIconSpin {
  to { transform: rotate(360deg); }
}

@keyframes auditGaugeArc {
  0% { stroke-dashoffset: 100; opacity: .5; }
  45%, 78% { stroke-dashoffset: 28; opacity: 1; }
  100% { stroke-dashoffset: 100; opacity: .5; }
}

@keyframes auditNeedleSweep {
  0% { transform: rotate(-62deg); }
  45%, 78% { transform: rotate(38deg); }
  100% { transform: rotate(-62deg); }
}

@keyframes auditFunnelDrop {
  0% { opacity: 0; transform: translateY(0); }
  18% { opacity: 1; }
  58% { opacity: 1; transform: translateY(38px); }
  72%, 100% { opacity: 0; transform: translateY(42px); }
}

@keyframes auditFunnelPass {
  0%, 45% { opacity: 0; transform: translateY(-18px); }
  58% { opacity: 1; }
  82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes auditBlockedPulse {
  0%, 42%, 100% { opacity: .35; transform: scale(.94); transform-origin: 79px 61px; }
  54%, 72% { opacity: 1; transform: scale(1); transform-origin: 79px 61px; }
}

@keyframes auditBarRise {
  0% { transform: scaleY(.22); opacity: .46; }
  32%, 78% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(.22); opacity: .46; }
}

@keyframes auditArrowSweep {
  0% { stroke-dashoffset: 100; opacity: .3; }
  42%, 78% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 100; opacity: .3; }
}

@keyframes auditCheckDraw {
  0%, 14% { stroke-dashoffset: 36; opacity: .35; }
  34%, 82% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 36; opacity: .35; }
}

@keyframes auditFinalBadge {
  0%, 34% { opacity: 0; transform: scale(.82); transform-origin: 82px 86px; }
  48%, 82% { opacity: 1; transform: scale(1); transform-origin: 82px 86px; }
  100% { opacity: 0; transform: scale(.82); transform-origin: 82px 86px; }
}

@keyframes auditDeviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes auditNumberPulse {
  0%, 100% { text-shadow: 0 0 24px rgba(254,99,0,.24); }
  50% { text-shadow: 0 0 42px rgba(254,99,0,.48); }
}

@keyframes auditMiniGaugeFill {
  to { stroke-dashoffset: 28; }
}

@keyframes auditChartDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes auditRevenueGlow {
  0%, 100% { box-shadow: 0 28px 90px rgba(0,0,0,.42), 0 0 60px rgba(254,99,0,.12); }
  50% { box-shadow: 0 34px 105px rgba(0,0,0,.48), 0 0 96px rgba(254,99,0,.24); }
}

@keyframes auditTrafficGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes auditPreviewButtonGlow {
  0% {
    box-shadow: 0 18px 50px rgba(254,99,0,.32);
  }
  42% {
    box-shadow: 0 24px 68px rgba(254,99,0,.52), 0 0 42px rgba(254,99,0,.28);
  }
  100% {
    box-shadow: 0 18px 50px rgba(254,99,0,.32);
  }
}

@keyframes auditPreviewCheckIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .audit-journey-step,
  .audit-dashboard-card,
  .audit-report-card,
  .audit-preview-cta,
  .audit-preview-cta .btn,
  .audit-preview-reassurance span,
  .audit-confirm-copy,
  .audit-confirm-ring,
  .audit-confirm-check,
  .audit-next-card,
  .audit-icon-score i,
  .audit-score-arc,
  .audit-score-needle,
  .audit-funnel-dot,
  .audit-block-marker,
  .audit-bar,
  .audit-growth-arrow,
  .audit-growth-head,
  .audit-check,
  .audit-final-check,
  .audit-final-tick,
  .audit-report-mockup,
  .audit-dashboard-head strong,
  .audit-chart-line,
  .audit-mini-gauge-fill,
  .audit-traffic-row i::before,
  .audit-revenue-panel {
    animation: none;
  }

  .audit-confirm-check {
    stroke-dashoffset: 0;
  }

  .audit-preview-cta {
    opacity: 1;
    transform: none;
  }

  .audit-preview-reassurance span {
    opacity: 1;
    transform: none;
  }
}

@keyframes auditGaugeBreath {
  0%, 100% { opacity: .72; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes auditSuccessPulse {
  0% { transform: scale(1); }
  42% { transform: scale(1.045); }
  100% { transform: scale(1); }
}

@keyframes auditSuccessGlow {
  0% { opacity: .78; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.14); }
  100% { opacity: .88; transform: scale(1.04); }
}

@keyframes auditTickPulse {
  0% { transform: translate(-50%, -50%) rotate(var(--tick-angle)) translateY(calc(var(--audit-tick-radius) * -1)) scaleY(.72); }
  45% { transform: translate(-50%, -50%) rotate(var(--tick-angle)) translateY(calc(var(--audit-tick-radius) * -1)) scaleY(1.28); }
  100% { transform: translate(-50%, -50%) rotate(var(--tick-angle)) translateY(calc(var(--audit-tick-radius) * -1)) scaleY(1); }
}

@keyframes auditProgressSheen {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(520px); }
}

@keyframes auditLineSpinner {
  to { transform: rotate(360deg); }
}

@keyframes auditAmbientBreath {
  0%, 100% { opacity: .58; filter: blur(0); }
  50% { opacity: .92; filter: blur(8px); }
}

@keyframes auditParticlesDrift {
  0% { background-position: 12% 20%, 80% 62%; }
  100% { background-position: 18% 34%, 74% 48%; }
}

@keyframes auditGridShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 42px 42px, 42px 42px; }
}

@media(max-width: 1100px) {
  .audit-hero-grid,
  .audit-survey-grid,
  .audit-review-grid,
  .audit-preview-grid,
  .audit-confirm-grid {
    grid-template-columns: 1fr;
  }

  .audit-score-widget {
    min-height: 500px;
  }

  .audit-check-grid,
  .audit-feature-grid,
  .audit-compare-grid,
  .audit-next-grid,
  .audit-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-journey-step {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .audit-journey-step small {
    grid-column: 2;
    justify-self: start;
  }
}

@media(max-width: 768px) {
  .audit-hero-grid {
    gap: 30px;
  }

  .audit-hero .audit-copy {
    display: contents;
  }

  .audit-hero .section-eyebrow {
    order: 1;
  }

  .audit-hero .service-page-title {
    order: 2;
  }

  .audit-hero .audit-score-widget {
    order: 3;
    margin-top: 4px;
  }

  .audit-hero .audit-copy p {
    order: 4;
    margin-top: 4px;
  }

  .audit-hero .audit-copy .btn {
    order: 5;
    width: 100%;
    margin-top: 0;
  }

  .audit-review-grid {
    gap: 34px;
  }

  .audit-review-hero .audit-copy {
    display: block;
    order: 1;
  }

  .audit-review-hero .audit-copy p {
    margin-top: 22px;
  }

  .audit-review-hero .audit-calendar-card {
    order: 2;
    margin-top: 4px;
  }

  .audit-survey-grid {
    gap: 26px;
    justify-items: stretch;
  }

  .audit-survey-hero .audit-copy {
    display: contents;
  }

  .audit-survey-hero .section-eyebrow {
    order: 1;
    justify-self: start;
  }

  .audit-survey-hero .service-page-title {
    order: 2;
  }

  .audit-survey-hero .audit-copy p {
    order: 3;
    margin-top: 0;
  }

  .audit-survey-hero .audit-checklist-card {
    order: 4;
    width: min(100%, 720px);
    justify-self: center;
    margin-top: 6px;
  }

  .audit-survey-hero .audit-survey-card {
    order: 5;
    width: min(100%, 720px);
    justify-self: center;
    margin-top: 8px;
  }

  .audit-journey-step.is-scroll-active,
  .audit-feature-card.is-scroll-active,
  .audit-report-card.is-scroll-active,
  .audit-next-card.is-scroll-active {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(254,99,0,.54);
    background:
      radial-gradient(circle at 82% 18%, rgba(254,99,0,.16), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.038)),
      rgba(255,255,255,.055);
    box-shadow: 0 24px 64px rgba(0,0,0,.34), 0 0 46px rgba(254,99,0,.18);
  }

  .audit-journey-step.is-scroll-active h3,
  .audit-feature-card.is-scroll-active h3,
  .audit-report-card.is-scroll-active span,
  .audit-report-card.is-scroll-active p,
  .audit-report-card.is-scroll-active li,
  .audit-next-card.is-scroll-active h3,
  .audit-next-card.is-scroll-active span {
    color: #fff;
  }

  .audit-feature-card.is-scroll-active p,
  .audit-journey-step.is-scroll-active p,
  .audit-journey-step.is-scroll-active small,
  .audit-next-card.is-scroll-active p {
    color: rgba(255,255,255,.80);
  }

  .audit-feature-card.is-scroll-active .audit-feature-icon {
    border-color: rgba(254,99,0,.58);
    box-shadow: 0 0 42px rgba(254,99,0,.20);
  }

  .audit-industry-grid span:hover {
    transform: none;
    border-color: rgba(255,255,255,.105);
    color: rgba(255,255,255,.82);
    box-shadow: 0 30px 100px rgba(0,0,0,.38);
  }

  .audit-industry-grid span.is-scroll-active {
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(254,99,0,.54);
    color: #fff;
    box-shadow: 0 22px 58px rgba(0,0,0,.32), 0 0 42px rgba(254,99,0,.16);
  }
}

@media(max-width: 700px) {
  .audit-funnel-header {
    padding: 22px;
  }

  .audit-funnel-logo img {
    height: 48px;
  }

  .audit-hero,
  .audit-section,
  .audit-processing,
  .audit-confirm-hero {
    padding: 118px 22px 80px;
  }

  .audit-score-widget {
    min-height: 560px;
    border-radius: 28px;
  }

  .audit-score-core {
    width: 184px;
    height: 184px;
  }

  .audit-score-core strong::before {
    font-size: 74px;
  }

  .audit-score-card {
    min-width: 112px;
    padding: 13px 14px;
  }

  .score-card-website { top: 54px; left: 20px; }
  .score-card-message { top: 54px; right: 18px; }
  .score-card-leads { top: 210px; left: 12px; }
  .score-card-follow { top: 210px; right: 12px; }
  .score-card-trust { bottom: 58px; left: 34px; }
  .score-card-content { bottom: 58px; right: 28px; }

  .audit-check-grid,
  .audit-feature-grid,
  .audit-compare-grid,
  .audit-next-grid,
  .audit-logo-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .audit-check-grid span {
    min-height: 74px;
  }

  .audit-step-stack,
  .audit-feature-grid,
  .audit-compare-grid {
    margin-top: 42px;
  }

  .audit-journey-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
  }

  .audit-journey-step::before {
    display: none;
  }

  .audit-journey-step > span {
    font-size: 64px;
  }

  .audit-journey-step small {
    grid-column: auto;
  }

  .audit-feature-card {
    min-height: auto;
    padding: 28px;
    border-radius: 24px;
  }

  .audit-report-mockup {
    min-height: auto;
    padding: 18px;
    border-radius: 26px;
  }

  .audit-preview-cta {
    margin-top: 0;
    padding: 30px 22px;
    border-radius: 26px;
  }

  .audit-preview-cta .btn {
    width: 100%;
  }

  .audit-preview-reassurance {
    display: grid;
    justify-content: stretch;
    gap: 12px;
    text-align: left;
  }

  .audit-dashboard-head {
    display: grid;
    padding: 22px;
  }

  .audit-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .audit-report-grid {
    grid-template-columns: 1fr;
  }

  .audit-chart-panel {
    grid-row: auto;
  }

  .audit-dashboard-wide {
    grid-column: auto;
  }

  .audit-compare-card {
    border-radius: 24px;
  }

  .audit-industry-grid span {
    width: 100%;
    justify-content: center;
  }

  .audit-next-card {
    min-height: auto;
    border-radius: 24px;
  }

  .audit-wait-panel {
    padding: 28px;
    border-radius: 24px;
  }

  .audit-confirm-actions {
    display: grid;
    align-items: stretch;
  }

  .audit-confirm-actions .btn,
  .audit-text-link {
    width: 100%;
    text-align: center;
  }

  .audit-progress-wrap {
    grid-template-columns: 1fr;
  }

  .audit-progress-gauge {
    --audit-tick-radius: min(34vw, 158px);
  }

  .audit-survey-card iframe {
    min-height: 780px;
  }

  .audit-calendar-card iframe {
    min-height: 720px;
  }
}

@media(max-width: 768px) {
  .audit-booking-confirmed .audit-confirm-hero {
    min-height: auto;
    padding: 104px 22px 56px;
  }

  .audit-booking-confirmed .audit-confirm-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .audit-booking-confirmed .audit-confirm-icon {
    order: 1;
    width: min(230px, 58vw);
    margin-bottom: 2px;
  }

  .audit-booking-confirmed .audit-confirm-copy {
    order: 2;
  }

  .audit-booking-confirmed .audit-confirm-copy .section-eyebrow {
    margin: 0 auto 16px;
  }

  .audit-booking-confirmed .audit-confirm-copy p {
    margin: 18px auto 0;
  }

  .audit-booking-confirmed .audit-confirm-copy p + p {
    margin-top: 10px;
  }

  .audit-booking-confirmed .audit-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .audit-booking-confirmed .audit-next-grid,
  .audit-booking-confirmed .audit-logo-grid {
    margin-top: 32px;
    gap: 14px;
  }

  .audit-booking-confirmed .audit-next-card {
    padding: 24px;
  }

  .audit-booking-confirmed .audit-next-card span {
    margin-bottom: 18px;
  }

  .audit-booking-confirmed .audit-wait-panel {
    padding: 26px 22px;
  }

  .audit-booking-confirmed .audit-wait-panel p {
    margin-top: 18px;
  }

  .audit-booking-confirmed .audit-confirm-actions {
    margin-top: 26px;
    gap: 14px;
  }

  .audit-booking-confirmed .audit-proof-strip {
    padding-top: 54px;
  }

  .audit-booking-confirmed .audit-proof-strip p {
    margin-top: 22px;
  }
}
