@import url("https://unpkg.com/aos@2.3.4/dist/aos.css");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600;1,700&family=Poppins:wght@300;400;500;600;700;900&family=Qwitcher+Grypen:wght@700&display=swap");

:root {
  --ink: #171323;
  --purple: #a754ef;
  --pink: #f8ecff;
  --line: #e9e9e9;
  --paper: #fffdfb;
  --soft: #f7fbf6;
  --serif: "Playfair Display", serif;
  --sans: "Poppins", sans-serif;
}

/* Keep content visible if AOS never boots / is blocked */
html:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .process.js-animate .process__step,
  .process.js-animate .process__visual>.section-pill,
  .process.js-animate .process__visual>h2,
  .process.js-animate .process__visual>img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

* {
  box-sizing: border-box;
}

/* Keep accessibility helper behavior available even if the Bootstrap CDN is slow
 * or unavailable. This also prevents the hamburger's hidden label widening the
 * mobile header before Bootstrap finishes loading. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-y: scroll;
}

body {
  margin: 0;
  overflow-x: clip;
  overflow-y: visible;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

main {
  position: relative;
  overflow-x: clip;
  padding-bottom: 0;
  margin-bottom: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 105px;
  overflow: visible;
  background: #fff;
  border-bottom: 1px solid #f0e4f2;
  box-shadow: 0 10px 40px rgba(62, 48, 80, 0.1);
}

.nav {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
}

.brand {
  font: 700 18px/14px var(--sans);
  letter-spacing: -1px;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav nav a,
.nav nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #3e3050;
  cursor: pointer;
}

.nav-link__chevron {
  display: block;
  flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item--dropdown.is-open .nav-link__chevron,
.nav-item--dropdown:hover .nav-link__chevron {
  transform: rotate(180deg);
}

/* Luxury Services dropdown */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 200;
  width: min(400px, calc(100vw - 48px));
  /* Invisible bridge so the cursor can reach the panel without closing */
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s;
}

.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-item--dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.nav-dropdown__panel {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 108px);
  padding: 8px;
  border: 1px solid rgba(233, 213, 255, 0.9);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 22px 48px rgba(62, 48, 80, 0.12),
    0 6px 14px rgba(62, 48, 80, 0.05);
}

.nav-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown__list li::marker {
  content: "";
  display: none;
}

.nav-dropdown__link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 11px 14px !important;
  border: 0 !important;
  border-radius: 12px;
  color: #3e3050 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.nav-dropdown__link--level-0 {
  font-weight: 600 !important;
}

.nav-dropdown__link--level-1 {
  padding-left: 30px !important;
  color: #675b72 !important;
  font-size: 13px !important;
}

.nav-dropdown__item--level-1+.nav-dropdown__item--level-0 {
  margin-top: 4px;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible {
  background: rgba(168, 85, 247, 0.07);
  color: #7c3aed !important;
  outline: none;
}

.nav-dropdown__name {
  flex: 1 1 auto;
}

.nav-dropdown__arrow {
  flex: 0 0 auto;
  color: #a855f7;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown__link:hover .nav-dropdown__arrow,
.nav-dropdown__link:focus-visible .nav-dropdown__arrow {
  opacity: 1;
  transform: translateX(0);
}

.menu {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #3e3050;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 26px;
  border: 1px solid var(--purple);
  border-radius: 99px;
  background: var(--purple);
  color: #fff;
  font: 600 15px var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  background: #882fce;
}

.button--ghost {
  background: transparent;
  color: var(--purple);
}

.header-btn {
  min-width: 255px;
  text-transform: uppercase;
  text-align: center;
}

/* Reusable inner-page hero. Content is supplied by partials/hero.php. */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 993px;
  overflow: hidden;
  padding: 100px 0 100px;
  background: #fcf8ff;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(252, 248, 255, 0.94),
      rgba(252, 248, 255, 0.94)),
    radial-gradient(circle at 7% 20%,
      rgba(241, 227, 252, 0.55) 0 4%,
      transparent 18%),
    radial-gradient(circle at 93% 72%,
      rgba(241, 227, 252, 0.48) 0 4%,
      transparent 18%);
  content: "";
}

.page-hero__bottom-gradient {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 52%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 100% at 50% 112%,
      rgba(219, 186, 255, 0.5) 0%,
      rgba(239, 203, 255, 0.34) 38%,
      rgba(252, 216, 244, 0.18) 62%,
      transparent 82%),
    linear-gradient(180deg,
      transparent 0%,
      rgba(250, 224, 248, 0.12) 30%,
      rgba(240, 211, 255, 0.34) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1149px;
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0 0 10px;
  padding: 10px 33px 11px;
  border: 1px solid #e9d5ff;
  border-radius: 140px;
  background: #f5e8ff;
  color: #3e3050;
  font: 300 18px/1 var(--sans);
  letter-spacing: -0.02em;
}

.page-hero h1 {
  max-width: 1149px;
  margin: 0 auto;
  color: #3e3050;
  font: 700 70px/1.257 var(--serif);
  letter-spacing: -1.4px;
}

.page-hero h1 em {
  font-style: normal;
}

.page-hero__description {
  max-width: 1089px;
  margin: 20px auto 29px;
  color: #3e3050;
  font-size: 18px;
  line-height: 1.65;
}

.page-hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 15px;
  max-width: 1097px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.page-hero__benefits li {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 22px;
  border-radius: 20px;
  background: #fff;
  color: #3e3050;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.page-hero__benefits li>span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-right: 11px;
  place-items: center;
  border: 2px solid #b65cff;
  border-radius: 50%;
  color: #a754ef;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.page-hero__prompt {
  margin: 26px 0 24px;
  color: #3e3050;
  font-size: 18px;
  font-weight: 600;
}

.page-hero__cta {
  min-width: 321px;
  text-transform: uppercase;
}

.page-hero__watermark {
  position: absolute;
  z-index: 0;
  top: 0;
  color: rgba(230, 207, 247, 0.42);
  font: 900 162px/0.86 var(--sans);
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
}

.page-hero__watermark--left {
  left: max(16px, calc((100vw - 2560px) / 2));
  transform: rotate(180deg);
}

.page-hero__watermark--right {
  right: max(16px, calc((100vw - 2560px) / 2));
}

.services-hub {
  min-height: calc(100vh - 100px);
  padding: 110px 0;
  background: #fffafd;
}

.services-hub__eyebrow {
  margin: 0 0 16px;
  color: #a754ef;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-hub h1 {
  max-width: 800px;
  margin: 0;
  color: #3e3050;
  font: 700 clamp(44px, 5vw, 70px)/1.08 var(--serif);
  letter-spacing: -0.05em;
}

.services-hub__intro {
  max-width: 660px;
  margin: 22px 0 48px;
  color: #5e536d;
  font-size: 18px;
}

.services-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-hub__card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid #eadff0;
  border-radius: 14px;
  background: #fff;
}

.services-hub__card h2 {
  margin: 0;
  color: #3e3050;
  font: 600 29px/1.1 var(--serif);
  letter-spacing: -0.035em;
}

.services-hub__card p {
  margin: 14px 0 24px;
  color: #655b70;
}

.services-hub__card a,
.services-hub__coming {
  color: #a754ef;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.services-hub__coming {
  color: #9b92a4;
}

.marketing-problem {
  position: relative;
  overflow: hidden;
  padding: 64px 0 96px;
  background: #fff;
}

.marketing-problem__intro {
  max-width: none;
  margin-bottom: 48px;
}

.section-pill {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 10px 33px;
  border: 1px solid #e9d5ff;
  border-radius: 99px;
  background: #f5e8ff;
  color: #3e3050;
  font: 300 18px/1 var(--sans);
  font-style: normal;
}

.marketing-problem h2 {
  max-width: 730px;
  margin: 0 0 25px;
  color: #3e3050;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}

.start-early h2 {
  margin: 0 0 16px;
  color: #3e3050;
  font: 700 clamp(42px, 4vw, 60px)/1.12 var(--serif);
  letter-spacing: -0.05em;
}

.marketing-problem__heading h2 {
  margin-bottom: 0;
}

.marketing-problem__description {
  max-width: 710px;
  margin: 0;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.marketing-problem__grid {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.marketing-problem__card {
  min-height: 0;
  height: 100%;
  min-height: 250px;
  padding: 28px 32px;
  border: 2px solid transparent;
  border-radius: 24px;
  background: #fff;
}

.marketing-problem__card small {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #e55f9e;
  font: 700 17px/1 var(--serif);
}

.marketing-problem__card small::after {
  height: 2px;
  flex: 1;
  background: currentColor;
  opacity: 0.1;
  content: "";
}

.marketing-problem__card>span {
  display: block;
  height: 1px;
  margin: 0 0 42px;
}

.marketing-problem__card h3 {
  margin: 0 0 7px;
  color: #3e3050;
  font: 600 27px/1.18 var(--sans);
  letter-spacing: -0.045em;
}

.marketing-problem__card p {
  margin: 0;
  color: #4e435b;
  font-size: 16px;
  line-height: 1.45;
}

.marketing-problem__card--1 {
  border-color: #f8d5e8;
  background: #fce8f4;
}

.marketing-problem__card--2 {
  border-color: #c9eaff;
  background: #e1f3ff;
}

.marketing-problem__card--2 small {
  color: #188fd4;
}

.marketing-problem__card--3 {
  border-color: #c8f3d7;
  background: #dffbe7;
}

.marketing-problem__card--3 small {
  color: #21975c;
}

.marketing-problem__card--4 {
  border-color: #f8dfbd;
  background: #fff8eb;
}

.marketing-problem__card--4 small {
  color: #ec762c;
}

.marketing-problem__card--5 {
  border-color: #f5e98e;
  background: #fffbd0;
}

.marketing-problem__card--5 small {
  color: #c79700;
}

.marketing-problem__card--statement {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 32px;
  border: 0;
  background: #3e3050;
  color: #fff;
  font: 400 20px/1.35 var(--sans);
  letter-spacing: -0.035em;
}

.marketing-problem__quote {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 16px;
}

.marketing-problem__card--statement p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.start-early {
  padding: 100px 0;
  background: #fff;
}

.start-early--with-bg {
  background: url("../img/startearly.png") center/cover no-repeat;
}

.start-early__grid {
  --bs-gutter-x: 5.9rem;
  --bs-gutter-y: 3rem;
}

.start-early__art {
  position: relative;
  height: 512px;
  transform: translateX(-48px);
}

.start-early__art img {
  position: absolute;
  top: 9px;
  left: 42.5px;
  width: 501px;
  height: 498px;
  border-radius: 20px;
  object-fit: cover;
  transform: rotate(-2deg);
  box-shadow: none;
}

.start-early__art span,
.start-early__art strong {
  position: absolute;
  z-index: 1;
  border-radius: 20px;
  color: #3e3050;
  box-shadow: 0 9px 18px rgba(62, 48, 80, 0.14);
}

.start-early__art span {
  top: 9px;
  left: 42.5px;
  padding: 11px 33px 10px;
  border: 1px solid #fef08a;
  background: #fef9c3;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.36px;
  transform: translate(-16%, -16%) rotate(-4.17deg);
}

.start-early__art strong {
  right: -50px;
  bottom: -8px;
  box-sizing: border-box;
  width: 270px;
  height: 87px;
  padding: 11px 0 0 48px;
  background: #fff;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.44px;
  transform: translate(16%, 16%) rotate(-4.17deg);
  transform-origin: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.start-early__art strong small {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.36px;
}

.start-early__copy .section-pill {
  margin-bottom: 20px;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.36px;
}

.start-early__copy h2.start-early__title {
  color: #3e3050;
  font-family: "Playfair Display";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  /* 113.333% */
  letter-spacing: -1.2px;
}

.start-early__copy h2 {
  max-width: 690px;
  margin-bottom: 17px;
  color: #3e3050;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}

.start-early__copy>p {
  max-width: 690px;
  margin: 0 0 16px;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.start-early__copy b {
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
}

.start-early__copy ul {
  max-width: 700px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.start-early__copy li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.36px;
}

.start-early__check {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
}

.start-early__copy li strong {
  font-weight: 600;
}

.start-early__closing {
  font-weight: 400;
}

/* Book Marketing Services: scoped shared-services variant. */
.service-page--book-marketing .services {
  padding: 100px 0;
  background: #fff;
}

.service-page--book-marketing .services__head {
  margin-bottom: 40px;
}

.service-page--book-marketing .services__intro {
  grid-template-columns: minmax(0, 735px) minmax(0, 594px);
  gap: 33px;
  align-items: end;
}

.service-page--book-marketing .services__title {
  order: 1;
  max-width: 735px;
}

.service-page--book-marketing .services__lede {
  order: 2;
  max-width: 594px;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.service-page--book-marketing .services__title>.eyebrow {
  min-height: 48px;
  margin-bottom: 10px;
  /* padding: 10px 33px 11px; */
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.36px;
}

.service-page--book-marketing .services__title>.eyebrow::after {
  display: none;
}

.service-page--book-marketing .services__heading {
  max-width: 735px;
  color: #3e3050;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}

.service-page--book-marketing .services .service-grid.row {
  gap: 20px;
}

/* .service-page--book-marketing .services .service-card {
  min-height: 382px;
  padding: 30px;
  border: 1px solid transparent;
  border-radius: 20px;
}

.service-page--book-marketing .services .service-card--1 {
  background: #ede9fe !important;
  border-color: #ddd6fe;
}

.service-page--book-marketing .services .service-card--2 {
  background: #fce7f3 !important;
  border-color: #fbcfe8;
}

.service-page--book-marketing .services .service-card--3 {
  background: #e0f2fe !important;
  border-color: #bae6fd;
}

.service-page--book-marketing .services .service-card--4 {
  background: #dcfce7 !important;
  border-color: #bbf7d0;
}

.service-page--book-marketing .services .service-card--5 {
  background: #fff7ed !important;
  border-color: #fed7aa;
}

.service-page--book-marketing .services .service-card--7 {
  background: #fce9ed !important;
  border-color: #f6cbd4;
} */

/* .service-page--book-marketing .services .service-card>i {
  width: 66px;
  height: 67px;
  margin-bottom: 30px;
  border: 1px solid currentColor;
  border-radius: 15px;
  color: #ddd6fe;
} */

/* .service-page--book-marketing .services .service-card--2>i {
  color: #fbcfe8;
}

.service-page--book-marketing .services .service-card--3>i {
  color: #bae6fd;
}

.service-page--book-marketing .services .service-card--4>i {
  color: #bbf7d0;
}

.service-page--book-marketing .services .service-card--5>i {
  color: #fed7aa;
} */

/* Service icons are rendered directly from the SVG files passed by services.php. */
/* Audiobook: show real SVG icons from markup; 6th card yellow */
.service-page--audiobook.service-page--book-marketing .services .service-card>i {
  background: #fff;
}

.service-page--audiobook.service-page--book-marketing .services .service-card>i img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-page--audiobook.service-page--book-marketing .services .service-card--6 {
  background: #fef08a;
  border-color: #fde047;
}

.service-page--audiobook.service-page--book-marketing .services .service-card--6>i {
  color: #fde047;
}

.service-page--book-marketing .services .service-card h3 {
  margin-bottom: 10px;
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.44px;
}

.service-page--book-marketing .services .service-card p {
  color: #3e3050;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
}

/* Book Marketing: keep illustrated bg; layout matches shared process. */
.service-page--book-marketing .book-marketing-process {
  padding: 100px 0;
}

/* Book PR & Media Outreach: Figma pastel background on the shared Services partial. */
.service-page--book-pr-media-outreach .services {
  background:
    linear-gradient(180deg, rgba(255, 234, 250, 0.5) 0%, rgba(224, 242, 254, 0.5) 100%),
    url("../img/startearly.png") center / cover no-repeat;
}

@media (max-width: 991.98px) {
  .service-page--book-marketing .services__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-page--book-marketing .services__title,
  .service-page--book-marketing .services__lede {
    max-width: 735px;
  }
}

@media (max-width: 991.98px) {
  .start-early__grid {
    --bs-gutter-x: 3rem;
  }

  .start-early__art {
    width: min(100%, 576px);
    height: 420px;
    margin: 0 auto;
    transform: none;
  }

  .start-early__art img {
    width: calc(100% - 32px);
    height: 405px;
    left: 24px;
  }

  .start-early__copy h2 {
    font-size: clamp(40px, 5vw, 54px);
  }
}

@media (max-width: 767.98px) {

  .marketing-problem,
  .start-early {
    padding: 64px 0;
  }

  .marketing-problem__grid,
  .start-early__grid {
    grid-template-columns: 1fr;
  }

  .start-early__grid {
    gap: 42px;
  }

  .start-early__art {
    width: min(100%, 500px);
    height: 390px;
    margin: auto;
    transform: none;
  }

  .start-early__art img {
    height: 370px;
  }

  .marketing-problem__card {
    min-height: 0;
  }

  .marketing-problem__card>span {
    margin-bottom: 35px;
  }

  .section-pill {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  min-height: 1124px;
  padding: 72px 0 0;
  text-align: center;
  background:
    radial-gradient(ellipse 30% 48% at 4% 26%,
      rgba(221, 190, 255, 0.48) 0%,
      rgba(239, 220, 255, 0.28) 46%,
      transparent 78%),
    radial-gradient(ellipse 32% 50% at 96% 70%,
      rgba(229, 198, 255, 0.46) 0%,
      rgba(247, 218, 244, 0.28) 48%,
      transparent 80%),
    radial-gradient(ellipse 58% 42% at 50% 4%,
      rgba(246, 237, 255, 0.92) 0%,
      rgba(252, 242, 255, 0.5) 52%,
      transparent 82%),
    linear-gradient(180deg, #f8f1ff 0%, #fff1f8 56%, #f5ecff 100%);
}

.hero:before {
  display: none;
}

.eyebrow-parent {
  display: inline-flex;
  padding: 0 33px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 140px;
  border: 1px solid #e9d5ff;
  background: #f5e8ff;
}

.eyebrow {
  color: #3e3050;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.36px;
}

.hero h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  color: #3e3050;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 88px;
  /* 110% */
  letter-spacing: -1.6px;
}

.hero span {
  color: #a855f7;
}

.lede {
  max-width: 1089px;
  margin: 0 auto;
  font-size: 20px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.hero-books {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 14px;
  margin: 70px auto 0;
  height: 310px;
  transform: perspective(1000px) rotateX(3deg);
}

.book {
  display: grid;
  place-items: center;
  width: 185px;
  height: 265px;
  padding: 24px;
  color: #fff;
  text-align: left;
  font: bold 24px/1 var(--serif);
  box-shadow: 16px 17px 18px #80658055;
  transform: rotate(-8deg);
}

.b1 {
  background: linear-gradient(135deg, #141227, #342a45);
}

.b2 {
  height: 300px;
  background: linear-gradient(135deg, #cad1c0, #272f31);
  transform: translateY(5px);
}

.b3 {
  background: linear-gradient(135deg, #bd9a78, #4c3327);
  transform: rotate(8deg);
}

section {
  padding: 94px 0;
}

.trust {
  text-align: center;
  padding: 70px 0 0;
  background: #ffffff;
}

.trust h2 {
  margin: 0;
  font-size: 55px;
}

.trust p {
  margin: 7px auto 25px;
}

.trust .last-para {
  margin: 7px auto 25px;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  height: 115px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: #c7682f;
}

.logos b {
  font-size: 20px;
  line-height: 1.1;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem {
  padding: 94px 0;
}

.problem h2 {
  font-size: 49px;
  margin: 14px 0;
}

.problem p:not(.eyebrow) {
  max-width: 710px;
}

.open-book {
  height: 463px;
  background: linear-gradient(135deg, #f7f3e8, #fff);
  box-shadow: 0 19px 34px #7e6e6a2b;
  transform: rotate(-3deg);
  display: grid;
  place-items: center;
}

.open-book:before {
  content: "";
  width: 50%;
  height: 95%;
  border-right: 1px solid #d8d1c9;
  background: linear-gradient(130deg, transparent, #eee8da);
}

.open-book span {
  position: absolute;
  text-align: center;
  color: #565159;
  font: 30px/1 var(--serif);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 50px;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  min-height: 354px;
  padding: 39px;
  background: #EDE9FE;
  border: 1px solid #ecc8e7;
  border-radius: 8px;
}

.service-card:nth-child(2) {
  background: #FCE7F3;
}

.service-card:nth-child(3) {
  background: #E0F2FE;
}

.service-card:nth-child(4) {
  background: #DCFCE7;
}

.service-card:nth-child(5) {
  background: #FFF7ED;
}

.service-card:nth-child(6) {
  background: #FEF9C3;
}

.service-card:nth-child(7) {
  background: #FFF0F1;
}

.service-card i {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 8px;
  background: #e7c4ff;
  color: #7c2dc4;
  font-size: 29px;
  font-style: normal;
}

.service-card h3 {
  font: 600 22px var(--serif);
  margin: 29px 0 6px;
}

.service-card p {
  font-size: 14px;
  margin: 0 0 20px;
}

.service-card a {
  color: #8732ca;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.projects {
  overflow: hidden;
  text-align: center;
  padding: 96px 0 100px;
  background: #fff;
}

.projects__intro {
  margin-bottom: 48px;
}

.projects__intro>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 0 auto 18px;
  padding: 0 22px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f4e8ff;
  color: transparent;
  font-size: 0;
}

.projects__intro>.eyebrow::after {
  color: #6b3fa0;
  content: "Featuring all projects";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.projects__intro h2 {
  margin: 0 0 14px;
  color: #3e3050;
  font: 600 clamp(36px, 4.2vw, 56px) / 1.05 var(--serif);
  letter-spacing: -0.04em;
}

.projects__lede {
  max-width: 640px;
  margin: 0 auto;
  color: #3e3050;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.projects-slider {
  position: relative;
  width: 100%;
  margin: 12px 0 44px;
  padding: 8px 0;
  cursor: grab;
  user-select: none;
  touch-action: manipulation;
  background: transparent;
}

.projects-slider.is-dragging {
  cursor: grabbing;
}

.projects-slider__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0;
  background: transparent;
}

.projects-slider__track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: projects-marquee 60s linear infinite;
  background: transparent;
}

.projects-slider__set {
  display: flex;
  flex: 0 0 auto;
  gap: 36px;
  align-items: center;
  padding-right: 36px;
  background: transparent;
}

.projects-slider.is-paused .projects-slider__track,
.projects-slider:hover .projects-slider__track {
  animation-play-state: paused;
}

.projects-slider.is-dragging .projects-slider__track {
  animation: none;
}

@keyframes projects-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-slider__track {
    animation: none;
  }
}

.project-book {
  flex: 0 0 auto;
  width: clamp(210px, 20.5vw, 280px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.project-book img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  pointer-events: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.projects__action {
  display: flex;
  justify-content: center;
}

.projects__cta {
  min-height: 52px;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .project-book {
    width: clamp(190px, 22vw, 250px);
  }

  .projects-slider__set {
    gap: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 991.98px) {
  .projects {
    padding: 72px 0 80px;
  }

  .projects__intro {
    margin-bottom: 36px;
  }

  .projects-slider {
    margin-bottom: 36px;
  }

  .projects-slider__track {
    animation-duration: 48s;
  }

  .projects-slider__set {
    gap: 22px;
    padding-right: 22px;
  }

  .project-book {
    width: clamp(170px, 28vw, 210px);
  }
}

@media (max-width: 575.98px) {
  .projects {
    padding: 56px 0 64px;
  }

  .projects__lede {
    font-size: 14px;
  }

  .projects-slider {
    margin-bottom: 28px;
  }

  .projects-slider__track {
    animation-duration: 40s;
  }

  .projects-slider__set {
    gap: 16px;
    padding-right: 16px;
  }

  .project-book {
    width: clamp(150px, 48vw, 180px);
  }

  .projects__cta {
    width: 100%;
    max-width: 320px;
  }
}

.small {
  min-height: 48px;
  font-size: 13px;
}

.center {
  text-align: center;
}

/* Why authors choose us */
.different {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  background: linear-gradient(180deg, #fffde8 0%, #fafbea 48%, #eefbf2 100%);
}

.different::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/results-bg.svg") center / cover no-repeat;
}

.different>.shell {
  position: relative;
  z-index: 1;
}

.different__head {
  margin-bottom: 48px;
}

.different__head>.col-lg-6>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 22px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f4e8ff;
  color: transparent;
  font-size: 0;
}

.different__head>.col-lg-6>.eyebrow::after {
  color: #4a3a60;
  content: "Why authors choose us";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.different__head h2 {
  margin: 0;
  max-width: 560px;
  color: #3e3050;
  font: 600 clamp(34px, 3.8vw, 52px) / 1.08 var(--serif);
  letter-spacing: -0.04em;
}

.different__lede-wrap {
  padding-top: 56px;
}

.different__lede {
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  color: #5a5068;
  font: 400 15px/1.6 var(--sans);
}

.different__grid {
  --bs-gutter-y: 1.25rem;
}

.different-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 340px;
  padding: 36px 26px 32px;
  border: 0;
  border-radius: 18px;
  text-align: center;
  background: #e8f8ee;
}

.different-card--mint {
  background: #e7f7ec;
}

.different-card--pink {
  background: #fce8f3;
}

.different-card--peach {
  background: #fff0e4;
}

.different-card--lilac {
  background: #ebe8ff;
}

.different-card i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 0 22px;
  background: transparent;
  border-radius: 0;
  font-style: normal;
}

.different-card i img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.different-card h3 {
  margin: 0 0 12px;
  color: #3e3050;
  font: 600 18px/1.25 var(--sans);
  letter-spacing: -0.02em;
}

.different-card p {
  margin: 0;
  color: #5a5068;
  font: 400 14px/1.55 var(--sans);
}

@media (max-width: 991.98px) {
  .different {
    padding: 72px 0 84px;
  }

  .different::before {
    background-position: center center;
    background-size: cover;
  }

  .different__head {
    margin-bottom: 36px;
  }

  .different__lede {
    margin-left: 0;
    max-width: none;
  }

  .different__lede-wrap {
    padding-top: 0;
  }

  .different-card {
    min-height: 300px;
    padding: 30px 22px 28px;
  }
}

@media (max-width: 575.98px) {
  .different {
    padding: 56px 0 68px;
    background: linear-gradient(180deg, #fffde8 0%, #fafbea 48%, #eefbf2 100%);
  }

  .different::before {
    background-position: top center;
    background-size: 180% auto;
  }

  .different__head h2 {
    font-size: 32px;
  }

  .different-card {
    min-height: 0;
  }
}

/* Process: illustration-style right timeline + sticky visual */
.process {
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.process.process--with-bg {
  background: #fff url("../img/startearly.png") center/cover no-repeat;
}

.process.process--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(254, 249, 195, 0.55) 0%,
      rgba(255, 255, 255, 0.22) 48%,
      rgba(220, 252, 231, 0.58) 100%),
    #fff;
}

.process.process--with-bg.process--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(254, 249, 195, 0.55) 0%,
      rgba(255, 255, 255, 0.22) 48%,
      rgba(220, 252, 231, 0.58) 100%),
    url("../img/startearly.png") center/cover no-repeat;
}

.process__steps {
  position: relative;
  z-index: 1;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.process__steps::before {
  position: absolute;
  z-index: 0;
  top: 25px;
  right: 0;
  bottom: 135px;
  width: 2px;
  background: linear-gradient(180deg,
      #f5c2d8,
      #f5c49a 28%,
      #cbb0f2 55%,
      #9ddcf8 78%,
      #f5e879);
  content: "";
}

.process__step {
  position: relative;
  z-index: 1;
  min-height: 248px;
  padding: 0 62px 66px 0;
  text-align: right;
}

.process__step:last-child {
  min-height: 160px;
  padding-bottom: 0;
}

.process__number {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -25px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #fbcfe8;
  border-radius: 50%;
  color: #3e3050;
  background: #fce7f3;
  font: 500 24px/1 var(--serif);
}

.process__step--orange .process__number,
.process__step:nth-child(2) .process__number {
  border-color: #fed7aa;
  background: #fff7ed;
}

.process__step--purple .process__number,
.process__step:nth-child(3) .process__number {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.process__step--blue .process__number,
.process__step:nth-child(4) .process__number {
  border-color: #bae6fd;
  background: #e0f2fe;
}

.process__step--yellow .process__number,
.process__step:nth-child(5) .process__number {
  border-color: #fef08a;
  background: #fef9c3;
}

.process-step--yellow .process-step__num {
  background: #FEF08A;
}

.process__step--pink .process__number,
.process__step--red .process__number {
  border-color: #fbcfe8;
  background: #fce7f3;
}

.process__step small {
  display: block;
  margin-bottom: 8px;
  color: #5f556a;
  font-size: 15px;
}

.process__step h3 {
  margin: 0 0 8px;
  color: #3e3050;
  font: 600 21px/1.3 var(--sans);
  letter-spacing: -0.025em;
}

.process__step p {
  margin: 0 0 0 auto;
  max-width: 513px;
  color: #5f556a;
  font-size: 14px;
  line-height: 1.6;
}

.process__visual {
  position: sticky;
  top: 132px;
}

.process__visual .section-pill {
  margin-bottom: 16px;
}

.process__visual h2 {
  max-width: 650px;
  margin: 0 0 16px;
  color: #3e3050;
  font: 700 clamp(42px, 3.5vw, 60px) / 1.13 var(--serif);
  letter-spacing: -0.035em;
}

.process__lede {
  margin: 0;
  color: #5f556a;
  font-size: 16px;
  line-height: 1.65;
}

.process__visual>img {
  display: block;
  width: 100%;
  max-height: 848px;
  margin-top: 32px;
  border-radius: 15px;
}

@media (max-width: 1199.98px) {
  .process__step {
    min-height: 275px;
  }
}

@media (max-width: 991.98px) {
  .process {
    padding: 76px 0;
  }

  .process__steps {
    margin-top: 0;
  }

  .process__visual {
    position: static;
    margin-bottom: 34px;
  }

  .process__visual h2 {
    font-size: clamp(38px, 6vw, 50px);
  }

  .process__visual>img {
    max-height: 620px;
    object-position: center 25%;
  }

  .process__step {
    min-height: 0;
    padding-bottom: 64px;
  }
}

@media (max-width: 767.98px) {
  .process {
    padding: 64px 0;
  }

  .process__visual h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .process__step {
    padding-right: 46px;
  }
}

@media (max-width: 575.98px) {
  .process {
    padding: 56px 0;
  }

  .process__step {
    padding-right: 0;
    padding-left: 36px;
    text-align: left;
  }

  .process__step p {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .process__steps {
    margin-left: 14px;
  }

  .process__number {
    right: auto;
    left: -21px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .process__steps::before {
    top: 21px;
    right: auto;
    bottom: 139px;
    left: 0;
  }

  .process__step h3 {
    font-size: 18px;
  }

  .process__step p {
    font-size: 13.5px;
  }
}

/* Proven Results ? mint green ? pale yellow + results-bg.svg */
.results {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  background: linear-gradient(115deg,
      #d4f0e4 0%,
      #e6f6e8 24%,
      #f3f7de 52%,
      #fff8d6 78%,
      #fff3c2 100%);
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/results-bg.svg") center / cover no-repeat;
}

.results>.shell {
  position: relative;
  z-index: 1;
}

.results__intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.results__intro>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 0 auto 18px;
  padding: 0 22px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f8e8ff;
  color: transparent;
  font-size: 0;
}

.results__intro>.eyebrow::after {
  color: #5b3a7a;
  content: "Proven Results";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.results__intro h2 {
  margin: 0 0 14px;
  color: #3e3050;
  font: 600 clamp(36px, 4.2vw, 56px) / 1.05 var(--serif);
  letter-spacing: -0.04em;
}

.results__lede {
  margin: 0 auto;
  max-width: 640px;
  color: #6b6478;
  font: 400 15px/1.65 var(--sans);
}

.results__grid {
  margin-bottom: 40px;
}

.result-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  padding: 28px 28px 26px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #eef7ff;
  box-shadow: none;
}

.result-card--blue {
  background: #eef7ff;
  border-color: #d5e8f6;
}

.result-card--purple {
  background: #f8f3ff;
  border-color: #e5dcf6;
}

.result-card--yellow {
  background: #fffce8;
  border-color: #efe4b4;
}

.result-card__vol {
  align-self: flex-end;
  color: #8b8499;
  font: 400 13px/1 var(--sans);
}

.result-card__stat {
  display: block;
  margin: 40px 0 10px;
  color: #3e3050;
  font: 600 clamp(52px, 5vw, 70px) / 0.92 var(--serif);
  letter-spacing: -0.04em;
}

.result-card__metric {
  margin: 0;
  color: #3e3050;
  font: 600 16px/1.35 var(--sans);
  letter-spacing: -0.02em;
}

.result-card__copy {
  margin: 18px 0 0;
  color: #6b6478;
  font: 400 14px/1.55 var(--sans);
}

.result-card__author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(62, 48, 80, 0.12);
}

.result-card__author b {
  color: #3e3050;
  font: 600 18px/1.2 var(--sans);
}

.result-card__author span {
  color: #8b8499;
  font: 500 11px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results__action {
  display: flex;
  justify-content: center;
}

.results__cta {
  min-height: 52px;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  font-weight: 600;
}

.results__cta b {
  margin-left: 4px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .results {
    padding: 72px 0 84px;
  }

  .results__intro {
    margin-bottom: 36px;
  }

  .result-card {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .results {
    padding: 56px 0 68px;
    background: linear-gradient(165deg, #d4f0e4 0%, #eaf6e4 40%, #fff8d6 100%);
  }

  .results::before {
    background-position: center top;
    background-size: 180% auto;
  }

  .result-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .result-card__stat {
    margin-top: 28px;
    font-size: 52px;
  }

  .results__cta {
    width: 100%;
    max-width: 360px;
  }
}

/* Testimonials + Bootstrap carousel ? chit stuck to magazine */
.testimonial {
  overflow: hidden;
  padding: 96px 0 108px;
  background: #fffdf9;
}

.testimonial__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 0;
  column-gap: 0;
}

.testimonial__cover {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
}

.testimonial__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(62, 48, 80, 0.1),
    0 4px 14px rgba(62, 48, 80, 0.05);
}

.testimonial__content {
  --testimonial-indent: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.testimonial__intro {
  padding-left: var(--testimonial-indent);
}

.testimonial__intro>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 20px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f3e8ff;
  color: transparent;
  font-size: 0;
}

.testimonial__intro>.eyebrow::after {
  color: #5b3a7a;
  content: "Testimonials";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.testimonial__intro h2 {
  margin: 0 0 24px;
  color: #3e3050;
  font: 600 clamp(34px, 3.8vw, 50px) / 1.08 var(--serif);
  letter-spacing: -0.035em;
}

.testimonial-carousel {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
}

.testimonial-carousel .carousel-inner {
  overflow: hidden;
  border-radius: 22px;
}

.testimonial-carousel .carousel-item {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 36px 40px 32px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff8f1;
  box-shadow: 0 10px 36px rgba(62, 48, 80, 0.06);
}

.testimonial-card__mark {
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 0;
  width: clamp(110px, 28%, 150px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.testimonial-card__stars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-card__stars img {
  display: block;
  width: 17px;
  height: 17px;
}

.testimonial-card h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 4px;
  color: #3e3050;
  font: 600 24px / 1.2 var(--serif);
}

.testimonial-card__role {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #8b8499;
  font: 400 15px / 1.35 var(--sans);
}

.testimonial-card__quote {
  position: relative;
  z-index: 1;
  margin: 36px 0 0;
  max-width: 30ch;
  color: #3e3050;
  font: 400 17px / 1.55 var(--sans);
}

.testimonial-card__rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  margin-top: auto;
  padding-top: 34px;
  border: 0;
  border-top: 1px solid rgba(62, 48, 80, 0.12);
  background: none;
}

.testimonial-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: calc(100% - var(--testimonial-indent));
  margin-top: 28px;
  margin-left: var(--testimonial-indent);
  padding: 10px 0;
  box-sizing: border-box;
}

.testimonial-nav::before {
  content: "";
  display: block;
  width: clamp(48px, 6vw, 80px);
  height: 1px;
  flex: 0 0 clamp(48px, 6vw, 80px);
  background: rgba(62, 48, 80, 0.14);
  pointer-events: none;
}

.testimonial-nav__line {
  display: block;
  height: 1px;
  min-width: 24px;
  flex: 1 1 auto;
  background: rgba(62, 48, 80, 0.14);
  pointer-events: none;
}

.testimonial-nav__btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.testimonial-nav__btn svg {
  display: block;
}

.testimonial-nav__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(62, 48, 80, 0.1);
}

.testimonial-nav__btn:active {
  transform: translateY(0);
}

.testimonial-nav__btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.testimonial-nav__btn--prev {
  background: #dff7ed;
}

.testimonial-nav__btn--next {
  background: #fff6cf;
}

@media (max-width: 1199.98px) {
  .testimonial__layout {
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  }
}

@media (max-width: 991.98px) {
  .testimonial {
    padding: 72px 0 84px;
  }

  .testimonial__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonial__cover {
    max-width: 360px;
    margin: 0 auto;
  }

  .testimonial__content {
    --testimonial-indent: 0px;
  }

  .testimonial__intro {
    text-align: center;
    padding-left: 0;
  }

  .testimonial__intro>.eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial__intro h2 {
    margin-bottom: 22px;
  }

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

  .testimonial-card__mark {
    top: 16px;
    right: 18px;
    width: 100px;
  }

  .testimonial-card__quote {
    max-width: none;
    font-size: 16px;
  }

  .testimonial-nav {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .testimonial {
    padding: 56px 0 68px;
  }

  .testimonial__cover {
    max-width: 280px;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card__mark {
    top: 12px;
    right: 12px;
    width: 84px;
  }

  .testimonial-card__quote {
    margin-top: 22px;
  }

  .testimonial-nav__btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
}

/* FAQ ? questions accordion + faq-bg.svg */
.faq {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  background: #fff;
}

.faq.faq--with-bg {
  background: #fff url("../img/faq-bg.svg") center/cover no-repeat;
}

.faq.faq--with-gradient {
  background: linear-gradient(180deg, #faf8fc 0%, #ffffff 48%, #faf8fc 100%);
}

.faq.faq--with-bg.faq--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(250, 248, 252, 0.78) 0%,
      rgba(255, 255, 255, 0.7) 48%,
      rgba(250, 248, 252, 0.78) 100%),
    url("../img/faq-bg.svg") center/cover no-repeat;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq>.shell {
  position: relative;
  z-index: 1;
}

.faq__intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.faq__intro>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 0 auto 18px;
  padding: 0 22px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f3e8ff;
  color: transparent;
  font-size: 0;
}

.faq__intro>.eyebrow::after {
  color: #5b3a7a;
  content: "QUESTIONS";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}

.faq__intro h2 {
  margin: 0 0 14px;
  color: #3e3050;
  font: 600 clamp(34px, 4vw, 52px) / 1.08 var(--serif);
  letter-spacing: -0.03em;
}

.faq__lede {
  margin: 0 auto;
  /* max-width: 560px; */
  color: #6b6478;
  font: 400 15px / 1.6 var(--sans);
}

.faq__list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(62, 48, 80, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(62, 48, 80, 0.14);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  color: #3e3050;
}

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

.faq-item__q {
  flex: 1 1 auto;
  color: #3E3050;
font-family: Poppins;
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.44px;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #3e3050;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__body {
  padding: 0 40px 26px 4px;
  transform-origin: top;
}

.faq-item__body p {
  margin: 0;
  max-width: 820px;
  color: #3E3050;
font-family: Poppins;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.36px;
}

.faq__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.faq__cta {
  min-height: 52px;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  font-weight: 600;
}

.faq__cta b {
  margin-left: 4px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .faq {
    padding: 72px 0 84px;
  }

  .faq__intro {
    margin-bottom: 36px;
  }

  .faq-item__q {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .faq {
    padding: 56px 0 68px;
    background: linear-gradient(180deg, #faf8fc 0%, #ffffff 100%);
  }

  .faq::before {
    background-position: center top;
    background-size: 180% auto;
  }

  .faq-item summary {
    padding: 22px 0;
    gap: 16px;
  }

  .faq-item__body {
    padding: 0 8px 22px 0;
  }

  .faq__cta {
    width: 100%;
    max-width: 360px;
  }
}

/* =========================================================
   Contact / Strategy Call CTA
========================================================= */

.contact {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  color: #ffffff;
  background: linear-gradient(109deg, #e9a5fc 0%, #898bf8 100%);
}

.contact__grid {
  --bs-gutter-x: 3.5rem;
}


/* =========================================================
   Contact Copy
========================================================= */

.contact__copy>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: transparent;
  font-size: 0;
}

.contact__copy>.eyebrow::after {
  color: #3e3050;
  content: "Begin Your Journey";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.contact__copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font: 600 clamp(34px, 4vw, 52px) / 1.1 var(--serif);
  letter-spacing: -0.03em;
}

.contact__lede {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font: 400 16px / 1.6 var(--sans);
}


/* =========================================================
   Contact Form Container
========================================================= */

.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  background: #d8cfff;
  box-shadow: 0 18px 48px rgba(62, 48, 80, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   Form Labels
========================================================= */

.contact-form__field {
  display: block;
  margin: 0;
  color: #3e3050;
  font: 600 14px / 1.3 var(--sans);
}

.contact-form__field>span {
  display: block;
  margin-bottom: 8px;
  color: #3e3050;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}


/* =========================================================
   Standard Inputs and Textarea
========================================================= */

.contact-form__field input:not([type="hidden"]),
.contact-form__field textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(203, 192, 249, 0.72);
  color: #3e3050;
  font: 400 15px / 1.4 var(--sans);
  outline: none;
  box-shadow: none;

  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-form__field input:not([type="hidden"]):hover,
.contact-form__field textarea:hover {
  border-color: rgba(103, 74, 171, 0.26);
  background: rgba(215, 207, 252, 0.92);
}

.contact-form__field input:not([type="hidden"]):focus,
.contact-form__field textarea:focus {
  border-color: #9567e9;
  background: rgba(255, 255, 255, 0.82);

  box-shadow:
    0 0 0 3px rgba(149, 103, 233, 0.16),
    0 8px 22px rgba(62, 48, 80, 0.1);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(62, 48, 80, 0.45);
}

.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}


/* =========================================================
   Custom Service Dropdown
========================================================= */

.contact-select {
  position: relative;
  z-index: 50;
  width: 100%;
}


/* Dropdown Trigger */

.contact-select__trigger {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin: 0;
  padding: 14px 17px;

  border: 1px solid rgba(103, 74, 171, 0.18);
  border-radius: 10px;

  background: rgba(203, 192, 249, 0.72);
  color: rgba(62, 48, 80, 0.52);

  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;

  outline: none;
  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 4px 12px rgba(62, 48, 80, 0.04);

  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-select__trigger:hover {
  border-color: rgba(126, 88, 211, 0.42);
  background: rgba(215, 207, 252, 0.96);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 20px rgba(62, 48, 80, 0.08);
}

.contact-select__trigger:focus-visible,
.contact-select.is-open .contact-select__trigger {
  border-color: #9567e9;
  background: rgba(255, 255, 255, 0.86);

  box-shadow:
    0 0 0 3px rgba(149, 103, 233, 0.17),
    0 8px 22px rgba(62, 48, 80, 0.1);
}

.contact-select.has-value .contact-select__trigger {
  color: #3e3050;
  font-weight: 500;
}

.contact-select__value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* Dropdown Arrow */

.contact-select__arrow {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;

  margin-top: -5px;
  margin-right: 3px;

  border-right: 2px solid #654a85;
  border-bottom: 2px solid #654a85;

  transform: rotate(45deg);

  transition:
    transform 0.22s ease,
    margin-top 0.22s ease;
}

.contact-select.is-open .contact-select__arrow {
  margin-top: 5px;
  transform: rotate(225deg);
}


/* Dropdown Menu */

.contact-select__menu {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 8px);
  right: 0;
  left: 0;

  max-height: 260px;
  overflow-x: hidden;
  overflow-y: auto;

  padding: 7px;

  border: 1px solid rgba(115, 82, 185, 0.2);
  border-radius: 13px;

  background: rgba(249, 247, 255, 0.99);

  box-shadow:
    0 18px 45px rgba(62, 48, 80, 0.2),
    0 4px 14px rgba(62, 48, 80, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.contact-select.is-open .contact-select__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}


/* Dropdown Options */

.contact-select__option {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;

  margin: 0;
  padding: 11px 13px;

  border: 0;
  border-radius: 8px;

  background: transparent;
  color: #3e3050;

  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;

  outline: none;
  cursor: pointer;

  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    padding-left 0.16s ease;
}

.contact-select__option+.contact-select__option {
  margin-top: 2px;
}

.contact-select__option:hover,
.contact-select__option:focus-visible {
  padding-left: 17px;
  background: #e9e1ff;
  color: #663ea6;
}

.contact-select__option[aria-selected="true"] {
  background: linear-gradient(135deg,
      rgba(186, 140, 246, 0.25),
      rgba(137, 139, 248, 0.22));

  color: #633a9e;
  font-weight: 600;
}


/* Dropdown Scrollbar */

.contact-select__menu {
  scrollbar-width: thin;
  scrollbar-color: rgba(112, 76, 173, 0.3) transparent;
}

.contact-select__menu::-webkit-scrollbar {
  width: 7px;
}

.contact-select__menu::-webkit-scrollbar-track {
  background: transparent;
}

.contact-select__menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(112, 76, 173, 0.3);
}

.contact-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(112, 76, 173, 0.45);
}


/* Dropdown Validation */

.contact-select__error {
  display: none;
  margin-top: 7px;
  color: #a63862;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-select.is-invalid .contact-select__trigger {
  border-color: #c85078;

  box-shadow:
    0 0 0 3px rgba(200, 80, 120, 0.13),
    0 8px 20px rgba(62, 48, 80, 0.08);
}

.contact-select.is-invalid .contact-select__error {
  display: block;
}


/* =========================================================
   Form Actions
========================================================= */

.contact-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.contact-form__cta {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-form__cta b {
  margin-left: 4px;
  font-weight: 600;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991.98px) {
  .contact {
    padding: 72px 0 84px;
  }

  .contact__copy {
    max-width: none;
    text-align: center;
  }

  .contact__copy>.eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .contact__lede {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 575.98px) {
  .contact {
    padding: 56px 0 68px;
  }

  .contact-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-form__field>span {
    font-size: 16px;
  }

  .contact-form__field input:not([type="hidden"]),
  .contact-form__field textarea {
    font-size: 14px;
  }

  .contact-select__trigger {
    min-height: 52px;
    padding: 13px 15px;
    font-size: 14px;
  }

  .contact-select__menu {
    max-height: 230px;
    padding: 6px;
  }

  .contact-select__option {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .contact-select__option:hover,
  .contact-select__option:focus-visible {
    padding-left: 15px;
  }

  .contact-form__cta {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 88px 0 28px;
  background: #f7f5fc;
  color: #3e3050;
  overflow: clip;
}

.footer__grid {
  --bs-gutter-x: 2.75rem;
  align-items: flex-start;
}

.footer-brand {
  display: inline-block;
  margin: 0 0 18px;
  line-height: 0;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: 196px;
  max-width: 100%;
  height: auto;
}

.footer__tagline {
  max-width: 300px;
  margin: 0 0 28px;
  color: #5c5568;
  font: 400 14px / 1.55 var(--sans);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin: 0 0 28px;
  font-style: normal;
}

.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5c5568;
  font: 400 14px/1.5 var(--sans);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-row > span:first-child {
  flex: 0 0 18px;
  color: #a855f7;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.footer__contact-row:hover,
.footer__contact-row:focus-visible {
  color: #332d2d;
}

.footer-payments {
  display: block;
  width: min(100%, 240px);
  height: auto;
}

.footer__heading {
  margin: 0 0 18px;
  color: #332d2d;
  font: 600 16px / 1.2 var(--sans);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links--services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.footer__links a {
  color: #5c5568;
  font: 400 14px / 1.3 var(--sans);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #332d2d;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(62, 48, 80, 0.12);
}

.footer__legal p {
  margin: 0;
  color: #8b8499;
  font: 400 12px / 1.4 var(--sans);
}

.footer__legal a {
  color: #8b8499;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #332d2d;
}

.footer__legal span {
  margin: 0 8px;
  color: #c4bfd0;
}

@media (max-width: 991.98px) {
  .site-footer {
    padding: 64px 0 24px;
  }

  .footer__legal {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding: 52px 0 20px;
  }

  .footer-brand img {
    width: 160px;
  }

  .footer-payments {
    width: min(100%, 210px);
  }

  .footer__links--services {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
  }

  .header-btn {
    display: none;
  }

  .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    z-index: 120;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #f0e4f2;
    box-shadow: 0 18px 36px rgba(62, 48, 80, 0.12);
    transform: translateX(-50%);
    max-height: min(78vh, 640px);
    overflow-y: auto;
  }

  .nav nav.is-open {
    display: flex;
  }

  .nav nav>.nav-link,
  .nav nav>a.nav-link {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid #f3eef7;
    font-size: 15px;
  }

  .nav-item--dropdown {
    border-bottom: 1px solid #f3eef7;
  }

  .nav-item--dropdown .nav-link--toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: 15px;
  }

  .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0 0 10px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-item--dropdown.is-open .nav-dropdown {
    display: block;
    transform: none;
  }

  .nav-dropdown__panel {
    margin-top: 4px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: none;
  }

  .nav-dropdown__list li {
    opacity: 1;
    transform: none;
  }

  .nav-dropdown__link {
    padding: 11px 10px !important;
    font-size: 13.5px !important;
  }

  .nav nav a:last-child {
    border-bottom: 0;
  }

  .nav nav>a.nav-link.is-active::after,
  .nav nav .nav-link--toggle.is-active::after {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .split,
  .section-head {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .lede {
    font-size: 14px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .actions .button {
    width: 100%;
  }

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

  .section-head h2 {
    font-size: clamp(30px, 8vw, 38px);
  }
}

/* Services section: Figma-aligned header + 3?2 pastel cards */
.services {
  background: #fff;
  padding: 96px 0 110px;
}

.services.services--with-bg {
  background: #fff url("../img/startearly.png") center / cover no-repeat;
}

.services.services--with-gradient {
  background: linear-gradient(180deg, rgba(255, 234, 250, .32) 0%, rgba(224, 242, 254, .32) 100%);
}

.services.services--with-bg.services--with-gradient {
  background:
    linear-gradient(180deg, rgba(255, 234, 250, .32) 0%, rgba(224, 242, 254, .32) 100%),
    url("../img/startearly.png") center / cover no-repeat;
}

.service-page--book-marketing .services.services--with-bg {
  background: #fff url("../img/startearly.png") center / cover no-repeat;
}

.service-page--book-marketing .services.services--with-gradient {
  background: linear-gradient(180deg, rgba(255, 234, 250, .32) 0%, rgba(224, 242, 254, .32) 100%);
}

.service-page--book-marketing .services.services--with-bg.services--with-gradient {
  background:
    linear-gradient(180deg, rgba(255, 234, 250, .32) 0%, rgba(224, 242, 254, .32) 100%),
    url("../img/startearly.png") center / cover no-repeat;
}

.services__head {
  width: 100%;
  margin: 0 auto 48px;
}

.services__action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.services__cta {
  min-height: 52px;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .services__action {
    margin-top: 32px;
  }

  .services__cta {
    width: 100%;
    max-width: 320px;
  }
}

.services__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 72px;
  align-items: end;
  width: 100%;
}

.services__lede {
  max-width: 420px;
  margin: 0;
  justify-self: start;
  color: #5a5068;
  font: 400 14px/1.55 var(--sans);
}

.services__title {
  justify-self: start;
  max-width: 560px;
}

.services__title>.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 22px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f4e8ff;
  color: transparent;
  font-size: 0;
}

.services__title>.eyebrow::after {
  color: #4a3a60;
  content: "What We Do";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.services__heading {
  max-width: none;
  margin: 0;
  color: #3e3050;
  font: 600 clamp(32px, 3.4vw, 48px) / 1.08 var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: left;
}

@media (max-width: 991.98px) {
  .services__head {
    margin-bottom: 36px;
  }

  .services__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

  .services__lede {
    max-width: 520px;
    justify-self: center;
    order: 2;
  }

  .services__title {
    justify-self: center;
    max-width: none;
    order: 1;
    text-align: center;
  }

  .services__title>.eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .services__heading {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .services__head {
    margin-bottom: 28px;
  }
}

/* Hard-lock services grid: equal cards, no Bootstrap column shrinkage. */
.services .service-grid.row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  justify-content: stretch;
  align-items: stretch;
  margin-left: 0 !important;
  margin-right: 0 !important;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.services .service-grid>.services__cell {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.services .service-grid>.services__cell[data-aos] {
  width: 100% !important;
  max-width: 100% !important;
}


/*
|--------------------------------------------------------------------------
| Figma Printing Services Grid
|--------------------------------------------------------------------------
|
| This only affects sections using:
| layout => figma-grid
|
| All existing services sections remain unchanged.
|
*/

.services--figma-grid .service-grid--figma {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
  width: 100%;
}

/*
| Reset possible Bootstrap or old custom width rules.
*/

.services--figma-grid .service-grid--figma>.services__cell {
  display: flex;
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex: none;
}

/*
| Normal card: one column.
*/

.services--figma-grid .services__cell--span-1 {
  grid-column: span 1;
}

/*
| Wide card: two columns.
*/

.services--figma-grid .services__cell--span-2 {
  grid-column: span 2;
}

/*
| Make each card fill its complete grid cell.
*/

.services--figma-grid .service-card {
  width: 100%;
  height: 100%;
  min-height: 382px;
  box-sizing: border-box;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {
  .services--figma-grid .service-grid--figma {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services--figma-grid .services__cell--span-2 {
    grid-column: span 2;
  }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 767.98px) {
  .services--figma-grid .service-grid--figma {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .services--figma-grid .services__cell--span-1,
  .services--figma-grid .services__cell--span-2 {
    grid-column: span 1;
  }

  .services--figma-grid .service-card {
    min-height: auto;
  }
}


/* Amazon services: first card spans two of three desktop columns. */
@media (min-width: 992px) {
  .service-page--amazon-book-marketing .services .service-grid>.services__cell--wide {
    grid-column: span 2;
  }
}

.service-page--amazon-book-marketing .services .service-card--1 {
  background: #ede9fe;
  border-color: #ddd6fe;
}

.service-page--amazon-book-marketing .services .service-card--2 {
  background: #e0f2fe;
  border-color: #bae6fd;
}

.service-page--amazon-book-marketing .services .service-card--3 {
  background: #dcfce7;
  border-color: #bbf7d0;
}

.service-page--amazon-book-marketing .services .service-card--4 {
  background: #fff7ed;
  border-color: #fed7aa;
}

.service-page--amazon-book-marketing .services .service-card--5 {
  background: #fef9c3;
  border-color: #fef08a;
}

.service-page--amazon-book-marketing .services .service-card__points {
  margin: 4px 0 0;
  padding-left: 22px;
  color: #3e3050;
  font: 400 16px/1.45 var(--sans);
  letter-spacing: -0.02em;
}

.service-page--amazon-book-marketing .services .service-card__points li {
  padding-left: 2px;
}

.service-page--amazon-book-marketing .services .service-card__points strong {
  font-weight: 600;
}

/* A five-card grid keeps the final pair centered under the first three. */
.services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell {
  grid-column: span 2;
}

.services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(4) {
  grid-column: 2 / span 2;
}

.services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Amazon's five-card Figma layout: 2/3 + 1/3, then three equal cards. */
@media (min-width: 992px) {
  .service-page--amazon-book-marketing .services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .service-page--amazon-book-marketing .services .service-grid.row>.services__cell {
    grid-column: auto !important;
  }

  .service-page--amazon-book-marketing .services .service-grid.row>.services__cell--wide {
    grid-column: span 2 !important;
  }
}

.services .service-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 36px 32px 30px;
  border: 0;
  border-radius: 20px;
}

.services .service-card.col-md-6,
.services .service-card.col-xl-4,
.services .service-card[class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding-left: 36px;
  padding-right: 32px;
}

.services .service-card--1 {
  background: #EDE9FE;
  border-radius: 20px;
  border: 1px solid #DDD6FE;
}

.services .service-card--2 {
  border-radius: 20px;
  border: 1px solid #FBCFE8;
  background: #FCE7F3;
}

.services .service-card--3 {
  border-radius: 20px;
  border: 1px solid #BAE6FD;
  background: #E0F2FE;
}

.services .service-card--4 {
  border-radius: 20px;
  border: 1px solid #BBF7D0;
  background: #DCFCE7;
}

.services .service-card--5 {
  border-radius: 20px;
  border: 1px solid #FED7AA;
  background: #FFF7ED;
}

.services .service-card--6 {
  border-radius: 20px;
  border: 1px solid #FEF08A;
  background: #FEF9C3;
  padding-top: 40px;
}

.services .service-card--7 {
  border-radius: 20px;
  border: 1px solid #FFCACE;
  background: #FFF0F1;
  padding-top: 40px;
}

@media (max-width: 767.98px) {
  .services .service-grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }

  .services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell {
    grid-column: auto;
  }
}

@media (max-width: 575.98px) {
  .services .service-grid.row {
    grid-template-columns: 1fr !important;
  }
}

.services .service-card>i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin: 0 0 22px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  font-style: normal;
}

.services .service-card>i img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.services .service-card h3 {
  margin: 0 0 10px;
  color: #3e3050;
  font: 600 18px/1.2 var(--sans);
  letter-spacing: -0.02em;
}

.services .service-card p {
  margin: 0;
  color: #5a5068;
  font: 400 14px/1.5 var(--sans);
}

.services .service-card a {
  margin-top: auto;
  padding-top: 28px;
  color: #c24ba8;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.services .service-card--2 a {
  color: #7b52d9;
}

.services .service-card--3 a {
  color: #1c9d65;
}

.services .service-card--4 a {
  color: #e07020;
}

.services .service-card--5 a {
  color: #b89200;
}

.services .service-card--6 a {
  color: #1a8fc4;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.services .service-card--6 h3 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.15;
}

.services .service-card--6 p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .services {
    padding: 72px 0 88px;
  }

  .services .service-card {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .services {
    padding: 56px 0 72px;
  }

  .services .service-card {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .services .service-card a {
    padding-top: 22px;
  }
}

/* Figma typography and hero-art overrides */
:root {
  --sans: "Poppins", sans-serif;
  --purple: #a855f7;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(232, 220, 240, 0.9);
  box-shadow: 0 12px 40px rgba(62, 48, 80, 0.12);
}

.brand {
  color: #a94df4;
}

.brand span {
  font-weight: 500;
}

.nav nav>a.nav-link.is-active,
.nav nav .nav-link--toggle.is-active {
  color: #a855f7;
  font-weight: 600;
}

.nav nav>a.nav-link.is-active::after,
.nav nav .nav-link--toggle.is-active::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a855f7;
  content: "";
  transform: translateX(-50%);
}

.nav-dropdown__link.is-active {
  background: rgba(168, 85, 247, 0.08) !important;
  color: #7c3aed !important;
  font-weight: 600 !important;
}

.nav-dropdown__link.is-active .nav-dropdown__arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-dropdown__link::before,
.nav-dropdown__link::after {
  display: none !important;
  content: none !important;
}

.header-btn {
  min-width: 240px;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 13px;
}

@media (max-width: 1280px) {
  .site-header {
    height: 84px;
  }

  .site-header .brand {
    width: 148px;
    height: 42px;
  }

  .nav nav {
    gap: 26px;
  }

  .nav nav a {
    font-size: 14px;
  }

  .header-btn {
    min-width: 210px;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 76px;
  }

  .nav nav {
    gap: 18px;
  }

  .nav nav a {
    font-size: 13px;
  }

  .header-btn {
    min-width: 0;
    padding: 10px 14px;
    font-size: 11px;
  }
}

.hero-books {
  height: 400px;
  gap: 0;
  transform: none;
}

.hero-books img {
  display: block;
  width: min(970px, 100%);
  height: auto;
  object-fit: contain;
}

.hero-books .book {
  display: none;
}

.open-book {
  background: #fff url("../img/problem-book.png") center/cover no-repeat;
  transform: none;
}

.open-book:before {
  display: none;
}

.open-book span {
  display: none;
}

.site-header .brand {
  display: block;
  width: 173px;
  height: 49px;
  background: url("../img/top-book-marketing-logo.svg") center / contain no-repeat;
  font-size: 0;
}

.site-header .brand span {
  display: none;
}

/* Problem section: Figma's illustrated background and transparent open-book art. */
.problem {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background: linear-gradient(
    180deg,
    #fff5fc 0%,
    #fbf4ff 46%,
    #eef8ff 100%
  );
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/results-bg.svg") center / cover no-repeat;
}

.problem>.shell {
  position: relative;
  z-index: 1;
}

.problem .split.row {
  align-items: center;
}

.problem .split {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
}

.problem .split>.problem-copy {
  flex: 0 0 56%;
  width: 56%;
}

.problem .split>.open-book {
  flex: 0 0 44%;
  width: 44%;
}

.problem-copy {
  position: relative;
  z-index: 1;
}

.problem-copy>.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 23px;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  background: #f5e8ff;
  color: transparent;
  font-size: 0;
}

.problem-copy>.eyebrow::after {
  color: #3e3050;
  content: "The Problem";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.problem-copy h2 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #3e3050;
  font-size: clamp(42px, 3.5vw, 59px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.problem-copy>p:last-child {
  max-width: 620px;
  margin: 0;
  margin-top: 20px;
  color: #3e3050;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}

.problem .open-book {
  display: flex;
  min-height: 400px;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.problem .open-book::before,
.problem .open-book span {
  display: none;
}

.problem .open-book img {
  display: block;
  width: min(650px, 100%);
  max-width: 100%;
  height: auto;
  margin-right: 0;
  margin-left: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 13px rgba(53, 43, 71, 0.22));
  transform: rotate(-1deg);
}

.service-card i img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.service-card i span {
  line-height: 1;
}

@media (max-width: 991.98px) {
  .problem {
    padding: 76px 0 86px;
  }

  .problem .open-book {
    min-height: 300px;
  }

  .problem .open-book img {
    width: min(650px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .problem {
    padding: 60px 0 70px;
    background: linear-gradient(180deg, #fff5fc 0%, #faf4ff 45%, #eef8ff 100%);
  }

  .problem::before {
    background-position: center top;
    background-size: 180% auto;
  }

  .problem .split {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .problem .split>.problem-copy,
  .problem .split>.open-book {
    flex-basis: 100%;
    width: 100%;
  }

  .problem-copy h2 {
    font-size: 39px;
  }

  .problem .open-book {
    min-height: 230px;
  }
}

/* Premium Advertising ? Figma two-column layout with illustrated BG. */
.premium {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background: linear-gradient(
    180deg,
    #eef9ff 0%,
    #f4fbf5 48%,
    #fffbe5 100%
  );
}

.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/results-bg.svg") center / cover no-repeat;
}

.premium>.shell {
  position: relative;
  z-index: 1;
}

.premium__left>.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 23px;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  background: #f5e8ff;
  color: transparent;
  font-size: 0;
}

.premium__left>.eyebrow::after {
  color: #5b3a7a;
  content: "Premium Advertising";
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

/* Eyebrow labels always use their real PHP/HTML text. */
.projects__intro>.eyebrow,
.different__head>.col-lg-6>.eyebrow,
.results__intro>.eyebrow,
.testimonial__intro>.eyebrow,
.faq__intro>.eyebrow,
.contact__copy>.eyebrow,
.services__title>.eyebrow,
.problem-copy>.eyebrow,
.premium__left>.eyebrow {
  color: #5b3a7a;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.projects__intro>.eyebrow::after,
.different__head>.col-lg-6>.eyebrow::after,
.results__intro>.eyebrow::after,
.testimonial__intro>.eyebrow::after,
.faq__intro>.eyebrow::after,
.contact__copy>.eyebrow::after,
.services__title>.eyebrow::after,
.problem-copy>.eyebrow::after,
.premium__left>.eyebrow::after {
  display: none;
  content: none;
}

.premium__left h2 {
  max-width: 560px;
  margin: 0 0 28px;
  color: #3e3050;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.premium__art {
  max-width: 520px;
  padding-top: 28px;
}

.premium__art img {
  display: block;
  width: 100%;
  height: auto;
}

.premium__intro {
  margin: 0 0 14px;
  max-width: 540px;
  color: #3e3050;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.premium__heading-copy,
.premium__below-cards {
  max-width: 540px;
  color: #3e3050;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.premium__heading-copy {
  margin: 0 0 28px;
}

.premium__below-cards {
  margin: 22px 0 0;
}

.premium__aside {
  margin: 0 0 28px;
  max-width: 540px;
  color: #3e3050;
  font-family: var(--sans);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
}

.premium-card {
  height: 100%;
  padding: 22px 20px;
  border-radius: 14px;
  background: #f3e8ff;
}

.premium-card i {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.premium-card i img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.premium-card h3 {
  margin: 0 0 4px;
  color: #3e3050;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.premium-card p {
  margin: 0;
  max-width: none;
  color: #6b6478;
  font-size: 13px;
  line-height: 1.35;
}

.premium-card--purple {
  background: #f3e8ff;
}

.premium-card--pink {
  background: #fce7f3;
}

.premium-card--blue {
  background: #e0f2fe;
}

.premium-card--green {
  background: #ecfdf5;
}

.premium__cta {
  display: inline-flex;
  margin-top: 28px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--purple);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .premium {
    padding: 72px 0 80px;
  }

  .premium__art {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .premium {
    padding: 56px 0 64px;
    background: linear-gradient(180deg, #eef9ff 0%, #f4fbf5 48%, #fffbe5 100%);
  }

  .premium::before {
    background-position: center top;
    background-size: 180% auto;
  }

  .premium__left h2 {
    font-size: 32px;
  }

  .premium-card {
    padding: 18px 14px;
  }

  .premium-card h3 {
    font-size: 14px;
  }

  .premium-card p {
    font-size: 12px;
  }

  .premium__cta {
    width: 100%;
    justify-content: center;
  }
}

/* Bootstrap grid bridge: keeps the established design while allowing Bootstrap breakpoints. */
.shell.container {
  width: min(1362px, calc(100% - 48px));
  max-width: 1362px;
}

.split.row {
  display: flex;
  flex-wrap: wrap;
}

.split.row>* {
  flex: 0 0 50%;
  width: 50%;
}

.service-grid.row {
  display: flex;
  flex-wrap: wrap;
}

.services .service-grid.row {
  display: grid !important;
}

@media (max-width: 991.98px) {
  .split.row>* {
    flex-basis: 100%;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .shell.container {
    width: calc(100% - 28px);
    max-width: none;
  }

  .split.row>* {
    flex-basis: 100%;
    width: 100%;
  }
}

/* Continuous platform-logo marquee. */
.trust .logos {
  position: relative;
  width: 100%;
  height: 116px;
  margin-top: 30px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust .logos::before,
.trust .logos::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 110px;
  content: "";
  pointer-events: none;
}

.trust .logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.trust .logos::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.logos__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  height: 100%;
  animation: trust-marquee 28s linear infinite;
}

.logos__set {
  display: flex;
  width: 50%;
  min-width: 760px;
  align-items: center;
  justify-content: space-around;
  gap: 75px;
  padding: 0 38px;
}

.logos__set img {
  display: block;
  width: 172px;
  max-height: 76px;
  object-fit: contain;
}

.logo-separator {
  display: block;
  width: 33px;
  min-width: 33px;
  height: 33px;
}

.logo-separator--mint path {
  fill: #dcfce7;
}

.logo-separator--blue path {
  fill: #e0f2fe;
}

.logo-separator--yellow path {
  fill: #fef9c3;
}

.logo-separator--pink path {
  fill: #fce7f3;
}

.trust .logos:hover .logos__track {
  animation-play-state: paused;
}

@keyframes trust-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* The eyebrow is an inline badge, so it needs its own auto-sized centred block. */
.trust .eyebrow-parent {
  display: flex;
  width: fit-content;
  min-height: 48px;
  margin: 0 auto 12px;
  padding: 0 33px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}

.trust .eyebrow-parent .eyebrow {
  margin: 0;
  color: #3e3050;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.26px;
  line-height: 1.2;
}

.trust h2 {
  margin: 30px 0;
  font-size: 53px;
}

.trust>.shell>p {
  /* max-width: 760px; */
  margin: 8px auto 20px;
  color: #3e3050;
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.trust .logos {
  height: 124px;
  margin-top: 24px;
}

.logos__set {
  min-width: 920px;
  gap: 96px;
}

.logos__set img {
  width: 172px;
  max-height: 76px;
}

.trust {
  padding: 52px 0 66px;
}

.trust h2 {
  margin: 22px 0 20px;
  font-size: 53px;
}

.trust>.shell>p:not(.last-para) {
  margin: 0 auto;
}

.trust .logos {
  margin-top: 27px;
}

.trust .last-para {
  margin: 25px auto 0;
  color: #3e3050;
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

@media (max-width: 560px) {
  .trust .logos {
    height: 94px;
  }

  .logos__set {
    min-width: 610px;
    gap: 45px;
    padding: 0 20px;
  }

  .logos__set img {
    width: 98px;
    max-height: 48px;
  }

  .trust .logos::before,
  .trust .logos::after {
    width: 38px;
  }
}

/* Hero book artwork: absolute only on desktop; stacked in-flow on tablet/mobile. */
.hero {
  height: 1124px;
  min-height: 0;
  overflow: clip;
}

.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.hero-star {
  display: flex;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 3;
}

.hero-star svg {
  display: block;
}

/* Clipped side lanes — full-height edges like Figma, no page overflow */
.hero-wm {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(90px, 11vw, 240px);
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.hero-wm--left {
  left: 0;
}

.hero-wm--right {
  right: 0;
}

/* Match the homepage watermark position to the 993px reusable page hero. */
@media (min-width: 992px) {
  .hero>.hero-wm {
    bottom: auto;
    height: min(993px, 100%);
  }
}

.hero-wm__text {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(72px, 12vw, 220px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4.4px;
  text-transform: uppercase;
  white-space: nowrap;
  /* Figma: very soft low-opacity purple wash */
  background: linear-gradient(180deg,
      rgba(168, 85, 247, 0.09) 0%,
      rgba(168, 85, 247, 0.035) 48%,
      rgba(168, 85, 247, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: transform;
  backface-visibility: hidden;
}

/* Left: hug the start edge; enter from the very top of the hero */
.hero-wm--left .hero-wm__text {
  left: -0.08em;
  writing-mode: vertical-lr;
  transform: translateY(-50%);
  animation: hero-wm-down 2.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Right: hug the end edge; enter from the very bottom of the hero */
.hero-wm--right .hero-wm__text {
  left: auto;
  right: -0.08em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  animation: hero-wm-up 2.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-wm-down {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% - 48vh));
  }

  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes hero-wm-up {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 48vh)) rotate(180deg);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (max-width: 1400px) {
  .hero-wm__text {
    font-size: clamp(64px, 11vw, 180px);
    letter-spacing: -3.2px;
  }
}

@media (max-width: 1200px) {
  .hero-wm {
    width: clamp(72px, 9vw, 160px);
  }

  .hero-wm__text {
    font-size: clamp(56px, 9.5vw, 140px);
    letter-spacing: -2.4px;
  }
}

.hero .eyebrow-parent {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  margin: 0 auto 28px;
  padding: 0 33px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .eyebrow-parent .eyebrow {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #3e3050;
  font-family: var(--sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.36px;
  line-height: 1.2;
  text-align: center;
}

.hero .eyebrow,
.hero h1,
.hero .lede,
.hero .actions {
  position: relative;
  z-index: 3;
}

.hero .actions {
  margin-bottom: 0;
}

.hero .hero-books {
  position: absolute;
  z-index: 1;
  bottom: -120px;
  left: 50%;
  display: block;
  width: min(920px, 88vw);
  height: auto;
  margin: 0;
  overflow: hidden;
  transform: translateX(-50%);
  animation: hero-books-in 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero .hero-books img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@keyframes hero-books-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(36px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-wm--left .hero-wm__text,
  .hero-wm--right .hero-wm__text,
  .hero .hero-books {
    animation: none !important;
    opacity: 1 !important;
  }

  .hero-wm--left .hero-wm__text {
    transform: translateY(-50%) !important;
  }

  .hero-wm--right .hero-wm__text {
    transform: translateY(-50%) rotate(180deg) !important;
  }

  .hero .hero-books {
    transform: translateX(-50%) !important;
  }
}

/* =========================================================
   Hero tablet + mobile: content above books, no overlap
   ========================================================= */
@media (max-width: 991.98px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: 48px 0 0;
    overflow: hidden;
  }

  .hero__inner {
    height: auto;
    padding-bottom: 0;
  }

  .hero-star {
    margin-bottom: 12px;
  }

  .hero .eyebrow-parent {
    max-width: min(520px, 100%);
    min-height: 0;
    margin-bottom: 20px;
    padding: 10px 18px;
  }

  .hero .eyebrow-parent .eyebrow {
    font-size: clamp(13px, 2.2vw, 15px);
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 640px;
    margin: 0 auto 16px;
    font-size: clamp(36px, 5.2vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .hero h1 br {
    display: none;
  }

  .hero .lede {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 4px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero .actions {
    position: relative;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin: 28px auto 0;
  }

  .hero .actions .button {
    flex: 1 1 200px;
    min-width: 0;
  }

  /* Books leave absolute positioning and sit under CTAs */
  .hero .hero-books {
    position: relative;
    z-index: 1;
    left: auto;
    bottom: auto;
    width: min(720px, 112%);
    height: auto;
    margin: 36px auto -48px;
    transform: none;
    animation: hero-books-in-flow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
    pointer-events: none;
  }

  .hero .hero-books img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hero-wm {
    width: clamp(64px, 10vw, 120px);
  }

  .hero-wm__text {
    font-size: clamp(48px, 12vw, 84px);
    letter-spacing: -2px;
  }
}

@keyframes hero-books-in-flow {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 36px;
  }

  .hero .eyebrow-parent {
    margin-bottom: 16px;
    padding: 9px 14px;
  }

  .hero .eyebrow-parent .eyebrow {
    font-size: 12.5px;
  }

  .hero h1 {
    font-size: clamp(30px, 7.5vw, 40px);
    line-height: 1.14;
    margin-bottom: 14px;
  }

  .hero .lede {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero .actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-top: 24px;
    gap: 10px;
  }

  .hero .actions .button {
    flex: none;
    width: 100%;
  }

  .hero .hero-books {
    width: min(560px, 118%);
    margin: 28px auto -36px;
  }

  .hero-wm__text {
    font-size: clamp(40px, 12vw, 56px);
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 28px;
  }

  .hero-star {
    margin-bottom: 8px;
  }

  .hero-star svg {
    width: 22px;
    height: 22px;
  }

  .hero .eyebrow-parent {
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 12px;
  }

  .hero .eyebrow-parent .eyebrow {
    font-size: 11.5px;
    letter-spacing: -0.2px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero .lede {
    font-size: 14px;
    line-height: 1.55;
    padding: 0;
  }

  .hero .actions {
    max-width: 100%;
    margin-top: 22px;
  }

  .hero .actions .button {
    min-height: 48px;
    font-size: 14px;
  }

  .hero .actions .button--ghost {
    background: rgba(255, 255, 255, 0.92);
  }

  .hero .hero-books {
    width: min(420px, 108%);
    margin: 24px auto -28px;
  }

  .hero-wm {
    display: none;
  }
}

@media (max-width: 389.98px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero .eyebrow-parent .eyebrow {
    font-size: 11px;
  }

  .hero .lede {
    font-size: 13px;
  }

  .hero .hero-books {
    width: 100%;
    margin: 20px auto -20px;
  }
}

/* Book Editing Services — scoped Figma layout */
.service-page--book-editing {
  --editing-ink: #3e3050;
  --editing-muted: #5f556a;
}

.service-page--book-editing .page-hero h1 {
  max-width: 1150px;
}

.service-page--book-editing .start-early__art img {
  transform: rotate(-4.17deg);
}

.service-page--book-editing .services.services--with-bg {
  background:
    linear-gradient(180deg, rgba(255, 234, 250, 0.5), rgba(224, 242, 254, 0.5)),
    url("../img/editing-services-bg.png") center / cover no-repeat;
}

.service-page--book-editing .services .service-card--1 {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.service-page--book-editing .services .service-card--2 {
  border-color: #fbcfe8;
  background: #fce7f3;
}

.service-page--book-editing .services .service-card--3 {
  border-color: #bbf7d0;
  background: #dcfce7;
}

.service-page--book-editing .services .service-card--4 {
  border-color: #fed7aa;
  background: #fff7ed;
}

.service-page--book-editing .services .service-card>i {
  background: #fff !important;
}

.service-page--book-editing .services .service-card>i img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-page--book-editing .book-editing-process {
  padding: 100px 0;
  background: #fff;
}

.service-page--book-editing .book-editing-process .process__visual>img {
  object-position: center;
}

.service-page--book-editing .illustration-audience {
  background:
    linear-gradient(180deg, rgba(224, 242, 254, 0.4), rgba(254, 249, 195, 0.4)),
    url("../img/editing-audience-bg.png") center / cover no-repeat;
}

.service-page--book-editing .illustration-trust__intro img {
  margin-top: 28px;
}

.service-page--book-editing .illustration-testimonials {
  background:
    linear-gradient(180deg, rgba(254, 249, 195, 0.46), rgba(220, 252, 231, 0.42)),
    url("../img/editing-audience-bg.png") center / cover no-repeat;
}

.service-page--book-editing .faq__action {
  display: none;
}

@media (min-width: 992px) {
  .service-page--book-editing .services>.container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(382px, auto));
    gap: 20px;
  }

  .service-page--book-editing .services__head,
  .service-page--book-editing .services__intro,
  .service-page--book-editing .services .service-grid.row {
    display: contents !important;
  }

  .service-page--book-editing .services__title {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    max-width: 100%;
    padding-top: 0;
  }

  .service-page--book-editing .services__lede {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    max-width: 100%;
    padding-top: 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .service-page--book-editing .services__action {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    justify-self: center;
    justify-content: center;
  }

  .service-page--book-editing .services__heading {
    font-size: 60px;
    line-height: 68px;
  }

  .service-page--book-editing .services .service-grid>.services__cell:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .service-page--book-editing .services .service-grid>.services__cell:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .service-page--book-editing .services .service-grid>.services__cell:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .service-page--book-editing .services .service-grid>.services__cell:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  .service-page--book-editing .services .service-card {
    min-height: 382px;
  }
}

@media (max-width: 991.98px) {
  .service-page--book-editing .start-early__art {
    transform: none;
  }

  .service-page--book-editing .book-editing-process {
    padding: 76px 0;
  }
}

@media (max-width: 575.98px) {
  .service-page--book-editing .book-editing-process {
    padding: 64px 0;
  }
}

/* Book Illustration Services
   Scoped to the page so the existing marketing and writing pages remain unchanged. */
.service-page--book-illustration {
  --illustration-ink: #3e3050;
  --illustration-muted: #5f556a;
}

.service-page--book-illustration .section-space {
  padding: 100px 0;
}

.service-page--book-illustration .page-hero h1 {
  max-width: 1150px;
}

.service-page--book-illustration .page-hero__description {
  margin-top: 20px;
}

.service-page--book-illustration .page-hero__benefits {
  gap: 20px 15px;
}

.service-page--book-illustration .page-hero__benefits li {
  min-height: 59px;
  border-radius: 20px;
}

.service-page--book-illustration .section-pill {
  min-height: 48px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 33px;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-page--book-illustration .illustration-section-head {
  margin-bottom: 40px;
}

.service-page--book-illustration .illustration-section-head h2,
.service-page--book-illustration .illustration-challenge h2,
.service-page--book-illustration .illustration-process h2,
.service-page--book-illustration .illustration-trust h2,
.service-page--book-illustration .illustration-testimonials h2 {
  margin: 0;
  color: var(--illustration-ink);
  font: 700 clamp(42px, 3.5vw, 60px)/1.13 var(--serif);
  letter-spacing: -0.035em;
}

.service-page--book-illustration .illustration-section-head p,
.service-page--book-illustration .illustration-challenge__copy>p,
.service-page--book-illustration .illustration-process__visual>p:last-of-type,
.service-page--book-illustration .illustration-trust__intro>p:last-of-type {
  color: var(--illustration-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Challenge */
.illustration-challenge {
  background: #fff;
}

.illustration-challenge__art {
  position: relative;
  width: min(100%, 590px);
  min-height: 570px;
  margin-inline: auto;
}

.illustration-challenge__art>img {
  position: absolute;
  inset: 38px 32px 26px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  border-radius: 22px;
  object-fit: cover;
  transform: rotate(-4deg);
}

.illustration-float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  color: var(--illustration-ink);
  background: #fff;
  box-shadow: 0 7px 18px rgba(62, 48, 80, 0.18);
  font-size: 16px;
}

.illustration-float--reviews {
  top: 16px;
  left: 0;
  padding: 14px 27px;
  border: 1px solid #fef08a;
  background: #fef9c3;
  transform: rotate(-4deg);
}

.illustration-float--release {
  right: 0;
  bottom: 18px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  padding: 15px 28px;
  transform: rotate(-4deg);
}

.illustration-float--release small {
  font-size: 14px;
}

.illustration-float--release strong {
  font: 600 21px/1.2 var(--sans);
}

.illustration-challenge__copy h2 {
  margin-bottom: 22px;
}

.illustration-checklist {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.illustration-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--illustration-ink);
  font-size: 16px;
}

.illustration-checklist li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid #b05cff;
  border-radius: 50%;
  color: #9d4edd;
  content: "✓";
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

/* Coverage */
.illustration-coverage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 234, 250, .52), rgba(224, 242, 254, .58));
}

.illustration-coverage::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url('../img/premium-bg.png') center / cover no-repeat;
  content: '';
  pointer-events: none;
}

.illustration-coverage>.container {
  position: relative;
  z-index: 1;
}

.illustration-card {
  min-height: 382px;
  padding: 30px;
  border: 1px solid;
  border-radius: 20px;
  color: var(--illustration-ink);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.illustration-card:hover {
  box-shadow: 0 18px 35px rgba(62, 48, 80, 0.1);
  transform: translateY(-7px);
}

.illustration-card--lilac,
.illustration-trust__card--lilac {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.illustration-card--pink,
.illustration-trust__card--pink {
  border-color: #fbcfe8;
  background: #fce7f3;
}

.illustration-card--blue,
.illustration-trust__card--blue {
  border-color: #bae6fd;
  background: #e0f2fe;
}

.illustration-card--green,
.illustration-trust__card--green {
  border-color: #bbf7d0;
  background: #dcfce7;
}

.illustration-card--orange,
.illustration-trust__card--orange {
  border-color: #fed7aa;
  background: #fff7ed;
}

.illustration-card--yellow {
  border-color: #fef08a;
  background: #fef9c3;
}

.illustration-card__icon {
  display: grid;
  width: 66px;
  height: 67px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 15px;
  color: var(--purple);
  background: #fff;
  font: 600 27px/1 var(--serif);
}

.illustration-card--pink .illustration-card__icon {
  color: #ec4899;
}

.illustration-card--blue .illustration-card__icon {
  color: #0284c7;
}

.illustration-card--green .illustration-card__icon {
  color: #16a34a;
}

.illustration-card--orange .illustration-card__icon {
  color: #f97316;
}

.illustration-card--yellow .illustration-card__icon {
  color: #eab308;
}

.illustration-card__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.illustration-card h3,
.illustration-trust__card h3,
.illustration-quote h3 {
  margin: 0 0 8px;
  color: var(--illustration-ink);
  font: 600 21px/1.3 var(--sans);
  letter-spacing: -0.035em;
}

.illustration-card p,
.illustration-trust__card p {
  margin: 0;
  color: var(--illustration-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Process */
.illustration-process {
  background: #fff;
}

.illustration-process__steps::before {
  position: absolute;
  z-index: 0;
  top: 25px;
  right: 0;
  bottom: 135px;
  width: 2px;
  background: linear-gradient(180deg,
      #f5c2d8,
      #f5c49a 28%,
      #cbb0f2 55%,
      #9ddcf8 78%,
      #f5e879);
  content: "";
}

.illustration-process__steps {
  position: relative;
  z-index: 1;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: illustration-process;
}

.illustration-process__step {
  position: relative;
  z-index: 1;
  min-height: 248px;
  padding: 0 62px 66px 0;
  text-align: right;
}

.illustration-process__step:last-child {
  min-height: 160px;
  padding-bottom: 0;
}

.illustration-process__number {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -25px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #fbcfe8;
  border-radius: 50%;
  color: var(--illustration-ink);
  background: #fce7f3;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
}

.illustration-process__number b {
  position: relative;
  top: 0;
  display: grid;
  width: 1em;
  height: 1em;
  place-items: center;
  font: 400 24px/1 var(--serif);
  letter-spacing: 0;
  transform: translateY(-2px);
}

.illustration-process__step:nth-child(2) .illustration-process__number {
  border-color: #fed7aa;
  background: #fff7ed;
}

.illustration-process__step:nth-child(3) .illustration-process__number {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.illustration-process__step:nth-child(4) .illustration-process__number {
  border-color: #bae6fd;
  background: #e0f2fe;
}

.illustration-process__step:nth-child(5) .illustration-process__number {
  border-color: #fef08a;
  background: #fef9c3;
}

.illustration-process__step small {
  display: block;
  margin-bottom: 8px;
  color: var(--illustration-muted);
  font-size: 15px;
}

.illustration-process__step h3 {
  margin: 0 0 8px;
  color: var(--illustration-ink);
  font: 600 21px/1.3 var(--sans);
  letter-spacing: -0.025em;
}

.illustration-process__step p {
  margin: 0;
  color: var(--illustration-muted);
  font-size: 14px;
  line-height: 1.6;
}

.illustration-process__visual {
  position: sticky;
  top: 132px;
}

.illustration-process__visual h2 {
  max-width: 650px;
  margin-bottom: 16px;
}

.illustration-process__visual>img {
  display: block;
  width: 100%;
  max-height: 848px;
  margin-top: 32px;
}

/* Audience */
.illustration-audience {
  --illustration-ink: #3e3050;
  --illustration-muted: #5f556a;
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.illustration-audience--with-bg {
  background: #fff url("../img/premium-bg.png") center/cover no-repeat;
}

.illustration-audience--with-gradient {
  background:
    linear-gradient(180deg, rgba(224, 242, 254, 0.4), rgba(254, 249, 195, 0.4)),
    #fff;
}

.illustration-audience--with-bg.illustration-audience--with-gradient {
  background:
    linear-gradient(180deg, rgba(224, 242, 254, 0.4), rgba(254, 249, 195, 0.4)),
    url("../img/premium-bg.png") center/cover no-repeat;
}

.illustration-audience .illustration-section-head {
  margin-bottom: 40px;
}

.illustration-audience .illustration-section-head h2 {
  margin: 0;
  color: var(--illustration-ink);
  font: 700 clamp(42px, 4vw, 60px)/1.13 var(--serif);
  letter-spacing: -0.035em;
}

.illustration-audience .illustration-section-head>div:last-child>p {
  margin: 0;
  color: var(--illustration-muted);
  font-size: 16px;
  line-height: 1.65;
}

.illustration-audience__tabs {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 430px;
  border-radius: 20px;
}

.illustration-audience__nav {
  display: flex;
  gap: 10px;
  align-items: stretch;
  padding: 30px;
  border-radius: 20px 0 0 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.illustration-audience__tab {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 8px;
  margin-top: 30px;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  color: var(--illustration-ink);
  background: #e0f2fe;
  transition:
    margin 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.illustration-audience__tab:nth-child(2) {
  border-color: #fed7aa;
  background: #fff7ed;
}

.illustration-audience__tab:nth-child(3) {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.illustration-audience__tab:nth-child(4) {
  border-color: #fbcfe8;
  background: #fce7f3;
}

.illustration-audience__tab:nth-child(5) {
  border-color: #bbf7d0;
  background: #dcfce7;
}

.illustration-audience__tab:hover,
.illustration-audience__tab:focus-visible {
  z-index: 1;
  box-shadow: 0 8px 24px rgba(62, 48, 80, 0.12);
  outline: none;
  transform: translateY(-4px);
}

.illustration-audience__tab.is-active {
  z-index: 2;
  margin-top: 0;
  box-shadow: 0 12px 28px rgba(62, 48, 80, 0.16);
  transform: translateY(0);
}

.illustration-audience__tab span {
  align-self: baseline;
  writing-mode: vertical-rl;
  text-align: right;
  color: var(--illustration-ink);
  font: 500 17px / 1.2 var(--serif);
}

.illustration-audience__tab b {
  align-self: flex-start;
  font: 400 38px/1 var(--serif);
}

.illustration-audience__panels {
  position: relative;
}

.illustration-audience__panel {
  --audience-accent: #0284c7;
  display: none;
  min-height: 430px;
  height: 100%;
  padding: 30px;
  border: 1px solid #bae6fd;
  border-radius: 0 20px 20px 0;
  background: #e0f2fe;
  text-align: left;
}

.illustration-audience__panel--blue {
  --audience-accent: #0284c7;
  border-color: #bae6fd;
  background: #e0f2fe;
}

.illustration-audience__panel--orange {
  --audience-accent: #ea762b;
  border-color: #fed7aa;
  background: #fff7ed;
}

.illustration-audience__panel--lilac {
  --audience-accent: #7c55c7;
  border-color: #ddd6fe;
  background: #ede9fe;
}

.illustration-audience__panel--pink {
  --audience-accent: #d84f96;
  border-color: #fbcfe8;
  background: #fce7f3;
}

.illustration-audience__panel--green {
  --audience-accent: #159455;
  border-color: #bbf7d0;
  background: #dcfce7;
}

.illustration-audience__panel.is-active {
  display: flex;
  flex-direction: column;
  animation: illustration-panel-in 0.42s ease both;
}

.illustration-audience__panel>span {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--audience-accent);
  font: 400 48px/1 var(--serif);
}

.illustration-audience__panel>span::after {
  height: 1.5px;
  flex: 1;
  background: var(--audience-accent);
  content: '';
  -webkit-mask: url('../img/illustration-audience-line.svg') center / 100% 100% no-repeat;
  mask: url('../img/illustration-audience-line.svg') center / 100% 100% no-repeat;
}

.illustration-audience__panel h3 {
  margin: auto 0 8px;
  color: var(--illustration-ink);
  font: 600 22px/1.3 var(--sans);
}

.illustration-audience__panel p {
  margin: 0 0 auto;
  color: var(--illustration-muted);
  font-size: 16px;
}

.illustration-audience__panel a {
  color: var(--illustration-ink);
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes illustration-panel-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .illustration-audience__tab,
  .illustration-audience__panel.is-active {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 991.98px) {
  .illustration-audience {
    padding: 76px 0;
  }
}

@media (max-width: 767.98px) {
  .illustration-audience {
    padding: 64px 0;
  }

  .illustration-audience .illustration-section-head h2 {
    font-size: clamp(38px, 10vw, 50px);
  }
}

/* Trust */
.illustration-trust {
  background: #fff;
}

.illustration-trust--with-bg {
  background: #fff url("../img/startearly.png") center/cover no-repeat;
}

.illustration-trust--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(254, 249, 195, 0.55) 0%,
      rgba(255, 255, 255, 0.2) 48%,
      rgba(220, 252, 231, 0.58) 100%),
    #fff;
}

.illustration-trust--with-bg.illustration-trust--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(254, 249, 195, 0.55) 0%,
      rgba(255, 255, 255, 0.2) 48%,
      rgba(220, 252, 231, 0.58) 100%),
    url("../img/startearly.png") center/cover no-repeat;
}

.illustration-trust__intro h2 {
  max-width: 671px;
  margin-bottom: 20px;
  color: #3e3050;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}

.illustration-trust__intro img {
  display: block;
  width: 100%;
  max-width: 593px;
  height: auto;
  margin-top: 30px;
}

.illustration-trust__grid {
  padding-top: 0;
}

@media (min-width: 992px) {
  .illustration-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin: 0;
    padding-top: 58px;
  }

  .illustration-trust__grid>[class*="col-"] {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .illustration-trust__grid>.col-12 {
    grid-column: 1 / -1;
  }
}

.illustration-trust__card {
  min-height: 186px;
  padding: 20px;
  border: 1px solid;
  border-radius: 20px;
}

.illustration-trust__grid .col-12 .illustration-trust__card {
  min-height: 88px;
}

.illustration-trust__card--lilac {
  border-color: #c4b5fd;
}

.illustration-trust__card--pink {
  border-color: #f9a8d4;
}

.illustration-trust__card--blue {
  border-color: #7dd3fc;
}

.illustration-trust__card--green {
  border-color: #86efac;
}

.illustration-trust__card--orange {
  border-color: #fdba74;
}

.illustration-trust__card h3 {
  margin-bottom: 3px;
  font-size: 18.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.illustration-trust__card p {
  font-size: 14px;
  line-height: 1.45;
}

.illustration-trust__card p a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.illustration-trust__closing {
  margin: 18px 0 24px;
  color: var(--illustration-ink);
  font-size: 16px;
}

/* Author Website Services uses the shared visual-service layout with Figma-specific artwork. */
.service-page--author-website .page-hero h1 {
  max-width: 1160px;
}

.service-page--author-website .author-website-challenge .illustration-challenge__art>img {
  box-shadow: none;
}

.service-page--author-website .author-website-coverage {
  background: linear-gradient(180deg, rgba(255, 234, 250, .5), rgba(224, 242, 254, .5));
}

.service-page--author-website .author-website-coverage::before {
  background: url('../img/premium-bg.png') center / cover no-repeat;
}

.service-page--author-website .illustration-process__visual>img {
  object-position: center;
}

/* Testimonials */
.illustration-testimonials {
  --illustration-ink: #3e3050;
  --illustration-muted: #5f556a;
  padding: 100px 0;
  background: #fff;
}

.illustration-testimonials--with-bg {
  background: #fff url("../img/premium-bg.png") center/cover no-repeat;
}

.illustration-testimonials--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(254, 249, 195, 0.44),
      rgba(220, 252, 231, 0.4)),
    #fff;
}

.illustration-testimonials--with-bg.illustration-testimonials--with-gradient {
  background:
    linear-gradient(180deg,
      rgba(254, 249, 195, 0.44),
      rgba(220, 252, 231, 0.4)),
    url("../img/premium-bg.png") center/cover no-repeat;
}

.illustration-testimonials__head {
  margin-bottom: 40px;
}

.illustration-testimonials__head h2 {
  margin: 0;
  color: var(--illustration-ink);
  font: 700 clamp(42px, 4vw, 60px)/1.13 var(--serif);
  letter-spacing: -0.035em;
}

.illustration-testimonials__slider {
  position: relative;
  outline: none;
}

.illustration-testimonials__slider:focus-visible {
  border-radius: 20px;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
}

.illustration-testimonials__viewport {
  overflow: hidden;
  border-radius: 20px;
}

.illustration-testimonials__track {
  display: flex;
  gap: 24px;
  cursor: grab;
  touch-action: pan-y;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.illustration-testimonials__slider.is-dragging .illustration-testimonials__track {
  cursor: grabbing;
  transition: none;
}

.illustration-testimonials__item {
  min-width: 0;
  flex: 0 0 calc(50% - 12px);
}

.illustration-testimonials__item:only-child {
  flex-basis: 100%;
}

.illustration-testimonials__slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
}

.illustration-quote {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 42px 34px 34px;
  border: 1px solid rgba(62, 48, 80, 0.08);
  border-radius: 20px;
  color: var(--illustration-ink);
}

.illustration-quote__mark {
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 30px;
  display: block;
  width: min(31%, 204px);
  height: auto;
  pointer-events: none;
}

.illustration-quote--peach {
  background: #fff7ed;
}

.illustration-quote--yellow {
  background: #fef9c3;
}

.illustration-quote__stars {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--illustration-ink);
  font-size: 17px;
  letter-spacing: 4px;
}

.illustration-quote h3,
.illustration-quote small {
  position: relative;
  z-index: 1;
}

.illustration-quote small {
  color: var(--illustration-muted);
}

.illustration-quote p {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 72px 0 0;
  color: var(--illustration-muted);
  font-size: 16px;
  line-height: 1.6;
}

.illustration-testimonials__action {
  margin-top: 36px;
}

/* Existing reusable FAQ and contact blocks, adjusted to the Figma frame. */
.illustration-faq>.container {
  position: relative;
  z-index: 1;
}

.illustration-faq .faq__intro {
  max-width: 900px;
}

.illustration-faq .section-pill {
  margin-inline: auto;
}

.illustration-contact .contact__copy>.section-pill {
  border: 0;
  color: var(--illustration-ink);
  background: #fff;
}

.illustration-contact .contact__copy h2 {
  max-width: 600px;
  font-size: clamp(42px, 4vw, 60px);
}

.illustration-contact .contact__lede+.contact__lede {
  margin-top: 16px;
}

@media (max-width: 1199.98px) {
  .illustration-card {
    min-height: 100%;
  }

  .illustration-process__step {
    min-height: 275px;
  }

  .illustration-audience__tabs {
    grid-template-columns: 56% 44%;
  }
}

@media (max-width: 991.98px) {
  .illustration-testimonials {
    padding: 76px 0;
  }

  .service-page--book-illustration .section-space {
    padding: 76px 0;
  }

  .service-page--book-illustration .page-hero {
    min-height: auto;
    padding: 78px 0;
  }

  .service-page--book-illustration .page-hero h1 {
    font-size: clamp(44px, 8vw, 64px);
  }

  .illustration-challenge__art {
    min-height: 520px;
  }

  .illustration-process__steps {
    margin-top: 0;
  }

  .illustration-process__visual {
    position: static;
    margin-bottom: 34px;
  }

  .illustration-process__visual>img {
    max-height: 620px;
    object-position: center 25%;
  }

  .illustration-process__step {
    min-height: 0;
    padding-bottom: 64px;
  }

  .illustration-audience__tabs {
    grid-template-columns: 1fr;
  }

  .illustration-audience__nav {
    min-height: 300px;
    border-radius: 20px 20px 0 0;
  }

  .illustration-audience__panel {
    min-height: 340px;
    border-radius: 0 0 20px 20px;
  }

  .illustration-trust__grid {
    margin-top: 24px;
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .illustration-testimonials__track {
    gap: 16px;
  }

  .illustration-testimonials__item {
    flex-basis: 100%;
  }

  .illustration-testimonials__head h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .service-page--book-illustration .page-hero__benefits {
    grid-template-columns: 1fr;
  }

  .service-page--book-illustration .illustration-section-head h2,
  .service-page--book-illustration .illustration-challenge h2,
  .service-page--book-illustration .illustration-process h2,
  .service-page--book-illustration .illustration-trust h2,
  .service-page--book-illustration .illustration-testimonials h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .illustration-challenge__art {
    min-height: 450px;
  }

  .illustration-float--reviews {
    padding: 10px 16px;
    font-size: 13px;
  }

  .illustration-float--release {
    min-width: 190px;
    padding: 12px 18px;
  }

  .illustration-float--release strong {
    font-size: 17px;
  }

  .illustration-card {
    min-height: 0;
  }

  .illustration-process__step {
    padding-right: 46px;
  }

  .illustration-audience__nav {
    min-height: 260px;
    gap: 6px;
    padding: 18px;
  }

  .illustration-audience__tab span {
    font-size: 14px;
  }

  .illustration-audience__tab b {
    font-size: 28px;
  }

  .illustration-trust__card,
  .illustration-trust__grid .col-12 .illustration-trust__card {
    min-height: 0;
  }

  .illustration-quote {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .service-page--book-illustration .section-pill {
    min-height: 38px;
    padding: 8px 20px;
    font-size: 12px;
  }

  .service-page--book-illustration .page-hero__cta {
    min-width: 0;
    width: 100%;
  }

  .illustration-challenge__art {
    min-height: 370px;
  }

  .illustration-challenge__art>img {
    inset: 30px 16px 20px;
    width: calc(100% - 32px);
    height: calc(100% - 50px);
  }

  .illustration-float--release {
    right: 4px;
    bottom: 0;
  }

  .illustration-process__step {
    padding-right: 0;
    padding-left: 36px;
    border-right: 0;
    text-align: left;
  }

  .illustration-process__steps {
    margin-left: 14px;
  }

  .illustration-process__number {
    right: auto;
    left: -21px;
    width: 42px;
    height: 42px;
  }

  .illustration-process__steps::before {
    top: 21px;
    right: auto;
    bottom: 139px;
    left: 0;
  }

  .illustration-audience__nav {
    min-height: auto;
    flex-direction: column;
  }

  .illustration-audience__tab {
    min-height: 58px;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    margin-top: 0;
  }

  .illustration-audience__tab.is-active {
    transform: translateX(6px);
  }

  .illustration-audience__tab span {
    writing-mode: initial;
    text-align: left;
  }

  .illustration-audience__tab b {
    align-self: auto;
  }

  .illustration-audience__panel {
    min-height: 300px;
    padding: 24px;
  }

  .illustration-quote p {
    max-width: 100%;
    margin-top: 48px;
  }

  .illustration-testimonials__slide {
    grid-template-columns: 1fr;
  }
}

/* Inner page hero responsiveness */
@media (max-width: 991.98px) {
  .page-hero {
    min-height: 0;
    padding: 82px 0;
  }

  .page-hero h1 {
    max-width: 920px;
    font-size: clamp(46px, 7vw, 62px);
    line-height: 1.12;
  }

  .page-hero__watermark {
    opacity: 0.65;
    font-size: 112px;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    padding: 64px 0;
  }

  .page-hero__eyebrow {
    min-height: 42px;
    padding: 9px 22px;
    font-size: 14px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .page-hero__description {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .page-hero__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hero__benefits li {
    min-height: 54px;
    padding: 13px 16px;
    font-size: 14px;
  }

  .page-hero__prompt {
    margin-top: 24px;
    font-size: 16px;
  }

  .page-hero__watermark {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    padding: 48px 0 56px;
  }

  .page-hero__cta {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   Laptop / tablet polish (sections below hero ? header/hero untouched)
   ========================================================= */
@media (max-width: 1399.98px) {
  .shell {
    width: min(1180px, calc(100% - 40px));
  }

  .trust {
    padding-top: 48px;
  }

  .trust h2 {
    font-size: 42px;
  }

  .trust p,
  .trust .last-para {
    max-width: 640px;
    font-size: 15px;
  }

  .problem,
  .premium,
  .services,
  .projects,
  .different,
  .process,
  .results,
  .testimonial,
  .faq,
  .contact {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .problem-copy h2,
  .premium__left h2,
  .services__heading,
  .projects__intro h2,
  .different__head h2,
  .process__visual h2,
  .results__intro h2,
  .testimonial__intro h2,
  .faq__intro h2,
  .contact__copy h2 {
    font-size: clamp(30px, 3.2vw, 40px) !important;
    line-height: 1.1 !important;
  }

  .project-book {
    width: clamp(170px, 16vw, 220px);
  }

  .result-card {
    min-height: 360px;
    padding: 24px 22px;
  }

  .result-card__stat {
    font-size: clamp(42px, 4vw, 56px);
    margin-top: 24px;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 28px 26px;
  }

  .premium__art {
    max-width: 420px;
    padding-top: 12px;
  }

  .process__visual>img {
    max-width: 420px;
  }

  .problem .open-book {
    min-height: 320px;
  }

  .problem .open-book img {
    width: min(480px, 105%);
    margin-left: -4%;
  }

  .problem-copy h2 {
    font-size: clamp(32px, 3.4vw, 42px) !important;
  }

  .contact-form {
    padding: 28px 24px;
  }
}

@media (max-width: 1280px) {
  .shell {
    width: min(1080px, calc(100% - 36px));
  }

  .trust h2 {
    font-size: 36px;
  }

  .problem,
  .premium,
  .services,
  .projects,
  .different,
  .process,
  .results,
  .testimonial,
  .faq,
  .contact {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .different-card {
    min-height: 280px;
    padding: 28px 20px;
  }

  .services .service-card {
    min-height: 260px;
    padding: 28px 22px;
  }

  .problem .open-book img {
    width: min(420px, 100%);
    margin-left: 0;
  }
}

@media (max-width: 1199.98px) {
  .problem .split {
    flex-wrap: wrap !important;
  }

  .problem .split>.problem-copy,
  .problem .split>.open-book {
    flex: 0 0 100%;
    width: 100%;
  }

  .problem .open-book {
    max-width: 420px;
    margin: 24px auto 0;
    height: 360px;
  }

  .testimonial-carousel {
    width: 100%;
    margin-left: 0;
  }

  .testimonial__content {
    --testimonial-indent: 20px;
  }
}

@media (max-width: 991.98px) {
  .shell {
    width: min(100% - 32px, 920px);
  }

  .shell.container {
    width: min(100% - 32px, 920px);
    max-width: 920px;
  }

  .trust h2 {
    font-size: 32px;
  }

  .premium__art {
    max-width: 360px;
    margin: 0 auto;
  }

  .premium__right {
    margin-top: 8px !important;
  }

  .premium__left,
  .premium__right {
    text-align: center;
  }

  .premium__left h2,
  .premium__heading-copy,
  .premium__intro,
  .premium__aside,
  .premium__below-cards {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-cards {
    text-align: left;
  }

  .problem .split {
    flex-wrap: wrap !important;
  }

  .problem .split>.problem-copy,
  .problem .split>.open-book {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100%;
  }

  .problem-copy {
    text-align: center;
  }

  .problem-copy>.eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .problem-copy h2,
  .problem-copy>p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .problem .open-book {
    max-width: 420px;
    margin: 12px auto 0;
    justify-content: center;
  }

  .problem .open-book img {
    width: min(420px, 100%);
    margin-left: 0;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 8px;
  }

  .different__lede-wrap {
    padding-top: 0;
  }

  .result-card,
  .different-card,
  .service-card,
  .testimonial-card {
    min-height: 0;
  }
}

/* =========================================================
   Full mobile + tablet responsive pass (cascade wins)
   ========================================================= */
@media (max-width: 767.98px) {

  .shell,
  .shell.container {
    width: calc(100% - 28px);
    max-width: none;
  }

  .site-header .brand {
    width: 132px;
    height: 38px;
  }

  .trust {
    padding-top: 48px;
  }

  .trust h2 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.12;
  }

  .trust p,
  .trust .last-para {
    max-width: 520px;
    font-size: 14px;
  }

  .logos__set {
    min-width: 720px;
    gap: 56px;
  }

  .problem,
  .premium,
  .services,
  .projects,
  .different,
  .process,
  .results,
  .testimonial,
  .faq,
  .contact,
  .site-footer {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .problem-copy h2,
  .premium__left h2,
  .services__heading,
  .projects__intro h2,
  .different__head h2,
  .process__visual h2,
  .results__intro h2,
  .testimonial__intro h2,
  .faq__intro h2,
  .contact__copy h2 {
    font-size: clamp(28px, 7vw, 36px) !important;
    line-height: 1.12 !important;
  }

  .services__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .services__lede {
    margin: 0 auto;
    max-width: 540px;
  }

  .services__title {
    margin: 0 auto;
  }

  .services .service-grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .premium-card {
    min-height: 0;
  }

  .project-book {
    width: clamp(140px, 38vw, 190px);
  }

  .projects-slider__track {
    animation-duration: 45s;
  }

  .different-card {
    padding: 26px 20px;
  }

  .testimonial__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial__cover {
    max-width: 340px;
    margin: 0 auto;
  }

  .testimonial__content {
    --testimonial-indent: 0;
  }

  .testimonial__intro {
    text-align: center;
    padding-left: 0;
  }

  .testimonial__intro>.eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-nav {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .faq-item__q {
    font-size: 15px;
  }

  .contact__copy {
    text-align: center;
    margin-bottom: 8px;
  }

  .contact__copy>.eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .button,
  .results__cta,
  .projects__cta,
  .faq__cta,
  .premium__cta {
    min-height: 48px;
  }
}

@media (max-width: 575.98px) {

  .shell,
  .shell.container {
    width: calc(100% - 24px);
  }

  .site-header {
    height: 68px;
  }

  .site-header .brand {
    width: 118px;
    height: 34px;
  }

  .nav nav {
    padding: 8px 16px 16px;
  }

  .trust h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .logos {
    height: 88px;
  }

  .logos__set {
    min-width: 640px;
    gap: 40px;
  }

  .problem,
  .premium,
  .services,
  .projects,
  .different,
  .process,
  .results,
  .testimonial,
  .faq,
  .contact {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .problem .open-book {
    min-height: 200px;
    height: auto;
    max-width: 100%;
  }

  .problem .open-book img {
    width: 100%;
    max-width: 340px;
  }

  .services .service-grid.row {
    grid-template-columns: 1fr !important;
  }

  .services .service-card,
  .premium-card,
  .different-card,
  .result-card,
  .testimonial-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .premium__cta,
  .projects__action .button,
  .results__cta,
  .faq__action .button,
  .contact-form button[type="submit"] {
    width: 100%;
    max-width: 100%;
  }

  .project-book {
    width: clamp(130px, 42vw, 170px);
  }

  .projects-slider {
    margin-bottom: 28px;
  }

  .different-card i img {
    width: 40px;
    height: 40px;
  }

  .result-card__stat {
    font-size: 44px;
  }

  .testimonial__cover {
    max-width: 280px;
  }

  .testimonial-card {
    padding: 28px 20px 24px;
  }

  .faq-item summary {
    gap: 12px;
  }

  .faq-item__q {
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .footer-brand img {
    width: min(160px, 70vw);
    height: auto;
  }

  .footer-payments {
    width: min(220px, 90vw);
    height: auto;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .footer__legal p {
    font-size: 12px;
  }
}

@media (max-width: 389.98px) {

  .premium-card h3,
  .different-card h3,
  .service-card h3 {
    font-size: 15px;
  }

  .button {
    font-size: 13px;
    padding: 12px 18px;
  }
}

/* Final Book Editing responsive pass — deliberately last in the cascade. */
body.service-page--book-editing {
  overflow-x: clip;
}

.service-page--book-editing main,
.service-page--book-editing main section,
.service-page--book-editing main .container,
.service-page--book-editing main .row,
.service-page--book-editing main [class*="col-"] {
  min-width: 0;
}

.service-page--book-editing main img,
.service-page--book-editing main svg {
  max-width: 100%;
}

/* Keep the Figma book artwork above a strong, visible section gradient. */
.service-page--book-editing .services.services--with-bg {
  background-color: #edf7ff;
  background-image:
    url("../img/editing-services-bg.png"),
    linear-gradient(180deg, #fff0fa 0%, #f7effd 43%, #eaf7ff 100%);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
}

.service-page--book-editing .illustration-audience {
  background-color: #fffce5;
  background-image:
    url("../img/editing-audience-bg.png"),
    linear-gradient(180deg, #edf8ff 0%, #f6fbf3 52%, #fffbd8 100%);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
}

.service-page--book-editing .illustration-testimonials {
  background-color: #effbf2;
  background-image:
    url("../img/editing-audience-bg.png"),
    linear-gradient(180deg, #fffbdc 0%, #f4fbe4 48%, #e7faef 100%);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
}

.service-page--book-editing .page-hero__inner,
.service-page--book-editing .page-hero h1,
.service-page--book-editing .page-hero__description,
.service-page--book-editing .page-hero__prompt {
  width: 100%;
}

.service-page--book-editing .start-early__art,
.service-page--book-editing .process__visual,
.service-page--book-editing .illustration-audience__tabs,
.service-page--book-editing .illustration-trust__intro,
.service-page--book-editing .contact-form {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .service-page--book-editing .services__heading {
    font-size: 60px;
    line-height: 68px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .service-page--book-editing .page-hero h1 {
    font-size: clamp(54px, 6vw, 68px);
  }

  .service-page--book-editing .start-early__grid {
    --bs-gutter-x: 3rem;
  }

  .service-page--book-editing .start-early__art {
    height: 470px;
    transform: none;
  }

  .service-page--book-editing .start-early__art img {
    left: 12px;
    width: calc(100% - 24px);
    height: 440px;
  }

  .service-page--book-editing .start-early__art strong {
    right: 0;
  }

  .service-page--book-editing .start-early__copy h2.start-early__title {
    font-size: 48px;
    line-height: 1.08;
  }

  .service-page--book-editing .services__heading {
    font-size: 44px;
    line-height: 1.08;
  }

  .service-page--book-editing .services__lede {
    font-size: 15px;
  }

  .service-page--book-editing .services .service-card {
    padding: 24px;
  }

  .service-page--book-editing .services .service-card h3 {
    font-size: 19px;
  }

  .service-page--book-editing .services .service-card p {
    font-size: 14px;
    line-height: 1.42;
  }

  .service-page--book-editing .illustration-audience__tab span {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  .service-page--book-editing .page-hero {
    padding: 72px 0 78px;
  }

  .service-page--book-editing .page-hero h1 {
    max-width: 860px;
    margin-inline: auto;
  }

  .service-page--book-editing .start-early,
  .service-page--book-editing .services,
  .service-page--book-editing .book-editing-process,
  .service-page--book-editing .illustration-audience,
  .service-page--book-editing .illustration-trust,
  .service-page--book-editing .illustration-testimonials {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .service-page--book-editing .start-early__art {
    width: min(100%, 600px);
    height: 500px;
    margin-inline: auto;
    transform: none;
  }

  .service-page--book-editing .start-early__art img {
    top: 18px;
    left: 5%;
    width: 90%;
    height: 455px;
  }

  .service-page--book-editing .start-early__art span {
    top: 18px;
    left: 8%;
  }

  .service-page--book-editing .start-early__art strong {
    right: 4%;
    bottom: 10px;
  }

  .service-page--book-editing .start-early__copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .service-page--book-editing .services__head {
    margin-bottom: 34px;
  }

  .service-page--book-editing .services__title,
  .service-page--book-editing .services__lede {
    margin-inline: auto;
    text-align: center;
  }

  .service-page--book-editing .services .service-card {
    min-height: 350px;
  }

  .service-page--book-editing .process__visual {
    width: min(100%, 720px);
    margin: 0 auto 42px;
  }

  .service-page--book-editing .process__visual>img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
  }

  .service-page--book-editing .process__steps {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .service-page--book-editing .illustration-section-head {
    align-items: start !important;
  }

  .service-page--book-editing .illustration-audience__tabs {
    width: 100%;
  }

  .service-page--book-editing .illustration-trust__intro,
  .service-page--book-editing .illustration-trust__grid,
  .service-page--book-editing .illustration-trust__closing {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-page--book-editing .illustration-trust__intro img {
    width: min(100%, 593px);
  }

  .service-page--book-editing .illustration-testimonials__slide {
    gap: 18px;
  }

  .service-page--book-editing .faq__intro,
  .service-page--book-editing .faq__list,
  .service-page--book-editing .contact__copy,
  .service-page--book-editing .contact-form {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .service-page--book-editing .page-hero {
    padding: 60px 0 66px;
  }

  .service-page--book-editing .page-hero h1 {
    font-size: clamp(38px, 9.5vw, 52px);
  }

  .service-page--book-editing .start-early,
  .service-page--book-editing .services,
  .service-page--book-editing .book-editing-process,
  .service-page--book-editing .illustration-audience,
  .service-page--book-editing .illustration-trust,
  .service-page--book-editing .illustration-testimonials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-page--book-editing .start-early__art {
    height: 440px;
  }

  .service-page--book-editing .start-early__art img {
    height: 395px;
  }

  .service-page--book-editing .start-early__copy h2.start-early__title,
  .service-page--book-editing .services__heading,
  .service-page--book-editing .process__visual h2,
  .service-page--book-editing .illustration-section-head h2,
  .service-page--book-editing .illustration-trust h2,
  .service-page--book-editing .illustration-testimonials h2 {
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1.08;
  }

  .service-page--book-editing .services .service-card {
    min-height: 0;
  }

  .service-page--book-editing .illustration-audience__nav {
    min-height: 250px;
    padding: 18px;
  }

  .service-page--book-editing .illustration-audience__panel {
    min-height: 310px;
    padding: 24px;
  }

  .service-page--book-editing .illustration-testimonials__slide {
    grid-template-columns: 1fr;
  }

  .service-page--book-editing .illustration-quote {
    min-height: 315px;
  }

  .service-page--book-editing .faq-item summary {
    padding-right: 4px;
  }
}

@media (max-width: 575.98px) {
  .service-page--book-editing .page-hero {
    padding: 48px 0 56px;
  }

  .service-page--book-editing .page-hero__eyebrow,
  .service-page--book-editing .section-pill,
  .service-page--book-editing .services__title>.eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .service-page--book-editing .page-hero__description,
  .service-page--book-editing .page-hero__prompt {
    font-size: 15px;
  }

  .service-page--book-editing .start-early,
  .service-page--book-editing .services,
  .service-page--book-editing .book-editing-process,
  .service-page--book-editing .illustration-audience,
  .service-page--book-editing .illustration-trust,
  .service-page--book-editing .illustration-testimonials {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .service-page--book-editing .start-early__art {
    height: 350px;
  }

  .service-page--book-editing .start-early__art img {
    top: 22px;
    left: 4%;
    width: 92%;
    height: 305px;
    border-radius: 15px;
  }

  .service-page--book-editing .start-early__art span {
    top: 18px;
    left: 6%;
    padding: 8px 14px;
    font-size: 12px;
  }

  .service-page--book-editing .start-early__art strong {
    right: 2%;
    bottom: 8px;
    width: 190px;
    height: auto;
    min-height: 68px;
    padding: 10px 16px 10px 28px;
    font-size: 17px;
    line-height: 1.2;
  }

  .service-page--book-editing .start-early__art strong small {
    font-size: 13px;
  }

  .service-page--book-editing .start-early__copy h2.start-early__title,
  .service-page--book-editing .services__heading,
  .service-page--book-editing .process__visual h2,
  .service-page--book-editing .illustration-section-head h2,
  .service-page--book-editing .illustration-trust h2,
  .service-page--book-editing .illustration-testimonials h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .service-page--book-editing .start-early__copy>p,
  .service-page--book-editing .start-early__copy li,
  .service-page--book-editing .services__lede,
  .service-page--book-editing .process__lede,
  .service-page--book-editing .illustration-section-head p,
  .service-page--book-editing .illustration-trust__intro p,
  .service-page--book-editing .illustration-trust__closing {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-page--book-editing .services .service-card {
    padding: 24px 20px;
  }

  .service-page--book-editing .services .service-card>i {
    width: 54px;
    height: 54px;
  }

  .service-page--book-editing .services .service-card>i img {
    width: 34px;
    height: 34px;
  }

  .service-page--book-editing .process__visual>img {
    max-height: 440px;
  }

  .service-page--book-editing .illustration-audience__nav {
    min-height: 0;
    flex-direction: column;
    padding: 14px;
    border-radius: 16px 16px 0 0;
  }

  .service-page--book-editing .illustration-audience__tab,
  .service-page--book-editing .illustration-audience__tab.is-active {
    min-height: 58px;
    margin-top: 0;
    transform: none;
  }

  .service-page--book-editing .illustration-audience__tab span {
    writing-mode: initial;
    font-size: 14px;
    text-align: left;
  }

  .service-page--book-editing .illustration-audience__panel {
    min-height: 285px;
    border-radius: 0 0 16px 16px;
  }

  .service-page--book-editing .illustration-trust__grid {
    --bs-gutter-y: 0.9rem;
  }

  .service-page--book-editing .illustration-trust__card,
  .service-page--book-editing .illustration-trust__grid .col-12 .illustration-trust__card {
    min-height: 0;
    padding: 18px;
  }

  .service-page--book-editing .illustration-quote {
    min-height: 285px;
    padding: 28px 22px;
  }

  .service-page--book-editing .illustration-quote p {
    max-width: 100%;
    margin-top: 46px;
    font-size: 14px;
  }

  .service-page--book-editing .faq-item summary {
    gap: 12px;
  }

  .service-page--book-editing .faq-item__q {
    font-size: 14px;
    line-height: 1.4;
  }

  .service-page--book-editing .contact-form {
    padding: 22px 16px;
  }

  .service-page--book-editing .contact-form__cta,
  .service-page--book-editing .page-hero__cta,
  .service-page--book-editing .illustration-trust .button,
  .service-page--book-editing .illustration-testimonials .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 389.98px) {
  .service-page--book-editing .start-early__art {
    height: 310px;
  }

  .service-page--book-editing .start-early__art img {
    height: 270px;
  }

  .service-page--book-editing .start-early__art span {
    max-width: 165px;
  }

  .service-page--book-editing .start-early__art strong {
    width: 168px;
    padding-left: 20px;
    font-size: 15px;
  }

  .service-page--book-editing .illustration-audience__panel {
    padding: 20px 18px;
  }
}

/* Shared Services partial: clean Bootstrap-aligned tablet/mobile cards. */
.services .service-grid>.services__cell {
  display: flex;
  min-width: 0;
}

.services .service-card {
  min-width: 0;
  overflow: hidden;
}

.services .service-card>i {
  overflow: hidden;
}

.services .service-card>i img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.services .service-card h3,
.services .service-card p,
.services .service-card li,
.services .service-card a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .services .service-grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .services .service-card {
    min-height: 100%;
    padding: 28px 24px;
  }

  .services .service-card h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .services .service-card p,
  .services .service-card__points {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 767.98px) {
  .services__head {
    margin-bottom: 30px;
  }

  .services__intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .services__title {
    order: 1;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .services__lede {
    order: 2;
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .services__title>.eyebrow {
    max-width: 100%;
    min-height: 38px;
    margin-right: auto;
    margin-left: auto;
    padding: 8px 20px;
    white-space: normal;
    text-align: center;
  }

  .services__heading {
    max-width: 100%;
    font-size: clamp(34px, 8.5vw, 46px);
    line-height: 1.08;
    text-align: center;
  }

  .services__heading br {
    display: none;
  }

  .services .service-grid.row,
  .service-page--book-editing .services .service-grid.row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  .services .service-grid>.services__cell,
  .services .service-grid>.services__cell[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .services .service-card,
  .service-page--book-editing .services .service-card {
    width: 100%;
    min-height: 0;
    padding: 26px 22px;
    border-radius: 16px;
  }

  .services .service-card>i,
  .service-page--book-editing .services .service-card>i {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 11px;
  }

  .services .service-card>i img,
  .service-page--book-editing .services .service-card>i img {
    width: 34px;
    height: 34px;
  }

  .services .service-card h3,
  .service-page--book-editing .services .service-card h3 {
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1.3;
  }

  .services .service-card p,
  .service-page--book-editing .services .service-card p,
  .services .service-card__points {
    font-size: 14px;
    line-height: 1.58;
  }

  .services .service-card a {
    padding-top: 20px;
  }
}

@media (max-width: 479.98px) {
  .services__head {
    margin-bottom: 24px;
  }

  .services__heading {
    font-size: clamp(30px, 9.5vw, 38px);
  }

  .services__lede {
    font-size: 14px;
    line-height: 1.55;
  }

  .services .service-card,
  .service-page--book-editing .services .service-card {
    padding: 22px 18px;
  }

  .services .service-card>i,
  .service-page--book-editing .services .service-card>i {
    width: 48px;
    height: 48px;
  }

  .services .service-card>i img,
  .service-page--book-editing .services .service-card>i img {
    width: 31px;
    height: 31px;
  }

  .services .service-card h3,
  .service-page--book-editing .services .service-card h3 {
    font-size: 17px;
  }

  .services .service-card p,
  .service-page--book-editing .services .service-card p,
  .services .service-card__points {
    font-size: 13.5px;
  }
}

/* Professional responsive header and navigation — final cascade layer. */
html {
  scroll-padding-top: 112px;
}

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

.site-header {
  isolation: isolate;
}

.site-header .nav {
  z-index: 3;
}

.menu__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 18px;
}

.menu__icon>span {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 0.25s ease,
    opacity 0.2s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu__icon>span:nth-child(1) {
  top: 1px;
}

.menu__icon>span:nth-child(2) {
  top: 8px;
}

.menu__icon>span:nth-child(3) {
  top: 15px;
}

.menu.is-active .menu__icon>span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.menu.is-active .menu__icon>span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.menu.is-active .menu__icon>span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.nav-close,
.nav-mobile-cta,
.nav-backdrop {
  display: none;
}

@media (min-width: 1200px) {
  .site-header {
    height: 88px;
  }

  .site-header .nav nav {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    max-height: none;
    padding: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header .menu,
  .site-header .nav-mobile-cta,
  .site-header .nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  html {
    scroll-padding-top: 88px;
  }

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

  .site-header {
    height: 76px;
    overflow: visible;
  }

  .site-header .nav {
    width: min(100% - 36px, 1120px);
    max-width: none;
  }

  /* The header uses a transform for its scroll animation. A transformed
   * ancestor traps fixed children, which can leave the drawer/backdrop stuck
   * inside the header on touch devices. Remove it only while the drawer is
   * open and raise the navigation above page content. */
  .site-header.is-menu-open {
    z-index: 1200;
    transform: none !important;
  }

  .site-header.is-menu-open .nav {
    z-index: 1202;
  }

  .site-header.is-menu-open .nav-backdrop {
    z-index: 1201;
  }

  .site-header .brand {
    position: relative;
    z-index: 230;
    width: 150px;
    height: 43px;
  }

  .site-header .header-btn {
    display: none;
  }

  .site-header .menu {
    position: relative;
    z-index: 230;
    display: inline-grid;
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin: 0 0 0 auto;
    padding: 0;
    place-items: center;
    border: 1px solid #e9d5ff;
    border-radius: 50%;
    color: #7440b5;
    background: #f7efff;
    box-shadow: 0 7px 18px rgba(62, 48, 80, 0.09);
    transition:
      color 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .site-header .menu:hover,
  .site-header .menu:focus-visible,
  .site-header .menu.is-active {
    border-color: #a855f7;
    color: #fff;
    background: #a855f7;
    outline: none;
  }

  .site-header .menu:active {
    transform: scale(0.96);
  }

  .site-header.is-menu-open .menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header .nav nav {
    position: fixed;
    z-index: 210;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(430px, 100vw);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 98px 26px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-left: 1px solid #eee1f3;
    border-bottom: 0;
    background:
      linear-gradient(180deg, rgba(249, 243, 255, 0.96), #fff 22%),
      #fff;
    box-shadow: -24px 0 60px rgba(40, 24, 58, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0.42s;
  }

  .site-header .nav-close {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid #d8b4fe;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #b75af5 0%, #8b5cf6 100%);
    box-shadow: 0 10px 26px rgba(111, 55, 166, 0.25);
    cursor: pointer;
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      filter 0.22s ease;
  }

  .site-header .nav-close::before,
  .site-header .nav-close::after {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .site-header .nav-close::before {
    transform: rotate(45deg);
  }

  .site-header .nav-close::after {
    transform: rotate(-45deg);
  }

  .site-header .nav-close:hover,
  .site-header .nav-close:focus-visible {
    filter: brightness(1.06);
    outline: 3px solid rgba(168, 85, 247, 0.22);
    outline-offset: 3px;
    transform: rotate(4deg) scale(1.04);
    box-shadow: 0 14px 32px rgba(111, 55, 166, 0.32);
  }

  .site-header .nav-close:active {
    transform: scale(0.95);
  }

  .site-header .nav nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-header .nav nav>.nav-link,
  .site-header .nav nav>a.nav-link,
  .site-header .nav-item--dropdown .nav-link--toggle {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 13px 14px;
    border: 0;
    border-radius: 12px;
    color: #3e3050;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    transition:
      color 0.2s ease,
      background 0.2s ease,
      transform 0.2s ease;
  }

  .site-header .nav nav>.nav-link:hover,
  .site-header .nav nav>.nav-link:focus-visible,
  .site-header .nav-item--dropdown .nav-link--toggle:hover,
  .site-header .nav-item--dropdown .nav-link--toggle:focus-visible {
    color: #7c3aed;
    background: rgba(168, 85, 247, 0.08);
    outline: none;
    transform: translateX(2px);
  }

  .site-header .nav nav>a.nav-link.is-active,
  .site-header .nav nav .nav-link--toggle.is-active {
    color: #7c3aed;
    background: rgba(168, 85, 247, 0.1);
    font-weight: 600;
  }

  .site-header .nav nav>a.nav-link.is-active::after,
  .site-header .nav nav .nav-link--toggle.is-active::after {
    top: 50%;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 6px;
    height: 6px;
    display: block;
    transform: translateY(-50%);
  }

  .site-header .nav-item--dropdown {
    width: 100%;
    border: 0;
  }

  .site-header .nav-link__chevron {
    width: 16px;
    height: 16px;
  }

  .site-header .nav-dropdown,
  .site-header .nav-item--dropdown.is-open .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    display: block !important;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition:
      max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease,
      visibility 0.35s;
  }

  .site-header .nav-item--dropdown.is-open .nav-dropdown {
    max-height: 620px;
    padding-bottom: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .nav-dropdown__panel {
    margin: 4px 0 0;
    padding: 8px;
    border-color: #eadcf2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  }

  .site-header .nav-dropdown__list {
    display: grid;
    gap: 2px;
  }

  .site-header .nav-dropdown__link {
    min-height: 45px;
    padding: 10px 12px !important;
    border-radius: 10px;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
  }

  .site-header .nav-dropdown__arrow {
    opacity: 0.65;
    transform: none;
  }

  .site-header .nav-mobile-cta {
    display: inline-flex !important;
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    padding: 12px 18px !important;
    border: 1px solid #a855f7 !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: #a855f7 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center;
  }

  .site-header .nav-mobile-cta:hover,
  .site-header .nav-mobile-cta:focus-visible {
    color: #fff !important;
    background: #8f3fe1 !important;
    transform: none !important;
  }

  .site-header .nav-backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(31, 20, 43, 0.42);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.35s;
  }

  .site-header .nav-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }
}

@media (max-width: 575.98px) {
  html {
    scroll-padding-top: 78px;
  }

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

  .site-header {
    height: 70px;
  }

  .site-header .nav {
    width: calc(100% - 28px);
  }

  .site-header .brand {
    width: 126px;
    height: 36px;
  }

  .site-header .menu {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .site-header .nav nav {
    width: 100vw;
    padding: 86px 16px 24px;
    border-left: 0;
  }

  .site-header .nav nav>.nav-link,
  .site-header .nav nav>a.nav-link,
  .site-header .nav-item--dropdown .nav-link--toggle {
    min-height: 50px;
    padding: 12px;
    font-size: 15px;
  }

  .site-header .nav-dropdown__link {
    min-height: 43px;
    padding: 9px 10px !important;
    font-size: 13px !important;
  }

  .site-header .nav-mobile-cta {
    margin-top: 12px;
  }
}

@media (max-width: 389.98px) {
  .site-header .nav {
    width: calc(100% - 22px);
  }

  .site-header .brand {
    width: 116px;
    height: 33px;
  }

  .site-header .menu {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .nav nav {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-header .nav nav,
  .site-header .nav-dropdown,
  .site-header .nav-backdrop,
  .site-header .menu,
  .menu__icon>span {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
  }
}




#book-illustration-audience-title {
  margin-bottom: 20px;
}

/* Book Publishing keeps an independent audience layout so changes to the
 * shared illustration-audience partial cannot alter this service page. */
.book-publishing-audience {
  --publishing-ink: #3e3050;
  --publishing-muted: #5f556a;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 250, 255, 0.8), rgba(255, 252, 228, 0.82)),
    url("../img/premium-bg.png") center / cover no-repeat;
}

.book-publishing-audience>.container {
  max-width: 1060px;
}

.book-publishing-audience h2 {
  margin: 0;
  color: var(--publishing-ink);
  font: 700 clamp(42px, 4vw, 60px) / 1.13 var(--serif);
  letter-spacing: -0.035em;
}

.book-publishing-audience__intro {
  color: var(--publishing-muted);
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

.book-publishing-audience__list {
  --bs-gutter-y: 7px;
}

.book-publishing-audience__item {
  position: relative;
  min-height: 80px;
  overflow: hidden;
  border: 1px solid var(--publishing-item-border, #c7e9fa);
  border-radius: 10px;
  color: var(--publishing-ink);
  background: var(--publishing-item-bg, rgba(235, 249, 255, 0.86));
  padding: 1rem;
  transition:
    translate 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: translate;
}

.book-publishing-audience__item::after {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--publishing-item-accent, #2b9fd1);
  content: "";
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-publishing-audience__item--orange {
  --publishing-item-border: #f8dfbe;
  --publishing-item-bg: rgba(255, 249, 239, 0.9);
}

.book-publishing-audience__item--purple,
.book-publishing-audience__item--lilac {
  --publishing-item-border: #e4d9f7;
  --publishing-item-bg: rgba(246, 240, 255, 0.9);
}

.book-publishing-audience__item--pink {
  --publishing-item-border: #f4d1e4;
  --publishing-item-bg: rgba(255, 235, 246, 0.9);
}

.book-publishing-audience__item--green {
  --publishing-item-border: #d0ecd5;
  --publishing-item-bg: rgba(239, 255, 238, 0.9);
}

.book-publishing-audience__item--yellow {
  --publishing-item-border: #FEF08A;
  --publishing-item-bg: #FEFAD6;
}

.book-publishing-audience__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 45px;
  margin: 0 28px 0 38px;
  border-right: 1px solid currentColor;
  color: var(--publishing-item-accent, #2b9fd1);
  font: 400 43.805px / 1 var(--serif);
  letter-spacing: -0.876px;
}

.book-publishing-audience__number > span {
  --publishing-number-position: translate(-27px, -5px);
  display: block;
  transform: var(--publishing-number-position);
}

.book-publishing-audience__item--orange {
  --publishing-item-accent: #ed7a32;
}

.book-publishing-audience__item--purple,
.book-publishing-audience__item--lilac {
  --publishing-item-accent: #8760df;
}

.book-publishing-audience__item--pink {
  --publishing-item-accent: #e2509a;
}

.book-publishing-audience__item--green {
  --publishing-item-accent: #20a55e;
}

.book-publishing-audience__item--yellow {
  --publishing-item-accent: #CA8A04;
}

.book-publishing-audience__item h3 {
  margin: 0;
  color: var(--publishing-ink);
  font: 600 19px / 1.25 var(--serif);
}

.book-publishing-audience__item p {
  margin: 0;
  color: var(--publishing-muted);
  font-size: 12.5px;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .book-publishing-audience__item:hover {
    translate: 0 -6px;
    box-shadow: 0 16px 32px rgba(62, 48, 80, 0.12);
  }

  .book-publishing-audience__item:hover::after {
    opacity: 1;
    transform: scaleY(1);
  }
}

.book-publishing-audience__item:focus-within {
  translate: 0 -6px;
  box-shadow: 0 16px 32px rgba(62, 48, 80, 0.12);
}

.book-publishing-audience__item:focus-within::after {
  opacity: 1;
  transform: scaleY(1);
}

html.aos-enabled [data-aos].aos-animate .book-publishing-audience__number > span {
  animation: publishing-audience-number-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.aos-enabled [data-aos].aos-animate .book-publishing-audience__item h3 {
  animation: publishing-audience-copy-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

html.aos-enabled [data-aos].aos-animate .book-publishing-audience__item p {
  animation: publishing-audience-copy-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

@keyframes publishing-audience-number-in {
  from {
    opacity: 0;
    transform: translate(-38px, 4px) scale(0.72);
  }

  to {
    opacity: 1;
    transform: var(--publishing-number-position) scale(1);
  }
}

@keyframes publishing-audience-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .book-publishing-audience {
    padding: 76px 0;
  }

  .book-publishing-audience > .container {
    max-width: 760px;
  }

  .book-publishing-audience__item {
    min-height: 76px;
  }
}

@media (max-width: 767.98px) {
  .book-publishing-audience {
    padding: 58px 0;
  }

  .book-publishing-audience > .container {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .book-publishing-audience > .container > .row:first-child {
    --bs-gutter-x: 0;
    --bs-gutter-y: 16px;
    margin-right: 0;
    margin-left: 0;
  }

  .book-publishing-audience > .container > .row:first-child > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .book-publishing-audience h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .book-publishing-audience__intro {
    max-width: 36rem;
    font-size: 15px;
    line-height: 1.58;
    text-align: left;
  }

  .book-publishing-audience__list {
    --bs-gutter-x: 0;
    --bs-gutter-y: 10px;
    margin-right: 0;
    margin-left: 0;
  }

  .book-publishing-audience__list > .col-12 {
    padding-right: 0;
    padding-left: 0;
  }

  .book-publishing-audience__item {
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .book-publishing-audience__item-layout {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 7px;
    align-items: start !important;
    width: 100%;
    height: auto !important;
    margin: 0;
  }

  .book-publishing-audience__item-layout > * {
    width: auto;
    max-width: none;
    padding: 0;
  }

  .book-publishing-audience__number-col {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .book-publishing-audience__title-col {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .book-publishing-audience__copy-col {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }

  .book-publishing-audience__number {
    width: 52px;
    min-height: 100%;
    height: 100%;
    margin: 0;
    padding-right: 12px;
    font-size: 30px;
  }

  .book-publishing-audience__number > span {
    --publishing-number-position: translate(0, -1px);
    transform: var(--publishing-number-position);
  }

  .book-publishing-audience__item h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .book-publishing-audience__item p {
    max-width: none;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 575.98px) {
  .book-publishing-audience {
    padding: 52px 0;
  }

  .book-publishing-audience > .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .book-publishing-audience h2 {
    font-size: clamp(31px, 9.2vw, 40px);
  }

  .book-publishing-audience__item {
    padding: 15px 14px;
  }

  .book-publishing-audience__item-layout {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
  }

  .book-publishing-audience__number {
    width: 46px;
    padding-right: 10px;
    font-size: 27px;
  }

  .book-publishing-audience__item h3 {
    font-size: 16px;
  }
}

@media (max-width: 389.98px) {
  .book-publishing-audience {
    padding: 46px 0;
  }

  .book-publishing-audience__intro {
    font-size: 14px;
  }

  .book-publishing-audience__item {
    padding: 14px 12px;
  }

  .book-publishing-audience__item-layout {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 10px;
  }

  .book-publishing-audience__number {
    width: 42px;
    padding-right: 8px;
    font-size: 25px;
  }

  .book-publishing-audience__item p {
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-publishing-audience__item,
  .book-publishing-audience__item:hover,
  .book-publishing-audience__item:focus-within {
    translate: none;
    transition: none;
  }

  .book-publishing-audience__item::after,
  .book-publishing-audience__number > span,
  .book-publishing-audience__item h3,
  .book-publishing-audience__item p {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }
}

/* Unified responsive eyebrow scale — final cascade layer. */
:root {
  --eyebrow-responsive-size: 18px;
}

.eyebrow,
.eyebrow::after,
.section-pill,
.page-hero__eyebrow,
.services-hub__eyebrow {
  font-size: var(--eyebrow-responsive-size) !important;
  line-height: 1.25 !important;
}

@media (max-width: 1199.98px) {
  :root {
    --eyebrow-responsive-size: 16px;
  }

  .eyebrow-parent,
  .section-pill,
  .page-hero__eyebrow {
    min-height: 42px !important;
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}

@media (max-width: 991.98px) {
  :root {
    --eyebrow-responsive-size: 15px;
  }

  .eyebrow-parent,
  .section-pill,
  .page-hero__eyebrow {
    min-height: 40px !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --eyebrow-responsive-size: 14px;
  }

  .eyebrow-parent,
  .section-pill,
  .page-hero__eyebrow {
    min-height: 36px !important;
    padding: 8px 16px !important;
  }
}

/* Amazon page: clean responsive layouts for Challenge + End-to-End Support. */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-page--amazon-book-marketing .start-early {
    padding: 72px 0 80px;
  }

  .service-page--amazon-book-marketing .start-early__grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 3rem;
  }

  .service-page--amazon-book-marketing .start-early__art {
    width: min(520px, calc(100% - 56px));
    height: 430px;
    margin: 0 auto;
    transform: none;
  }

  .service-page--amazon-book-marketing .start-early__art img {
    top: 18px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 38px);
  }

  .service-page--amazon-book-marketing .start-early__art span {
    top: 0;
    left: 0;
    padding: 10px 20px;
    font-size: 15px;
    transform: rotate(-3deg);
  }

  .service-page--amazon-book-marketing .start-early__art strong {
    right: 0;
    bottom: 0;
    width: auto;
    min-width: 205px;
    height: auto;
    padding: 14px 22px;
    font-size: 18px;
    line-height: 1.25;
    transform: rotate(-3deg);
  }

  .service-page--amazon-book-marketing .start-early__art strong small {
    font-size: 14px;
  }

  .service-page--amazon-book-marketing .start-early__copy {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .service-page--amazon-book-marketing .start-early__copy h2.start-early__title {
    font-size: clamp(42px, 6vw, 52px);
    line-height: 1.1;
  }

  .service-page--amazon-book-marketing .services {
    padding: 72px 0 80px;
  }

  .service-page--amazon-book-marketing .services__head {
    margin-bottom: 36px;
  }

  .service-page--amazon-book-marketing .services__title,
  .service-page--amazon-book-marketing .services__lede {
    width: min(680px, 100%);
    margin-inline: auto;
    text-align: center;
  }

  .service-page--amazon-book-marketing .services__heading {
    font-size: clamp(40px, 6vw, 52px);
    line-height: 1.1;
    text-align: center;
  }

  .service-page--amazon-book-marketing .services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .service-page--amazon-book-marketing .services .service-grid.row>.services__cell {
    grid-column: auto !important;
  }

  .service-page--amazon-book-marketing .services .service-grid.row>.services__cell--wide {
    grid-column: 1 / -1 !important;
  }

  .service-page--amazon-book-marketing .services .service-card {
    min-height: 100%;
    padding: 28px 24px;
  }
}

@media (max-width: 767.98px) {
  .service-page--amazon-book-marketing .start-early {
    padding: 56px 0 64px;
  }

  .service-page--amazon-book-marketing .start-early__grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 2.5rem;
    gap: 0;
  }

  .service-page--amazon-book-marketing .start-early__art {
    width: min(420px, calc(100% - 20px));
    height: clamp(300px, 78vw, 370px);
    margin: 0 auto;
    transform: none;
  }

  .service-page--amazon-book-marketing .start-early__art img {
    top: 15px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 32px);
    transform: rotate(-1.5deg);
  }

  .service-page--amazon-book-marketing .start-early__art span {
    top: 0;
    left: 0;
    max-width: calc(100% - 20px);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.25;
    transform: rotate(-2.5deg);
  }

  .service-page--amazon-book-marketing .start-early__art strong {
    right: 0;
    bottom: 0;
    width: auto;
    min-width: 165px;
    height: auto;
    padding: 11px 15px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.2;
    transform: rotate(-2.5deg);
  }

  .service-page--amazon-book-marketing .start-early__art strong small {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1.2;
  }

  .service-page--amazon-book-marketing .start-early__copy {
    width: 100%;
    margin-top: 40px;
  }

  .service-page--amazon-book-marketing .start-early__copy h2.start-early__title {
    margin-bottom: 16px;
    font-size: clamp(34px, 9.5vw, 44px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em;
  }

  .service-page--amazon-book-marketing .start-early__copy>p,
  .service-page--amazon-book-marketing .start-early__copy b,
  .service-page--amazon-book-marketing .start-early__copy li {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.01em;
  }

  .service-page--amazon-book-marketing .start-early__copy ul {
    margin: 20px 0;
  }

  .service-page--amazon-book-marketing .start-early__copy li {
    margin: 10px 0;
    padding-left: 28px;
  }

  .service-page--amazon-book-marketing .services {
    padding: 56px 0 64px;
  }

  .service-page--amazon-book-marketing .services__head {
    margin-bottom: 28px;
  }

  .service-page--amazon-book-marketing .services__intro {
    gap: 16px;
  }

  .service-page--amazon-book-marketing .services__title,
  .service-page--amazon-book-marketing .services__lede {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .service-page--amazon-book-marketing .services__heading {
    font-size: clamp(34px, 9vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .service-page--amazon-book-marketing .services__lede {
    font-size: 15px;
    line-height: 1.6;
  }

  .service-page--amazon-book-marketing .services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  .service-page--amazon-book-marketing .services .service-grid.row>.services__cell,
  .service-page--amazon-book-marketing .services .service-grid.row>.services__cell--wide {
    grid-column: auto !important;
  }

  .service-page--amazon-book-marketing .services .service-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .service-page--amazon-book-marketing .services .service-card>i {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .service-page--amazon-book-marketing .services .service-card>i img {
    width: 32px;
    height: 32px;
  }

  .service-page--amazon-book-marketing .services .service-card h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  .service-page--amazon-book-marketing .services .service-card p,
  .service-page--amazon-book-marketing .services .service-card__points {
    font-size: 14px;
    line-height: 1.58;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .service-page--amazon-book-marketing .services .service-card__points {
    margin-top: 10px;
    padding-left: 18px;
  }
}

@media (max-width: 479.98px) {
  .service-page--amazon-book-marketing .start-early__art {
    width: calc(100% - 8px);
    height: clamp(270px, 82vw, 330px);
  }

  .service-page--amazon-book-marketing .start-early__art strong {
    min-width: 145px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .service-page--amazon-book-marketing .start-early__copy h2.start-early__title {
    font-size: clamp(30px, 10vw, 38px) !important;
  }

  .service-page--amazon-book-marketing .services .service-card {
    padding: 22px 18px;
  }
}

/* Project-wide mobile type scale: compact, readable, and consistent. */
@media (max-width: 767.98px) {
  main section p:not(.eyebrow):not(.section-pill):not(.page-hero__eyebrow) {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  main section article p,
  .service-card p,
  .service-card__points,
  .service-card__points li,
  .start-early__copy li,
  .page-hero__benefits li,
  .process__step p,
  .process-step__body p,
  .faq-item p,
  .illustration-card p,
  .illustration-trust__card p,
  .illustration-audience__panel p,
  .illustration-quote p,
  .result-card p,
  .different-card p,
  .premium-card p,
  .testimonial-card p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  .contact-form__field,
  .contact-form__field>span {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .contact-form__field>span {
    margin-bottom: 6px;
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .contact-form__field input,
  .contact-form__field select {
    min-height: 50px;
    padding: 12px 14px;
  }

  .contact-form__field textarea {
    min-height: 128px;
    padding: 12px 14px;
  }
}

/* Book Marketing Services: final below-hero mobile responsive pass. */
body.service-page--marketing-services {
  overflow-x: clip;
}

@scope (body.service-page--marketing-services) {

  :scope main,
  :scope main section,
  :scope main .container,
  :scope main .row,
  :scope main [class*="col-"] {
    min-width: 0;
  }

  :scope main img,
  :scope main svg {
    max-width: 100%;
  }

  @media (max-width: 767.98px) {
    .service-page--book-marketing .page-hero {
      padding: 48px 0 56px;
    }

    .service-page--book-marketing .page-hero__inner {
      width: calc(100% - 28px);
      max-width: 100%;
      margin-inline: auto;
    }

    .service-page--book-marketing .page-hero h1,
    .service-page--book-marketing .page-hero__description,
    .service-page--book-marketing .page-hero__prompt {
      width: 100%;
      max-width: 100%;
    }

    .service-page--book-marketing .page-hero h1 {
      font-size: clamp(32px, 9vw, 38px) !important;
      line-height: 1.08;
      overflow-wrap: anywhere;
    }

    .service-page--book-marketing .page-hero__description {
      font-size: 15px;
      line-height: 1.6;
    }

    .service-page--book-marketing .marketing-problem.py-5,
    .service-page--book-marketing .start-early,
    .service-page--book-marketing .services,
    .service-page--book-marketing .book-marketing-process,
    .service-page--book-marketing .illustration-audience,
    .service-page--book-marketing .illustration-trust,
    .service-page--book-marketing .illustration-testimonials,
    .service-page--book-marketing .faq,
    .service-page--book-marketing .contact {
      padding-top: 56px !important;
      padding-bottom: 64px !important;
    }

    .service-page--book-marketing .marketing-problem h2,
    .service-page--book-marketing .start-early__copy h2.start-early__title,
    .service-page--book-marketing .services__heading,
    .service-page--book-marketing .process__visual h2,
    .service-page--book-marketing .illustration-audience .illustration-section-head h2,
    .service-page--book-marketing .illustration-trust__intro h2,
    .service-page--book-marketing .illustration-testimonials__head h2,
    .service-page--book-marketing .faq__intro h2,
    .service-page--book-marketing .contact__copy h2 {
      max-width: 100%;
      font-size: clamp(30px, 8.5vw, 36px) !important;
      line-height: 1.12 !important;
      letter-spacing: -0.035em;
      overflow-wrap: anywhere;
    }

    .service-page--book-marketing .marketing-problem__intro.mb-5 {
      margin-bottom: 30px !important;
    }

    .service-page--book-marketing .marketing-problem__description {
      font-size: 15px !important;
      line-height: 1.6 !important;
    }

    .service-page--book-marketing .marketing-problem__grid {
      --bs-gutter-x: 0;
      --bs-gutter-y: 14px;
    }

    .service-page--book-marketing .marketing-problem__card {
      min-height: 0;
      padding: 21px 19px;
      border-radius: 18px;
    }

    .service-page--book-marketing .marketing-problem__card>span {
      margin-bottom: 20px;
    }

    .service-page--book-marketing .marketing-problem__card small {
      gap: 14px;
      font-size: 14px;
    }

    .service-page--book-marketing .marketing-problem__card h3 {
      font-size: 19px;
      line-height: 1.25;
    }

    .service-page--book-marketing .marketing-problem__card--statement {
      font-size: 14px;
      line-height: 1.58;
    }

    .service-page--book-marketing .start-early__grid {
      --bs-gutter-x: 0;
      --bs-gutter-y: 34px;
    }

    .service-page--book-marketing .start-early__art {
      width: min(100%, 430px);
      height: clamp(285px, 94vw, 390px);
      margin: 0 auto;
      transform: none;
    }

    .service-page--book-marketing .start-early__art img {
      top: 8px;
      left: 50%;
      width: calc(100% - 28px);
      height: calc(100% - 20px);
      transform: translateX(-50%) rotate(-2deg);
    }

    .service-page--book-marketing .start-early__art span {
      top: 0;
      left: 4px;
      padding: 8px 12px;
      border-radius: 12px;
      font-size: 13px;
      transform: rotate(-3deg);
    }

    .service-page--book-marketing .start-early__art strong {
      right: 0;
      bottom: 0;
      width: min(230px, 76%);
      height: auto;
      min-height: 70px;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 17px;
      line-height: 1.25;
      transform: rotate(-3deg);
    }

    .service-page--book-marketing .start-early__art strong small {
      margin-bottom: 2px;
      font-size: 13px;
    }

    .service-page--book-marketing .start-early__copy>p,
    .service-page--book-marketing .start-early__copy b {
      font-size: 15px !important;
      line-height: 1.6;
    }

    .service-page--book-marketing .start-early__copy ul {
      margin: 18px 0 20px;
    }

    .service-page--book-marketing .start-early__copy li {
      margin: 10px 0;
      padding-left: 27px;
      font-size: 14px !important;
      line-height: 1.55;
    }

    .service-page--book-marketing .services__head {
      margin-bottom: 28px;
    }

    .service-page--book-marketing .services__intro {
      gap: 16px;
      text-align: left;
    }

    .service-page--book-marketing .services__title,
    .service-page--book-marketing .services__lede {
      margin-right: 0;
      margin-left: 0;
    }

    .service-page--book-marketing .services__lede {
      font-size: 15px;
      line-height: 1.6;
    }

    .service-page--book-marketing .services .service-grid.row {
      gap: 14px !important;
    }

    .service-page--book-marketing .services .service-card {
      min-height: 0;
      padding: 22px 19px;
      border-radius: 18px;
    }

    .service-page--book-marketing .services .service-card>i {
      width: 52px;
      height: 52px;
      margin-bottom: 18px;
      border-radius: 12px;
      background-size: 32px;
    }

    .service-page--book-marketing .services .service-card h3 {
      font-size: 19px;
      line-height: 1.3;
    }

    .service-page--book-marketing .services .service-card p {
      font-size: 14px !important;
      line-height: 1.58 !important;
    }

    .service-page--book-marketing .book-marketing-process .process__grid {
      --bs-gutter-x: 0;
      --bs-gutter-y: 28px;
    }

    .service-page--book-marketing .process__visual {
      margin-bottom: 8px;
    }

    .service-page--book-marketing .process__visual>img {
      width: min(100%, 340px);
      max-height: 390px;
      margin: 24px auto 0;
      object-fit: contain;
    }

    .service-page--book-marketing .process__steps {
      margin: 0 0 0 10px;
    }

    .service-page--book-marketing .process__step {
      min-height: 0;
      padding: 0 0 46px 34px;
      text-align: left;
    }

    .service-page--book-marketing .process__step:last-child {
      min-height: 0;
    }

    .service-page--book-marketing .process__number {
      right: auto;
      left: -20px;
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .service-page--book-marketing .process__steps::before {
      top: 20px;
      right: auto;
      bottom: 90px;
      left: 0;
    }

    .service-page--book-marketing .process__step small {
      margin-bottom: 5px;
      font-size: 13px;
    }

    .service-page--book-marketing .process__step h3 {
      font-size: 18px;
    }

    .service-page--book-marketing .process__step p {
      max-width: none;
      margin: 0;
      font-size: 14px !important;
    }

    .service-page--book-marketing .illustration-audience .illustration-section-head {
      margin-bottom: 28px;
    }

    .service-page--book-marketing .illustration-audience__tabs {
      grid-template-columns: minmax(0, 1fr);
      min-height: 0;
      overflow: hidden;
      border-radius: 18px;
    }

    .service-page--book-marketing .illustration-audience__nav {
      min-height: 0;
      flex-direction: column;
      gap: 8px;
      padding: 14px;
      border-radius: 18px 18px 0 0;
    }

    .service-page--book-marketing .illustration-audience__tab,
    .service-page--book-marketing .illustration-audience__tab.is-active {
      min-height: 52px;
      flex-direction: row;
      align-items: center;
      padding: 9px 13px;
      margin-top: 0;
      transform: none;
    }

    .service-page--book-marketing .illustration-audience__tab span {
      writing-mode: initial;
      text-align: left;
      font-size: 14px;
    }

    .service-page--book-marketing .illustration-audience__tab b {
      align-self: auto;
      font-size: 25px;
    }

    .service-page--book-marketing .illustration-audience__panel {
      min-height: 265px;
      padding: 21px 19px;
      border-radius: 0 0 18px 18px;
    }

    .service-page--book-marketing .illustration-audience__panel>span {
      font-size: 34px;
    }

    .service-page--book-marketing .illustration-audience__panel h3 {
      margin: 30px 0 8px;
      font-size: 19px;
    }

    .service-page--book-marketing .illustration-audience__panel p {
      margin: 0 0 24px;
      font-size: 14px !important;
      line-height: 1.58 !important;
    }

    .service-page--book-marketing .illustration-audience__panel a {
      margin-top: auto;
    }

    .service-page--book-marketing .illustration-trust>.container>.row {
      --bs-gutter-x: 0;
      --bs-gutter-y: 28px;
    }

    .service-page--book-marketing .illustration-trust__intro>p.mt-4 {
      margin-top: 14px !important;
      margin-bottom: 18px !important;
    }

    .service-page--book-marketing .illustration-trust__intro img {
      width: min(100%, 360px);
      margin: 22px auto 0;
    }

    .service-page--book-marketing .illustration-trust__grid {
      --bs-gutter-x: 0;
      --bs-gutter-y: 12px;
      margin-top: 0;
    }

    .service-page--book-marketing .illustration-trust__card {
      min-height: 0;
      padding: 18px;
      border-radius: 16px;
    }

    .service-page--book-marketing .illustration-trust__card h3 {
      font-size: 18px;
    }

    .service-page--book-marketing .illustration-trust__closing {
      margin: 18px 0;
      font-size: 15px;
      line-height: 1.6;
    }

    .service-page--book-marketing .illustration-trust .button {
      width: 100%;
      justify-content: center;
    }

    .service-page--book-marketing .illustration-testimonials__head {
      margin-bottom: 28px;
    }

    .service-page--book-marketing .illustration-testimonials__slide {
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }

    .service-page--book-marketing .illustration-quote {
      min-height: 0;
      padding: 24px 19px;
      border-radius: 16px;
    }

    .service-page--book-marketing .illustration-quote__mark {
      top: 18px;
      right: 16px;
      width: 96px;
    }

    .service-page--book-marketing .illustration-quote__stars {
      margin-bottom: 14px;
      font-size: 14px;
    }

    .service-page--book-marketing .illustration-quote h3 {
      font-size: 18px;
    }

    .service-page--book-marketing .illustration-quote p {
      max-width: 100%;
      margin-top: 36px;
      font-size: 14px !important;
      line-height: 1.58 !important;
    }

    .service-page--book-marketing .illustration-testimonials__action {
      margin-top: 26px;
    }

    .service-page--book-marketing .illustration-testimonials__action .button {
      width: 100%;
      justify-content: center;
    }

    .service-page--book-marketing .faq__intro {
      margin-bottom: 30px;
    }

    .service-page--book-marketing .faq-item summary {
      gap: 12px;
      padding: 20px 0;
    }

    .service-page--book-marketing .faq-item__q {
      font-size: 15px;
      line-height: 1.45;
    }

    .service-page--book-marketing .faq-item__body {
      padding: 0 4px 20px 0;
    }

    .service-page--book-marketing .faq__cta {
      width: 100%;
      justify-content: center;
    }

    .service-page--book-marketing .contact__grid {
      --bs-gutter-x: 0;
      --bs-gutter-y: 28px;
    }

    .service-page--book-marketing .contact__copy {
      margin-bottom: 0;
    }

    .service-page--book-marketing .contact-form {
      width: 100%;
      padding: 20px 16px;
      border-radius: 16px;
    }

    /* Prevent off-canvas AOS transforms from clipping mobile content. */
    html.aos-enabled .service-page--book-marketing main section:not(.page-hero) [data-aos] {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }

  @media (max-width: 389.98px) {

    .service-page--book-marketing .marketing-problem.py-5,
    .service-page--book-marketing .start-early,
    .service-page--book-marketing .services,
    .service-page--book-marketing .book-marketing-process,
    .service-page--book-marketing .illustration-audience,
    .service-page--book-marketing .illustration-trust,
    .service-page--book-marketing .illustration-testimonials,
    .service-page--book-marketing .faq,
    .service-page--book-marketing .contact {
      padding-top: 48px !important;
      padding-bottom: 54px !important;
    }

    .service-page--book-marketing .marketing-problem h2,
    .service-page--book-marketing .start-early__copy h2.start-early__title,
    .service-page--book-marketing .services__heading,
    .service-page--book-marketing .process__visual h2,
    .service-page--book-marketing .illustration-audience .illustration-section-head h2,
    .service-page--book-marketing .illustration-trust__intro h2,
    .service-page--book-marketing .illustration-testimonials__head h2,
    .service-page--book-marketing .faq__intro h2,
    .service-page--book-marketing .contact__copy h2 {
      font-size: 29px !important;
    }

    .service-page--book-marketing .start-early__art {
      height: 285px;
    }

    .service-page--book-marketing .illustration-audience__panel {
      min-height: 245px;
    }
  }
}

/*
 * Book Marketing service cards: direct ID scoping keeps this responsive
 * even in browsers that do not support the newer @scope rule above.
 */
#book-marketing-services .service-card>i {
  background-color: #fff;
  background-image: none;
}

#book-marketing-services .service-card>i img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  #book-marketing-services {
    padding: 52px 0 60px !important;
  }

  #book-marketing-services .services__head {
    margin-bottom: 26px;
  }

  #book-marketing-services .services__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    text-align: left;
  }

  #book-marketing-services .services__title,
  #book-marketing-services .services__lede {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  #book-marketing-services .services__title {
    order: 1;
  }

  #book-marketing-services .services__lede {
    order: 2;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  #book-marketing-services .services__title>.eyebrow {
    min-height: 0;
    margin-bottom: 12px;
    padding: 8px 18px;
    font-size: 13px !important;
    line-height: 1.2;
  }

  #book-marketing-services .services__heading {
    max-width: 100%;
    font-size: clamp(29px, 8.5vw, 36px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  #book-marketing-services .service-grid.row,
  #book-marketing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    width: 100%;
    margin: 0 !important;
  }

  #book-marketing-services .service-grid>.services__cell,
  #book-marketing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell,
  #book-marketing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(4),
  #book-marketing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(5) {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
  }

  #book-marketing-services .service-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 21px 18px;
    border-radius: 16px;
  }

  #book-marketing-services .service-card>i {
    width: 50px;
    height: 50px;
    margin-bottom: 17px;
    border-radius: 12px;
  }

  #book-marketing-services .service-card>i img {
    width: 32px;
    height: 32px;
  }

  #book-marketing-services .service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.3;
  }

  #book-marketing-services .service-card p {
    margin: 0;
    font-size: 14px !important;
    line-height: 1.58 !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 389.98px) {
  #book-marketing-services {
    padding: 46px 0 52px !important;
  }

  #book-marketing-services .services__heading {
    font-size: 28px !important;
  }

  #book-marketing-services .service-card {
    padding: 19px 16px;
  }
}

/* Book Marketing: reusable specialist-services directory (Figma node 734:931). */
.specialist-marketing {
  --specialist-marketing-ink: #3e3050;
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: 100px 0;
  color: var(--specialist-marketing-ink);
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.4) 0%, rgba(254, 249, 195, 0.4) 100%);
}

.specialist-marketing::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: var(--specialist-marketing-background);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 138%;
  content: "";
  opacity: 0.02;
  pointer-events: none;
}

.specialist-marketing__container {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.specialist-marketing__head {
  min-height: 194px;
  margin-right: 0;
  margin-left: 0;
  --bs-gutter-x: 0;
}

.specialist-marketing__heading-col {
  flex: 0 0 50.88%;
  width: 50.88%;
  max-width: 693px;
  padding: 0;
}

.specialist-marketing__intro-col {
  align-self: flex-end;
  flex: 0 0 46.11%;
  width: 46.11%;
  max-width: 628px;
  padding: 0 0 9px;
}

.specialist-marketing .specialist-marketing__eyebrow {
  display: inline-flex;
  min-width: 222px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 32px 9px;
  margin: 0 0 10px;
  border: 1px solid #e9d5ff;
  border-radius: 140px;
  background: #f5e8ff;
  color: var(--specialist-marketing-ink);
  font: 300 18px/1.5 var(--sans);
  letter-spacing: -0.36px;
  text-transform: none;
}

.specialist-marketing h2 {
  max-width: 693px;
  margin: 0;
  color: var(--specialist-marketing-ink);
  font: 700 60px/68px var(--serif);
  letter-spacing: -1.2px;
}

.specialist-marketing__intro {
  max-width: 628px;
  margin: 0;
  color: var(--specialist-marketing-ink);
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.specialist-marketing__links {
  width: 100%;
  padding: 0;
  margin: 40px 0 0;
}

.specialist-marketing__item {
  position: relative;
  min-height: 167px;
  margin: 0;
}

.specialist-marketing__item:last-child {
  min-height: 137px;
}

.specialist-marketing__link {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 137px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

.specialist-marketing__number {
  flex: 0 0 42px;
  width: 42px;
  padding-top: 40px;
  color: rgba(62, 48, 80, 0.5);
  font: 400 18px/1.5 var(--sans);
  letter-spacing: -0.36px;
}

.specialist-marketing__name {
  min-width: 0;
  color: #ddd6fe;
  font: italic 700 80px/normal var(--serif);
  letter-spacing: -1.6px;
  white-space: nowrap;
  transition: color 240ms ease, transform 240ms ease;
}

.specialist-marketing__item--pink .specialist-marketing__name {
  color: #fbcfe8;
}

.specialist-marketing__item--blue .specialist-marketing__name {
  color: #bae6fd;
}

.specialist-marketing__divider {
  position: absolute;
  right: 0;
  bottom: 29px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  object-fit: fill;
  pointer-events: none;
}

.specialist-marketing__item:last-child .specialist-marketing__divider {
  bottom: 0;
}

.specialist-marketing__link:hover .specialist-marketing__name,
.specialist-marketing__link:focus-visible .specialist-marketing__name {
  color: var(--specialist-marketing-ink);
  transform: translateX(8px);
}

.specialist-marketing__link:focus-visible {
  border-radius: 8px;
  outline: 2px solid rgba(62, 48, 80, 0.55);
  outline-offset: 6px;
}

.specialist-marketing__closing {
  width: min(1089px, 100%);
  margin: 50px auto 0;
  color: var(--specialist-marketing-ink);
  font: 400 16px/24px var(--sans);
  letter-spacing: -0.32px;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .specialist-marketing {
    padding: 80px 0;
  }

  .specialist-marketing h2 {
    font-size: 52px;
    line-height: 1.1;
  }

  .specialist-marketing__name {
    font-size: 64px;
  }
}

@media (max-width: 991.98px) {
  .specialist-marketing__head {
    min-height: 0;
    gap: 28px;
  }

  .specialist-marketing__heading-col,
  .specialist-marketing__intro-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
  }

  .specialist-marketing__intro-col {
    padding-bottom: 0;
  }

  .specialist-marketing__intro {
    max-width: 720px;
  }

  .specialist-marketing__links {
    margin-top: 42px;
  }

  .specialist-marketing__name {
    font-size: clamp(48px, 7.4vw, 62px);
    white-space: normal;
  }
}

@media (max-width: 767.98px) {
  .specialist-marketing {
    padding: 56px 0 64px;
  }

  .specialist-marketing::before {
    background-position: center;
    background-size: auto 100%;
    opacity: 0.025;
  }

  .specialist-marketing__container {
    width: calc(100% - 28px);
  }

  .specialist-marketing__head {
    gap: 22px;
  }

  .specialist-marketing .specialist-marketing__eyebrow {
    min-width: 0;
    min-height: 40px;
    padding: 8px 20px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .specialist-marketing h2 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .specialist-marketing__intro {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.02em;
  }

  .specialist-marketing__links {
    margin-top: 32px;
  }

  .specialist-marketing__item,
  .specialist-marketing__item:last-child {
    min-height: 0;
    padding: 18px 0 24px;
  }

  .specialist-marketing__item:first-child {
    padding-top: 0;
  }

  .specialist-marketing__item:not(:last-child) {
    margin-bottom: 12px;
  }

  .specialist-marketing__link {
    min-height: 0;
  }

  .specialist-marketing__number {
    flex-basis: 36px;
    width: 36px;
    padding-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .specialist-marketing__name {
    flex: 1 1 auto;
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  .specialist-marketing__divider,
  .specialist-marketing__item:last-child .specialist-marketing__divider {
    bottom: 0;
  }

  .specialist-marketing__closing {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 389.98px) {
  .specialist-marketing {
    padding: 48px 0 54px;
  }

  .specialist-marketing h2 {
    font-size: 29px;
  }

  .specialist-marketing__name {
    font-size: 34px;
  }
}

/* Book Marketing only: keep all four trust cards in a balanced 2-by-2 grid. */
@media (min-width: 768px) {
  body.service-page--marketing-services #illustration-trust .illustration-trust__grid>.col-12:last-child {
    flex: 0 0 auto;
    grid-column: auto;
    width: 50%;
    max-width: 50%;
  }

  body.service-page--marketing-services #illustration-trust .illustration-trust__grid>.col-12:last-child .illustration-trust__card {
    min-height: 186px;
  }
}

/* Homepage process artwork uses its natural near-square proportions. */
.home-process .process__visual>img {
  width: min(100%, 560px);
  height: auto;
  max-height: none;
  margin-right: auto;
  margin-left: auto;
  object-fit: contain;
  aspect-ratio: 629 / 598;
}

@media (max-width: 991.98px) {
  .home-process .process__visual>img {
    width: min(78vw, 440px);
    margin-top: 26px;
  }
}

@media (max-width: 767.98px) {
  .home-process .process__visual>img {
    width: min(80vw, 320px);
    margin-top: 20px;
  }
}

@media (max-width: 389.98px) {
  .home-process .process__visual>img {
    width: min(78vw, 270px);
  }
}

/* Shared service-page overflow safeguards. */
body.service-page main,
body.service-page main section,
body.service-page main .container,
body.service-page main .row,
body.service-page main [class*="col-"] {
  min-width: 0;
}

body.service-page main img,
body.service-page main svg {
  max-width: 100%;
}

/*
 * Shared Start Early responsive pass.
 * This intentionally sits last so every service page gets the same safe
 * tablet/mobile geometry regardless of older page-specific declarations.
 */
@media (max-width: 991.98px) {
  body.service-page .start-early {
    overflow: clip;
    padding: 68px 0 72px;
  }

  body.service-page .start-early__grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 36px;
  }

  body.service-page .start-early__grid>[class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  body.service-page .start-early__art {
    width: min(100%, 500px);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    transform: none;
  }

  body.service-page .start-early__art img {
    top: 4%;
    left: 4%;
    width: 92%;
    height: 92%;
    max-width: none;
    border-radius: 18px;
    object-fit: contain;
    object-position: center;
    transform: rotate(-2deg);
  }

  body.service-page .start-early__art span {
    top: 1%;
    left: 1%;
    max-width: 72%;
    padding: 9px 16px;
    border-radius: 13px;
    font-size: 14px;
    line-height: 1.25;
    transform: rotate(-3deg);
  }

  body.service-page .start-early__art strong {
    right: 1%;
    bottom: 1%;
    width: min(230px, 72%);
    height: auto;
    min-height: 74px;
    padding: 11px 16px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 1.22;
    transform: rotate(-3deg);
  }

  body.service-page .start-early__art strong small {
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.2;
  }

  body.service-page .start-early__copy {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  body.service-page .start-early__copy h2.start-early__title {
    max-width: 100%;
    font-size: clamp(36px, 6vw, 48px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  body.service-page .start-early__copy>p,
  body.service-page .start-early__copy b,
  body.service-page .start-early__copy li {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 767.98px) {
  body.service-page .start-early {
    padding: 54px 0 62px !important;
  }

  body.service-page .start-early__grid {
    --bs-gutter-y: 30px;
  }

  body.service-page .start-early__art {
    width: min(calc(100% - 8px), 390px);
  }

  body.service-page .start-early__art span {
    max-width: 76%;
    padding: 8px 13px;
    font-size: 12px;
  }

  body.service-page .start-early__art strong {
    width: min(205px, 70%);
    min-height: 66px;
    padding: 9px 13px;
    font-size: 16px;
  }

  body.service-page .start-early__art strong small {
    font-size: 12px;
  }

  body.service-page .start-early__copy h2.start-early__title {
    margin-bottom: 14px;
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1.1 !important;
  }

  body.service-page .start-early__copy>p,
  body.service-page .start-early__copy b {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  body.service-page .start-early__copy ul {
    margin: 18px 0 20px;
  }

  body.service-page .start-early__copy li {
    margin: 9px 0;
    padding-left: 27px;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 389.98px) {
  body.service-page .start-early {
    padding: 46px 0 54px !important;
  }

  body.service-page .start-early__art {
    width: 100%;
  }

  body.service-page .start-early__art span {
    max-width: 72%;
    padding: 7px 10px;
    font-size: 11px;
  }

  body.service-page .start-early__art strong {
    width: min(180px, 68%);
    min-height: 60px;
    padding: 8px 11px;
    font-size: 14px;
  }

  body.service-page .start-early__copy h2.start-early__title {
    font-size: 28px !important;
  }
}

/* About Us page */
.about-page {
  --about-text: #3e3050;
  --about-purple: #a855f7;
  color: var(--about-text);
  background: #fff;
}

.about-page main {
  color: var(--about-text);
  background: #fff;
}



.about-page h1,
.about-page h2 {
  color: var(--about-text);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.about-page h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.12;
}

.about-page .section-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 9px 30px;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  background: #f5e8ff;
  color: #3e3050;
  font: 300 15px/1.25 var(--sans);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero.about-hero {
  height: 993px;
  min-height: 993px;
  padding: 89px 0 0;
  background: linear-gradient(180deg, rgba(242, 237, 254, .6) 0%, rgba(255, 234, 250, .6) 100%);
}

.hero.about-hero .hero__inner {
  height: auto;
  max-width: 1149px;
}

.hero.about-hero .eyebrow-parent {
  min-height: 44px;
  margin: 0 auto 15px;
}

.hero.about-hero h1 {
  max-width: 1149px;
  margin: 0 auto 20px;
  font-size: 70px;
  line-height: 88px;
  letter-spacing: -1.4px;
}

.hero.about-hero .about-hero__description {
  max-width: 1089px;
  margin: 0 auto;
  color: #3e3050;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -.4px;
}

.hero.about-hero .about-hero__question {
  margin-top: 17px;
  font-size: 22px;
  font-weight: 500;
}

.hero.about-hero .about-hero__question+.about-hero__description {
  margin-top: 20px;
}

.hero.about-hero .actions {
  margin-top: 70px;
}

.hero.about-hero .about-hero__cta {
  min-height: 51px;
  padding: 15px 27px;
  text-transform: uppercase;
}

.about-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  color: #3e3050;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero.about-hero .about-proof span {
  color: #3e3050;
}

.about-proof__avatars {
  display: flex;
  padding-left: 12px;
}

.about-proof__avatars img {
  width: 41px;
  height: 41px;
  margin-left: -12px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.hero.about-hero .hero-wm {
  width: min(292px, 15.21vw);
}

.hero.about-hero .hero-wm__text {
  font-size: clamp(118px, 10.14vw, 194.635px);
  background: linear-gradient(180deg, rgba(168, 85, 247, .06), rgba(168, 85, 247, 0));
  -webkit-background-clip: text;
  background-clip: text;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background: #fff;
}

.about-section>.container {
  position: relative;
  z-index: 2;
}

.about-section--pattern {
  isolation: isolate;
  background: #fff;
}

.about-section--pattern::before,
.about-section--pattern::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
}

.about-section--pattern::before {
  z-index: 0;
  background: url('../img/about-us/background.png') center / cover no-repeat;
}

.about-section--pattern::after {
  z-index: 1;
}

.about-audience::before {
  opacity: .01;
  transform: scaleX(-1);
}

.about-audience::after {
  background: linear-gradient(180deg, rgba(255, 234, 250, .5), rgba(224, 242, 254, .5));
}

.about-promises::before {
  opacity: .02;
  transform: rotate(180deg) scaleY(-1);
}

.about-promises::after {
  background: linear-gradient(180deg, rgba(224, 242, 254, .4), rgba(254, 249, 195, .4));
}

.about-wave {
  position: relative;
  z-index: 3;
  height: 114px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.about-wave img {
  display: block;
  width: 108.39%;
  height: 100%;
  margin-left: -4.2%;
}

.about-wave--reverse img {
  transform: rotate(180deg);
}

.about-chapter {
  --chapter-color: #a855f7;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 68px;
  color: var(--chapter-color);
}

.about-chapter--end {
  flex-direction: row-reverse;
}

.about-chapter--purple {
  --chapter-color: #a855f7;
  --chapter-icon-bg: #ede9fe;
  --chapter-icon-border: #ddd6fe;
}

.about-chapter--pink {
  --chapter-color: #ec4b9e;
  --chapter-icon-bg: #fce7f3;
  --chapter-icon-border: #fbcfe8;
}

.about-chapter--blue {
  --chapter-color: #0284c7;
  --chapter-icon-bg: #e0f2fe;
  --chapter-icon-border: #bae6fd;
}

.about-chapter--green {
  --chapter-color: #16a34a;
  --chapter-icon-bg: #dcfce7;
  --chapter-icon-border: #bbf7d0;
}

.about-chapter--orange {
  --chapter-color: #ea580c;
  --chapter-icon-bg: #fff7ed;
  --chapter-icon-border: #fed7aa;
}

.about-chapter--light {
  --chapter-color: #fff;
  --chapter-icon-bg: rgba(255, 255, 255, .3);
  --chapter-icon-border: rgba(255, 255, 255, .2);
}

.about-chapter__label {
  flex: 0 0 250px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-chapter--end .about-chapter__label {
  text-align: right;
}

.about-chapter__line {
  height: 1px;
  flex: 1;
  overflow: hidden;
}

.about-chapter__line img {
  display: block;
  width: 100%;
  height: 1px;
}

.about-chapter--start .about-chapter__line img {
  transform: rotate(180deg);
}

.about-chapter__icon {
  display: inline-flex;
  width: 53px;
  height: 53.803px;
  flex: 0 0 53px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--chapter-icon-border);
  border-radius: 20px;
  background: var(--chapter-icon-bg);
}

.about-chapter__icon img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.about-story__art {
  position: relative;
  max-width: 604px;
}

.about-story__art>img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(62, 48, 80, .12);
}

.about-story__badge {
  position: absolute;
  right: 0px;
  top: 96px;
  min-width: 227px;
  padding: 10px 18px;
  border: 1px solid #fef08a;
  border-radius: 20px;
  background: #fef9c3;
  font-size: 15px;
  text-align: center;
  transform: rotate(-4.17deg);
}

.about-story__stats {
  max-width: 604px;
  margin-top: 28px;
}

.about-story__stats span {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--story-stat-border);
  border-radius: 20px;
  background: var(--story-stat-bg);
  color: #3e3050;
  font: 700 30.707px/1 var(--serif);
}

.about-story__stats b {
  display: block;
  margin-bottom: 2px;
  color: var(--story-stat-accent);
  font: 700 40px/.8 "Qwitcher Grypen", cursive;
  letter-spacing: -.8px;
}

.about-story__stats> :nth-child(1) {
  --story-stat-bg: #ede9fe;
  --story-stat-border: #ddd6fe;
  --story-stat-accent: #8b5cf6;
}

.about-story__stats> :nth-child(2) {
  --story-stat-bg: #fce7f3;
  --story-stat-border: #fbcfe8;
  --story-stat-accent: #ec4b9e;
}

.about-story__stats> :nth-child(3) {
  --story-stat-bg: #e0f2fe;
  --story-stat-border: #bae6fd;
  --story-stat-accent: #0284c7;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy p,
.about-section__intro p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.68;
}

.about-copy__lead {
  font-size: 18px !important;
  font-weight: 500;
}

.about-copy__closing {
  margin-top: 24px !important;
  font-size: 17px !important;
  font-weight: 500;
}

.about-section__head {
  margin-bottom: 62px;
}

.about-audience__list {
  display: grid;
  gap: 12px;
}

.about-audience__item {
  --audience-color: #0284c7;
  --audience-bg: rgba(224, 242, 254, .5);
  --audience-border: #bae6fd;
  display: grid;
  grid-template-columns: 110px minmax(260px, 1.15fr) minmax(300px, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 108px;
  padding: 18px 34px;
  border: 1px solid var(--audience-border);
  border-radius: 20px;
  background: var(--audience-bg);
}

.about-audience__item--blue {
  --audience-color: #0284c7;
  --audience-bg: rgba(224, 242, 254, .5);
  --audience-border: #bae6fd;
}

.about-audience__item--orange {
  --audience-color: #ea580c;
  --audience-bg: rgba(255, 247, 237, .5);
  --audience-border: #fed7aa;
}

.about-audience__item--lilac {
  --audience-color: #8b5cf6;
  --audience-bg: rgba(237, 233, 254, .5);
  --audience-border: #ddd6fe;
}

.about-audience__item--pink {
  --audience-color: #ec4b9e;
  --audience-bg: #fce7f3;
  --audience-border: rgba(251, 207, 232, .5);
}

.about-audience__item--green {
  --audience-color: #16a34a;
  --audience-bg: rgba(220, 252, 231, .5);
  --audience-border: #bbf7d0;
}

.about-audience__item--yellow {
  --audience-color: #ca8a04;
  --audience-bg: #fef9c3;
  --audience-border: #fef08a;
}

.about-audience__number {
  display: flex;
  min-height: 45px;
  align-items: center;
  border-right: 1px solid var(--audience-border);
  color: var(--audience-color);
  font: 400 43.805px/1 var(--serif);
  letter-spacing: -.876px;
}

.about-audience__item h3 {
  margin: 0;
  font: 700 29.815px/35.236px var(--serif);
  letter-spacing: -.596px;
}

.about-audience__item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.36px;
}

.about-audience__closing {
  max-width: 1132px;
  margin: 38px auto 0;
  text-align: center;
  font-size: 16px;
}

.about-services .about-section__head> :last-child {
  order: 2;
}

.about-services__grid {
  align-items: stretch;
}

.about-service-card {
  --service-color: #8b5cf6;
  --service-bg: #ede9fe;
  --service-border: #ddd6fe;
  display: flex;
  min-height: 354px;
  flex-direction: column;
  padding: 39px 39px 37px;
  border: 1px solid var(--service-border);
  border-radius: 20px;
  background: var(--service-bg);
  transition: transform .28s ease, box-shadow .28s ease;
}

.about-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(62, 48, 80, .11);
}

.about-service-card--purple,
.about-service-card--lilac {
  --service-color: #8b5cf6;
  --service-bg: #ede9fe;
  --service-border: #ddd6fe;
}

.about-service-card--pink {
  --service-color: #ec4b9e;
  --service-bg: #fce7f3;
  --service-border: #fbcfe8;
}

.about-service-card--green {
  --service-color: #16a34a;
  --service-bg: #dcfce7;
  --service-border: #bbf7d0;
}

.about-service-card--orange {
  --service-color: #ea580c;
  --service-bg: #fff7ed;
  --service-border: #fed7aa;
}

.about-service-card--yellow {
  --service-color: #ca8a04;
  --service-bg: #fef9c3;
  --service-border: #fef08a;
}

.about-service-card--blue {
  --service-color: #0284c7;
  --service-bg: #e0f2fe;
  --service-border: #bae6fd;
}

.about-service-card--cyan {
  --service-color: #73c9d2;
  --service-bg: #e9fcfe;
  --service-border: #b5f8ff;
}

.about-service-card--red {
  --service-color: #f5626d;
  --service-bg: #fff0f1;
  --service-border: #ffcace;
}

.about-service-card__icon {
  width: 66px;
  height: 67px;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid var(--service-border);
  border-radius: 15px;
  background: #fff;
  object-fit: contain;
}

.about-service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.44px;
}

.about-service-card p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.32px;
}

.about-service-card a {
  margin-top: auto;
  width: fit-content;
  color: var(--service-color);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.about-service-card a:hover,
.about-service-card a:focus-visible {
  color: color-mix(in srgb, var(--service-color) 78%, #3e3050);
  transform: translateX(8px);
}

.about-services__art {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
}

.about-services__art::before {
  display: none;
}

.about-services__art img {
  position: relative;
  z-index: 1;
  width: min(100%, 475px);
  height: auto;
}

.about-promises__head {
  max-width: 900px;
  margin-bottom: 62px;
}

.about-promises__head>p:last-child {
  max-width: 840px;
  margin: 14px auto 0;
  font-size: 16px;
}

.about-promises__grid {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
  max-width: 1362px;
  margin: 0 auto;
}

.about-promises__grid> :nth-child(even) {
  margin-top: 27px;
}

.about-promises__grid> :nth-child(1) {
  --promise-number-width: 25.1415px;
  --promise-number-height: 43.7895px;
}

.about-promises__grid> :nth-child(2) {
  --promise-number-width: 32.2178px;
  --promise-number-height: 44.4555px;
}

.about-promises__grid> :nth-child(3) {
  --promise-number-width: 30.8025px;
  --promise-number-height: 56.61px;
}

.about-promises__grid> :nth-child(4) {
  --promise-number-width: 36.7133px;
  --promise-number-height: 55.7775px;
}

.about-promise {
  --promise-color: #16a34a;
  --promise-end: #dcfce7;
  --promise-border: #bbf7d0;
  position: relative;
  min-height: 311px;
  padding: 97px 40px 34px;
  overflow: hidden;
  border: 1px solid var(--promise-border);
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 0%, var(--promise-end) 100%);
}

.about-promise--green {
  --promise-color: #16a34a;
  --promise-end: #dcfce7;
  --promise-border: #bbf7d0;
}

.about-promise--blue {
  --promise-color: #0284c7;
  --promise-end: #e0f2fe;
  --promise-border: #bae6fd;
}

.about-promise--lilac {
  --promise-color: #8b5cf6;
  --promise-end: #ede9fe;
  --promise-border: #ddd6fe;
}

.about-promise--pink {
  --promise-color: #ec4b9e;
  --promise-end: #fce7f3;
  --promise-border: #fbcfe8;
}

.about-promise__number {
  position: absolute;
  left: 40px;
  top: 32px;
  display: block;
  width: var(--promise-number-width);
  height: var(--promise-number-height);
}

.about-promise__number img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-promise h3 {
  position: relative;
  margin: 0 0 10px;
  padding: 0;
  font: 600 30px/35.236px var(--serif);
  letter-spacing: -.6px;
}

.about-promise p {
  position: relative;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.36px;
}

.about-process__steps {
  position: relative;
  min-height: 794px;
  margin: 0;
  padding: 0;
  background: url('../img/about-us/process-line.svg') 115px 0 / 50px 794px no-repeat;
  list-style: none;
}

.about-process__steps::before {
  display: none;
}

.about-process__steps li {
  position: relative;
  display: block;
  min-height: 248px;
  padding-left: 205px;
}

.about-process__steps li:last-child {
  min-height: 185px;
}

.about-process__steps li>span {
  display: none;
}

.about-process__steps h3 {
  max-width: 493px;
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -.48px;
}

.about-process__steps p {
  max-width: 513px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.36px;
}

.about-process blockquote {
  margin: 16px 0 0 205px;
  padding: 28px 0 0;
  border-top: 2px solid #e9d5ff;
}

.about-process blockquote strong {
  display: block;
  margin-bottom: 12px;
  font: 600 28px/1.3 var(--serif);
}

.about-process blockquote p {
  max-width: 600px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.about-process__visual {
  position: relative;
  min-height: 890px;
  padding-bottom: 120px;
}

.about-process__magazine {
  display: block;
  width: min(100%, 576px);
  height: auto;
  margin-left: auto;
  border-radius: 15px;
  box-shadow: inset 5px 0 14px rgba(0, 0, 0, .5), 0 24px 55px rgba(62, 48, 80, .16);
}

.about-process__books {
  position: absolute;
  z-index: 3;
  right: -27px;
  bottom: 0;
  width: 400px;
  max-width: 24vw;
  height: auto;
  pointer-events: none;
}

.about-contact-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(109deg, #E9A5FC 0%, #898BF8 100%);
}

.about-contact-wrap .about-chapter {
  margin-bottom: 0;
}

.about-contact-wrap .contact {
  padding-top: 50px;
  padding-bottom: 100px;
  background: transparent;
}

.about-contact-wrap .contact__grid {
  align-items: flex-start !important;
}

.about-contact-wrap .contact__copy>.eyebrow {
  min-height: 48px;
  margin-bottom: 20px;
  padding-right: 33px;
  padding-left: 33px;
}

.about-contact-wrap .contact__copy>.eyebrow::after {
  content: "Let's write together";
  text-transform: uppercase;
}

.about-contact-wrap .contact__copy h2 {
  max-width: 669px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.1334;
  letter-spacing: -1.2px;
  padding-bottom: 20px;
}

@media (max-width: 1199.98px) {
  .hero.about-hero .hero-wm {
    display: none;
  }

  .about-story__grid {
    --bs-gutter-x: 3rem;
  }

  .about-process__books {
    right: -24px;
    width: 460px;
  }
}

@media (max-width: 991.98px) {
  .hero.about-hero {
    height: auto;
    min-height: 0;
    padding: 72px 0 76px;
  }

  .hero.about-hero .hero__inner {
    height: auto;
  }

  .hero.about-hero .actions {
    margin-top: 42px;
  }

  .about-section {
    padding: 76px 0 84px;
  }

  .about-chapter {
    margin-bottom: 52px;
  }

  .about-story__art,
  .about-story__stats {
    margin-left: auto;
    margin-right: auto;
  }

  .about-story__copy {
    max-width: 720px;
    margin: 0 auto;
  }

  .about-audience__item {
    grid-template-columns: 58px minmax(220px, .9fr) 1.1fr;
    gap: 20px;
    padding: 18px 24px;
  }

  .about-services .about-section__head> :last-child {
    order: initial;
  }

  .about-services__art {
    order: 9;
  }

  .about-promises__grid> :nth-child(even) {
    margin-top: 0;
  }

  .about-process__steps {
    background-position-x: 24px;
  }

  .about-process__steps li {
    padding-left: 114px;
  }

  .about-process blockquote {
    margin-left: 114px;
  }

  .about-process__visual {
    width: min(100%, 576px);
    min-height: 720px;
    margin: 0 auto;
  }

  .about-contact-wrap {
    padding-top: 56px;
  }
}

@media (max-width: 767.98px) {
  .about-page h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .hero.about-hero h1 {
    font-size: clamp(38px, 10vw, 50px);
    line-height: 1.16;
  }

  .hero.about-hero .about-hero__description {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero.about-hero .about-hero__question {
    font-size: 18px;
  }

  .about-proof {
    flex-direction: column;
    font-size: 12px;
  }

  .about-chapter {
    gap: 12px;
  }

  .about-chapter__label {
    flex-basis: auto;
    font-size: 11px;
  }

  .about-chapter__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .about-audience__item {
    grid-template-columns: 48px 1fr;
  }

  .about-audience__item p {
    grid-column: 2;
  }

  .about-audience__item h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .about-service-card {
    min-height: 0;
  }

  .about-promise {
    min-height: 0;
  }

  .about-process__steps li {
    min-height: 218px;
    padding-left: 84px;
  }

  .about-process__steps li:last-child {
    min-height: 180px;
  }

  .about-process__steps {
    min-height: 699px;
    background-position-x: 0;
    background-size: 44px 699px;
  }

  .about-process blockquote {
    margin-left: 84px;
  }

  .about-process__visual {
    min-height: 650px;
  }

  .about-process__books {
    right: -20px;
    width: 360px;
  }
}

@media (max-width: 575.98px) {
  .hero.about-hero {
    padding: 58px 0 62px;
  }

  .hero.about-hero .eyebrow-parent {
    margin-bottom: 14px;
  }

  .hero.about-hero .actions {
    margin-top: 32px;
  }

  .about-section {
    padding: 62px 0 68px;
  }

  .about-section__head {
    margin-bottom: 42px;
  }

  .about-story__badge {
    right: 10px;
    top: 70px;
    min-width: 0;
    padding: 8px 13px;
    font-size: 11px;
  }

  .about-story__stats span {
    min-height: 92px;
    font-size: 18px;
  }

  .about-story__stats b {
    font-size: 27px;
  }

  .about-audience__item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .about-audience__number {
    font-size: 34px;
  }

  .about-audience__item h3 {
    font-size: 18px;
  }

  .about-service-card {
    padding: 28px 24px;
  }

  .about-promise h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .about-promise__number {
    left: 24px;
    top: 26px;
    height: var(--promise-number-height);
  }

  .about-promise {
    min-height: 0;
    padding: 92px 24px 28px;
  }

  .about-process__steps li {
    min-height: 218px;
    padding-left: 68px;
  }

  .about-process blockquote {
    margin-left: 68px;
  }

  .about-process__visual {
    min-height: 520px;
  }

  .about-process__books {
    right: -18px;
    width: 260px;
    max-width: 68vw;
  }

  .about-contact-wrap {
    padding-top: 44px;
  }

  .about-wave {
    height: 72px;
  }

  .about-wave img {
    width: 120%;
    margin-left: -10%;
  }
}

/* Contact Us page — Figma frame 538:2878. */
.contact-page {
  --contact-ink: #3e3050;
  --contact-purple: #a855f7;
  --contact-pill: #f5e8ff;
  --contact-pill-border: #e9d5ff;
  color: var(--contact-ink);
  background: #fff;
}

.contact-page main {
  color: var(--contact-ink);
  background: #fff;
}

.contact-page .shell.container {
  padding-right: 0;
  padding-left: 0;
}

.contact-page .site-header {
    height: 88px;
    background: #fcfbff;
    border-bottom-color: #f0e4f2;
    box-shadow: none;
}

.contact-page__pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  padding: 0 33px;
  border: 1px solid var(--contact-pill-border);
  border-radius: 140px;
  background: var(--contact-pill);
  color: var(--contact-ink);
  font: 300 18px/1.2 var(--sans);
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.contact-page h2 {
  color: var(--contact-ink);
  font-family: var(--serif);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}

/* Shared animated hero, with Contact-page dimensions and copy. */
.hero.contact-hero {
  height: 993px;
  min-height: 993px;
  padding: 109px 0 0;
  background: linear-gradient(180deg, rgba(242, 237, 254, 0.6) 0%, rgba(255, 234, 250, 0.6) 100%);
}

.hero.contact-hero .contact-hero__inner {
  height: 100%;
  max-width: 1171px;
}

.hero.contact-hero .eyebrow-parent {
  min-height: 48px;
  margin: 0 auto 10px;
}

.hero.contact-hero h1 {
  width: 100%;
  max-width: 1171px;
  margin: 0 auto 20px;
  color: var(--contact-ink);
  font-size: 70px;
  font-weight: 700;
  line-height: 88px;
  letter-spacing: -1.4px;
}

.hero.contact-hero .contact-hero__description {
  width: min(921px, 100%);
  max-width: 921px;
  margin: 0 auto;
  color: var(--contact-ink);
  font: 400 20px/30px var(--sans);
  letter-spacing: -0.4px;
}

.hero.contact-hero .contact-hero__description+.contact-hero__description {
  margin-top: 20px;
}

.hero.contact-hero .actions {
  margin-top: 40px;
}

.hero.contact-hero .contact-hero__cta {
  min-height: 51px;
  padding: 15px 27px;
  text-transform: uppercase;
}

.hero.contact-hero .hero-books {
  bottom: 108px;
  width: 680px;
  height: 321px;
  overflow: visible;
}

.hero.contact-hero .hero-books img {
  width: 680px;
  height: 321px;
  object-fit: contain;
}

.hero.contact-hero .hero-wm {
  width: min(292px, 15.21vw);
}

.hero.contact-hero .hero-wm__text {
  font-size: clamp(118px, 10.14vw, 194.635px);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.06), rgba(168, 85, 247, 0));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Contact routes and illustration. */
.contact-start {
  position: relative;
  min-height: 920px;
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
}

.contact-start__visual {
  padding-top: 104px;
}

.contact-start__visual img {
  display: block;
  width: 586px;
  max-width: 92%;
  height: auto;
}

.contact-start__copy {
  width: 691px;
  max-width: calc(100% + 11px);
  margin-left: -11px;
}

.contact-start__copy .contact-page__pill {
  margin-bottom: 10px;
}

.contact-start__copy h2 {
  max-width: 691px;
  margin: 0 0 12px;
}

.contact-start__copy>p:not(.contact-page__pill) {
  max-width: 691px;
  margin: 0 0 20px;
  color: var(--contact-ink);
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.contact-start__copy>p:nth-of-type(3) {
  margin-bottom: 0;
}

.contact-start__list {
  display: grid;
  gap: 13px;
  margin: 27px 0 35px;
  padding: 0;
  list-style: none;
}

.contact-start__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 0;
  color: var(--contact-ink);
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.contact-start__list strong {
  font-weight: 600;
}

.contact-start__check {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--contact-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.contact-start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-start__actions .button {
  min-height: 54px;
  padding: 13px 25px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-start__primary {
  min-width: 289px;
}

.contact-start__secondary {
  min-width: 261px;
  background: #fff;
  color: var(--contact-purple);
}

.contact-start__secondary:hover {
  border-color: #882fce;
  background: #faf5ff;
  color: #882fce;
}

/* Four-step response process. */
.contact-process {
  position: relative;
  height: 719px;
  min-height: 719px;
  padding: 100px 0 0;
  overflow: hidden;
  background-color: #fff5fb;
  background-image:
    url("../img/contact-us/process-background.png"),
    linear-gradient(180deg, rgba(255, 234, 250, 0.5) 0%, rgba(224, 242, 254, 0.5) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1920px 719px, cover;
}

.contact-process__head .contact-page__pill {
  margin-bottom: 10px;
}

.contact-process__head h2 {
  margin: 0 0 20px;
}

.contact-process__head>p:last-child {
  margin: 0;
  color: var(--contact-ink);
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.contact-process__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
  height: 306px;
  margin-top: 40px;
}

.contact-process__card {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 202px;
  padding: 29px;
  border: 1px solid transparent;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.contact-process__card:nth-of-type(2) {
  top: 52px;
}

.contact-process__card:nth-of-type(3) {
  top: 80px;
  height: 226px;
}

.contact-process__card:nth-of-type(4) {
  top: 16px;
  height: 226px;
}

.contact-process__card:hover {
  box-shadow: 0 18px 40px rgba(62, 48, 80, 0.09);
}

.contact-process__card h3 {
  margin: 0 0 10px;
  color: var(--contact-ink);
  font: 600 20px/1.35 var(--sans);
  letter-spacing: -0.4px;
}

.contact-process__card p {
  margin: 0;
  color: var(--contact-ink);
  font: 400 16px/24px var(--sans);
  letter-spacing: -0.32px;
}

.contact-process__card--lavender,
.contact-trust__card--lavender {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.contact-process__card--pink,
.contact-trust__card--pink {
  border-color: #fbcfe8;
  background: #fce7f3;
}

.contact-process__card--green,
.contact-trust__card--green {
  border-color: #bbf7d0;
  background: #dcfce7;
}

.contact-process__card--blue,
.contact-trust__card--blue {
  border-color: #bae6fd;
  background: #e0f2fe;
}

.contact-process__arrow {
  position: absolute;
  z-index: 3;
  display: block;
  width: 19px;
  height: 13px;
  pointer-events: none;
}

.contact-process__arrow--1 {
  top: 124px;
  left: 23.85%;
}

.contact-process__arrow--2 {
  top: 153px;
  left: 49.24%;
}

.contact-process__arrow--3 {
  top: 193px;
  left: 74.67%;
}

/* Trust statement and card grid. */
.contact-trust {
  position: relative;
  height: 687px;
  min-height: 687px;
  padding: 100px 0;
  overflow: hidden;
  background: #fff;
}

.contact-trust__intro .contact-page__pill {
  width: 268px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.contact-trust__intro h2 {
  max-width: 650px;
  margin: 0;
}

.contact-trust__art {
  display: block;
  width: 545px;
  max-width: 90%;
  height: auto;
  margin: 33px 0 0 16px;
}

.contact-trust__content {
  width: calc(50% + 11px);
  margin-left: -11px;
}

.contact-trust__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20.565px;
}

.contact-trust__card {
  min-height: 186.118px;
  padding: 20.565px;
  border: 1px solid transparent;
  border-radius: 20.565px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.contact-trust__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(62, 48, 80, 0.08);
}

.contact-trust__card h3 {
  margin: 0 0 7px;
  color: var(--contact-ink);
  font: 500 18.5px/1.35 var(--sans);
  letter-spacing: -0.37px;
}

.contact-trust__card p {
  margin: 0;
  color: var(--contact-ink);
  font: 300 14.4px/21.6px var(--sans);
  letter-spacing: -0.288px;
}

.contact-trust__action {
  width: 170px;
  min-width: 170px;
  min-height: 54px;
  margin-top: 40px;
  gap: 10px;
  padding: 13px 18px;
  font-size: 14px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Shared form partial, precisely restyled for the Contact page. */
.contact-page .contact {
  height: 849px;
  min-height: 849px;
  padding: 100px 0;
  background: linear-gradient(127.431deg, #e9a5fc 0%, #898bf8 100%);
}

.contact-page .contact__grid {
  --bs-gutter-x: 0;
  align-items: flex-start !important;
}

.contact-page .contact__copy>.eyebrow {
  width: 247px;
  min-height: 48px;
  margin: 0 0 10px;
  padding: 0 33px;
  border: 1px solid var(--contact-pill-border);
  background: var(--contact-pill);
}

.contact-page .contact__copy>.eyebrow::after {
  content: "LET'S WRITE TOGETHER";
  color: var(--contact-ink);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.36px;
}

.contact-page .contact__copy h2 {
  max-width: 669px;
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -1.2px;
}

.contact-page .contact__lede {
  max-width: 601px;
  margin: 0;
  color: #fff;
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.contact-page .contact__lede.mt-3 {
  margin-top: 20px !important;
}

.contact-page .contact-form {
  width: 646px;
  min-height: 649px;
  margin-left: 35px;
  padding: 37px;
  border: 0;
  border-radius: 20px;
  background: #d8cfff;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-page .contact-form>.row {
  --bs-gutter-x: 17px;
  --bs-gutter-y: 20px;
}

.contact-page .contact-form__field span {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.36px;
}

.contact-page .contact-form__field input,
.contact-page .contact-form__field select,
.contact-page .contact-form__field textarea {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 7px;
  background-color: #c5b8ff;
}

.contact-page .contact-form__field textarea {
  height: 137px;
  min-height: 137px;
}

.contact-page .contact-form__actions {
  padding-top: 14px;
}

.contact-page .contact-form__cta {
  min-width: 321px;
  min-height: 54px;
  padding: 13px 26px;
  font-size: 14px;
}

.contact-page .site-footer {
  background: linear-gradient(180deg, rgba(242, 237, 254, 0.6) 0%, rgba(255, 234, 250, 0.6) 100%);
}

@media (min-width: 1400px) {
  .contact-page .site-footer {
    height: auto;
    min-height: 0;
    padding: 88px 0 28px;
  }

  .contact-page .footer__grid {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 2.2fr);
    column-gap: 72px;
    height: auto;
    margin: 0;
  }

  .contact-page .footer__grid>*,
  .contact-page .footer__links-row>* {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .contact-page .footer-brand {
    display: block;
    width: 196px;
    height: 58px;
    margin: 0 0 20px;
  }

  .contact-page .footer-brand img {
    width: 196px;
    height: 58px;
  }

  .contact-page .footer__tagline {
    width: auto;
    max-width: 340px;
    margin: 0 0 24px;
    color: var(--contact-ink);
    font: 400 16px/1.55 var(--sans);
    letter-spacing: -0.2px;
  }

  .contact-page .footer__contact {
    max-width: 340px;
    margin-bottom: 28px;
  }

  .contact-page .footer-payments {
    width: min(100%, 280px);
    max-width: 280px;
    height: auto;
    margin-top: 0;
  }

  .contact-page .footer__links-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(150px, 0.7fr) minmax(200px, 0.9fr);
    column-gap: 48px;
    width: 100%;
    margin: 0;
  }

  .contact-page .footer__heading {
    margin: 0 0 19px;
    color: var(--contact-ink);
    font: 500 22px/33px var(--sans);
  }

  .contact-page .footer__links {
    gap: 13px;
  }

  .contact-page .footer__links--services {
    gap: 13px 26px;
  }

  .contact-page .footer__links a {
    color: var(--contact-ink);
    font: 400 15px/1.45 var(--sans);
  }

  .contact-page .footer__contact-row {
    color: var(--contact-ink);
    font-size: 15px;
  }

  .contact-page .footer__legal {
    height: auto;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(168, 85, 247, 0) 0%, rgba(168, 85, 247, 0.2) 40%, rgba(168, 85, 247, 0.2) 60%, rgba(168, 85, 247, 0) 100%) 1;
  }

  .contact-page .footer__legal p,
  .contact-page .footer__legal a {
    color: var(--contact-ink);
    font: 400 13px/1.5 var(--sans);
  }
}

@media (max-width: 1399.98px) {

  .contact-page h2,
  .contact-page .contact__copy h2 {
    font-size: clamp(46px, 4.2vw, 58px);
    line-height: 1.12;
  }

  .contact-start__copy {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    padding-left: 22px;
  }

  .contact-start__list li {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-start__actions {
    gap: 12px;
  }

  .contact-start__actions .button {
    min-width: 0;
    font-size: 13px;
  }

  .contact-process__card {
    padding: 24px;
  }

  .contact-process__card h3 {
    font-size: 18px;
  }

  .contact-trust__content {
    width: 50%;
    margin-left: 0;
    padding-left: 20px;
  }

  .contact-trust__card {
    padding: 18px;
  }

  .contact-page .contact-form {
    width: calc(100% - 20px);
    margin-left: 20px;
  }
}

@media (max-width: 1199.98px) {
  .contact-page .site-header {
    height: 84px;
  }

  .hero.contact-hero {
    height: auto;
    min-height: 900px;
    padding: 84px 0 420px;
  }

  .hero.contact-hero h1 {
    font-size: clamp(48px, 6.2vw, 66px);
    line-height: 1.12;
  }

  .hero.contact-hero .hero-books {
    bottom: 74px;
  }

  .contact-start {
    min-height: 0;
    padding: 88px 0;
  }

  .contact-start__visual {
    padding-top: 120px;
  }

  .contact-process {
    height: auto;
    min-height: 0;
    padding: 88px 0 104px;
    background-size: cover;
  }

  .contact-process__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    margin-top: 44px;
  }

  .contact-process__card,
  .contact-process__card:nth-of-type(2),
  .contact-process__card:nth-of-type(3),
  .contact-process__card:nth-of-type(4),
  .contact-process__card:nth-of-type(1):hover,
  .contact-process__card:nth-of-type(2):hover,
  .contact-process__card:nth-of-type(3):hover,
  .contact-process__card:nth-of-type(4):hover {
    height: auto;
    min-height: 202px;
    top: auto;
    transform: none;
  }

  .contact-process__card:hover {
    transform: translateY(-5px);
  }

  .contact-process__arrow {
    display: none;
  }

  .contact-trust {
    height: auto;
    min-height: 0;
    padding: 88px 0;
  }

  .contact-trust__art {
    margin-left: 0;
  }

  .contact-page .contact {
    height: auto;
    min-height: 0;
    padding: 88px 0;
  }

  .contact-page .contact-form {
    width: calc(100% - 16px);
    min-height: 0;
    margin-left: 16px;
  }
}

@media (max-width: 991.98px) {
  .hero.contact-hero {
    min-height: 830px;
    padding: 68px 0 350px;
  }

  .hero.contact-hero .contact-hero__description {
    max-width: 720px;
    font-size: 18px;
    line-height: 27px;
  }

  .hero.contact-hero .hero-books {
    bottom: 46px;
    width: min(600px, 88vw);
    height: auto;
  }

  .hero.contact-hero .hero-books img {
    width: 100%;
    height: auto;
  }

  .contact-start__visual {
    padding-top: 0;
    text-align: center;
  }

  .contact-start__visual img {
    margin: 0 auto 64px;
  }

  .contact-start__copy {
    padding-left: 0;
  }

  .contact-start__actions {
    justify-content: flex-start;
  }

  .contact-trust__content {
    width: 100%;
    margin-top: 56px;
    padding-left: 0;
  }

  .contact-trust__art {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-trust__action {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-page .contact__copy {
    margin-bottom: 46px;
    text-align: left;
  }

  .contact-page .contact__copy>.eyebrow {
    margin-right: 0;
    margin-left: 0;
  }

  .contact-page .contact-form {
    width: 100%;
    max-width: 646px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {

  .contact-page__pill,
  .contact-page .contact__copy>.eyebrow {
    width: fit-content;
    min-height: 42px;
    padding: 0 24px;
    font-size: 14px;
  }

  .contact-page .contact__copy>.eyebrow::after {
    font-size: 14px;
  }

  .contact-page h2,
  .contact-page .contact__copy h2 {
    font-size: clamp(38px, 9vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .hero.contact-hero {
    min-height: 760px;
    padding: 56px 0 300px;
  }

  .hero.contact-hero h1 {
    font-size: clamp(42px, 11vw, 56px);
    line-height: 1.08;
  }

  .hero.contact-hero .contact-hero__description {
    font-size: 16px;
    line-height: 24px;
  }

  .hero.contact-hero .hero-books {
    bottom: 40px;
  }

  .contact-start,
  .contact-trust,
  .contact-page .contact {
    padding: 68px 0;
  }

  .contact-start__copy>p:not(.contact-page__pill),
  .contact-start__list li,
  .contact-page .contact__lede {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-start__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-start__actions .button {
    width: 100%;
  }

  .contact-process {
    padding: 68px 0 76px;
  }

  .contact-process__head>p:last-child {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-process__cards,
  .contact-trust__cards {
    grid-template-columns: 1fr;
  }

  .contact-process__card,
  .contact-process__card:nth-of-type(2),
  .contact-process__card:nth-of-type(3),
  .contact-process__card:nth-of-type(4) {
    min-height: 0;
    top: auto;
  }

  .contact-trust__card {
    min-height: 0;
  }

  .contact-page .contact-form {
    padding: 28px 22px;
  }

  .contact-page .contact-form__cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .contact-page .site-header {
    height: 76px;
  }

  .hero.contact-hero {
    min-height: 720px;
    padding-top: 48px;
  }

  .hero.contact-hero .eyebrow-parent {
    min-height: 42px;
  }

  .hero.contact-hero .actions {
    width: 100%;
    margin-top: 30px;
  }

  .contact-start__visual img {
    max-width: 100%;
    margin-bottom: 48px;
  }

  .contact-trust__art {
    max-width: 100%;
  }

  .contact-page .contact-form__field span {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .contact-process__card,
  .contact-trust__card {
    transition: none;
  }
}

/* Book Illustration + Author Website trust section — Figma groups 273:386 / 273:1300. */
.service-page--book-illustration .illustration-trust>.container {
  width: min(1362px, calc(100% - 48px));
  max-width: 1362px;
  padding-right: 0;
  padding-left: 0;
}

.service-page--book-illustration .illustration-trust__intro .section-pill {
  width: 253px;
  white-space: nowrap;
}

.service-page--book-illustration .illustration-trust__intro h2 {
  width: 100%;
  max-width: 671px;
  margin: 0 0 20px;
  font-size: 60px;
  line-height: 68px;
  letter-spacing: -1.2px;
}

.service-page--book-illustration .illustration-trust__intro>p:last-of-type {
  width: min(576px, 100%);
  margin: 0 !important;
  color: var(--illustration-ink);
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.service-page--book-illustration .illustration-trust__intro img {
  width: 593px;
  max-width: 100%;
  height: auto;
  margin-top: 42px;
}

.service-page--book-illustration .illustration-trust__card {
  min-height: 186.118px;
  padding: 20.565px;
  border-radius: 20.565px;
  transition:
    translate 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  will-change: translate;
}

@media (hover: hover) and (pointer: fine) {
  .service-page--book-illustration .illustration-trust__card:hover {
    translate: 0 -7px;
    box-shadow: 0 18px 38px rgba(62, 48, 80, 0.12);
  }
}

.service-page--book-illustration .illustration-trust__card--lilac {
  border-color: #ddd6fe;
}

.service-page--book-illustration .illustration-trust__card--pink {
  border-color: #fbcfe8;
}

.service-page--book-illustration .illustration-trust__card--blue {
  border-color: #bae6fd;
}

.service-page--book-illustration .illustration-trust__card--green {
  border-color: #bbf7d0;
}

.service-page--book-illustration .illustration-trust__card--orange {
  border-color: #fed7aa;
}

.service-page--book-illustration .illustration-trust__card h3 {
  margin: 0 0 3px;
  color: var(--illustration-ink);
  font-size: 18.5px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.37px;
}

.service-page--book-illustration .illustration-trust__card p {
  margin: 0;
  color: var(--illustration-ink);
  font-size: 14.4px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: -0.288px;
}

.service-page--book-illustration .illustration-trust__closing {
  width: 100%;
  max-width: 691px;
  margin: 20px 0 30px;
  color: var(--illustration-ink);
  font: 400 18px/27px var(--sans);
  letter-spacing: -0.36px;
}

.service-page--book-illustration .illustration-trust__content>.button {
  width: 170px;
  min-width: 170px;
  height: 54px;
  min-height: 54px;
  padding: 13px 25px;
  border-radius: 40px;
  font-size: 16px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .service-page--book-illustration .illustration-trust>.container>.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: grid;
    grid-template-columns: minmax(0, 671fr) minmax(0, 691fr);
    margin: 0;
  }

  .service-page--book-illustration .illustration-trust>.container>.row>[class*="col-"] {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .service-page--book-illustration .illustration-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20.565px;
    margin: 0;
    padding-top: 58px;
  }

  .service-page--book-illustration .illustration-trust__grid>[class*="col-"] {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .service-page--book-illustration .illustration-trust__grid>.col-12 {
    grid-column: 1 / -1;
  }

  .service-page--book-illustration .illustration-trust__grid .col-12 .illustration-trust__card {
    min-height: 117px;
  }

  .service-page--author-website .illustration-trust__grid .col-12 .illustration-trust__card {
    min-height: 139px;
  }
}

@media (max-width: 991.98px) {
  .service-page--book-illustration .illustration-trust__intro h2 {
    font-size: clamp(42px, 8vw, 56px);
    line-height: 1.12;
  }

  .service-page--book-illustration .illustration-trust__grid .illustration-trust__card {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .service-page--book-illustration .illustration-trust__intro .section-pill {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .service-page--book-illustration .illustration-trust__intro h2 {
    font-size: clamp(38px, 10vw, 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-page--book-illustration .illustration-trust__card {
    transition: none;
  }

  .service-page--book-illustration .illustration-trust__card:hover {
    translate: none;
  }
}

/* Header and shared hero polish: compact entry spacing with a calm auto-hide header. */
.site-header {
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(232, 220, 240, 0.72);
  box-shadow: 0 10px 32px rgba(62, 48, 80, 0.1);
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 2px), 0);
}

.site-header.is-menu-open {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) {
  .hero {
    padding-top: 48px;
  }

  .hero.about-hero {
    padding-top: 46px;
  }

  .hero.contact-hero {
    padding-top: 52px;
  }

  body.service-page .page-hero {
    padding-top: 52px;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 34px;
  }

  .hero.about-hero,
  .hero.contact-hero,
  body.service-page .page-hero {
    padding-top: 42px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 28px;
  }

  .hero.about-hero,
  .hero.contact-hero,
  body.service-page .page-hero {
    padding-top: 34px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 22px;
  }

  .hero.about-hero,
  .hero.contact-hero,
  body.service-page .page-hero {
    padding-top: 28px;
  }
}

/* Book Marketing FAQ: exact Figma gradient and low-opacity book pattern. */
body.service-page--marketing-services #faq.faq {
  background: linear-gradient(to top,
      rgba(237, 233, 254, 0.4) 0%,
      rgba(255, 247, 237, 0.4) 100%);
}

body.service-page--marketing-services #faq.faq::before {
  background: url("../img/book-marketing/faq-background.png") lightgray 0 0 / 99.978% 190.678% no-repeat;
  mix-blend-mode: plus-darker;
  opacity: 0.02;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

/* Contact page: keep clear breathing room below the consultation button. */
.contact-page .contact-form {
  padding-bottom: 62px;
}

@media (max-width: 767.98px) {
  .contact-page .contact-form {
    padding-bottom: 46px;
  }
}

/* Keep the visual gap inside the action row too. This remains visible even
 * when Bootstrap's form-row gutters or a fixed section height are in play. */
.contact-page .contact-form__actions {
  padding-bottom: 30px;
}

@media (min-width: 1200px) {
  .contact-page .contact {
    height: auto;
    min-height: 880px;
  }
}

/* The form can be taller than the original fixed desktop composition.
 * Let the section size itself to its real content so the footer never cuts
 * through the form or begins behind its submit area. */
.contact-page .contact {
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 100px;
}

/* =========================================================
   Thank You page — Figma node 828:133
========================================================= */


.thank-you-page .thank-you {
  overflow: hidden;
  background: #fff;
}

.thank-you-page .thank-you__hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background: linear-gradient(180deg, rgba(242, 237, 254, 0.6) 0%, rgba(255, 234, 250, 0.6) 100%);
}

.thank-you-page .thank-you__hero > .thank-you__hero-inner {
  position: relative;
  z-index: 1;
  /*
   * Override the legacy thank-you panel's 760px cap. The step cards need the
   * full desktop grid width so they keep their intended compact proportions.
   */
  max-width: min(1362px, calc(100% - 48px));
}

.thank-you-page .thank-you__hero > .hero-wm {
  width: clamp(84px, 10vw, 190px);
}

.thank-you-page .thank-you__hero > .hero-wm .hero-wm__text {
  font-size: clamp(88px, 10.15vw, 195px);
  letter-spacing: -0.06em;
}

.thank-you-page .thank-you__intro {
  max-width: 1000px;
  margin: 0 auto 44px;
  text-align: center;
}

.thank-you-page .thank-you__pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 10px 33px 11px;
  border: 1px solid #e9d5ff;
  border-radius: 140px;
  background: #f5e8ff;
  color: #3e3050;
  font: 300 18px/1 var(--sans);
  letter-spacing: -0.02em;
}

.thank-you-page .thank-you__check {
  display: grid;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9a5fc 0%, #898bf8 100%);
  box-shadow: 0 15px 28px rgba(137, 139, 248, 0.24);
}

.thank-you-page .thank-you__check span {
  color: #fff;
  font: 700 64px/1 var(--sans);
  transform: translateY(-2px);
}

.thank-you-page .thank-you__intro h1 {
  max-width: 1170px;
  margin: 0 auto 20px;
  color: #3e3050;
  font: 700 clamp(42px, 4.15vw, 70px)/1.14 var(--serif);
  letter-spacing: -0.035em;
}

.thank-you-page .thank-you__intro>p:last-child {
  max-width: 920px;
  margin: 0 auto;
  color: #3e3050;
  font: 400 20px/1.45 var(--sans);
  letter-spacing: -0.02em;
}

.thank-you-page .thank-you__steps {
  max-width: 1100px;
  margin: 0 auto;
}

.thank-you-page .thank-you-step {
  min-height: 290px;
  padding: 39px;
  border: 1px solid transparent;
  border-radius: 20px;
}

@media (min-width: 1200px) {
  .thank-you-page .thank-you-step {
    height: 290px;
  }
}

.thank-you-page .thank-you-step--email {
  border-color: #fbcfe8;
  background: #fce7f3;
}

.thank-you-page .thank-you-step--strategy {
  border-color: #ddd6fe;
  background: #ede9fe;
}

.thank-you-page .thank-you-step--launch {
  border-color: #bbf7d0;
  background: #dcfce7;
}

.thank-you-page .thank-you-step__icon {
  display: grid;
  width: 66px;
  height: 67px;
  margin-bottom: 10px;
  place-items: center;
  border: 1px solid #f4dbe8;
  border-radius: 15px;
  background: #fff;
  color: #8b5cf6;
  font: 500 27px/1 var(--sans);
}

.thank-you-page .thank-you-step__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.thank-you-page .thank-you-step__number {
  margin: 0 0 32px;
  color: #3e3050;
  font: 400 16px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.thank-you-page .thank-you-step h2 {
  margin: 0 0 10px;
  color: #3e3050;
  font: 600 22px/1.2 var(--sans);
  letter-spacing: -0.02em;
}

.thank-you-page .thank-you-step>p:last-child {
  max-width: 355px;
  margin: 0;
  color: #3e3050;
  font: 400 16px/1.45 var(--sans);
  letter-spacing: -0.02em;
}

.thank-you-page .thank-you-testimonial {
  padding: 100px 0;
  background: #fff;
}

.thank-you-page .thank-you-testimonial__cover {
  width: min(100%, 548px);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: inset 4px 0 13px rgba(0, 0, 0, .45);
}

.thank-you-page .thank-you-testimonial__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.thank-you-page .thank-you-testimonial__content {
  max-width: 814px;
}

.thank-you-page .thank-you-testimonial__content>.thank-you__pill {
  margin-bottom: 20px;
}

.thank-you-page .thank-you-testimonial h2 {
  max-width: 670px;
  margin: 0 0 32px;
  color: #3e3050;
  font: 700 clamp(38px, 3.55vw, 60px)/1.12 var(--serif);
  letter-spacing: -0.035em;
}

.thank-you-page .thank-you-testimonial__quote {
  position: relative;
  min-height: 349px;
  padding: 80px 64px 46px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  background: #fff7ed;
}

.thank-you-page .thank-you-testimonial__stars {
  margin: 0 0 14px;
  color: #3e3050;
  font-size: 18px;
  letter-spacing: 4px;
}

.thank-you-page .thank-you-testimonial h3 {
  margin: 0 0 3px;
  color: #3e3050;
  font: 600 22px/1.2 var(--sans);
}

.thank-you-page .thank-you-testimonial__role {
  margin: 0 0 58px;
  color: #3e3050;
  font: 300 18px/1.2 var(--sans);
}

.thank-you-page .thank-you-testimonial blockquote {
  max-width: 688px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(62, 48, 80, .16);
  color: #3e3050;
  font: 400 18px/1.45 var(--sans);
  letter-spacing: -0.02em;
}

.thank-you-page .thank-you-testimonial__quotes {
  position: absolute;
  top: 14px;
  right: 42px;
  color: rgba(255, 255, 255, .75);
  font: 700 172px/.8 var(--serif);
}

.thank-you-page .thank-you-testimonial__controls {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.thank-you-page .thank-you-testimonial__controls span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: #dcfce7;
  color: #3e3050;
  font: 500 16px/1 var(--sans);
}

.thank-you-page .thank-you-testimonial__controls span+span {
  background: #fef9c3;
}

.thank-you-page .contact {
  height: auto !important;
  min-height: 0 !important;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(109deg, #e9a5fc 0%, #898bf8 100%);
}

.thank-you-page .contact__copy>.eyebrow {
  min-height: 42px;
  margin-bottom: 20px;
  padding: 10px 33px 11px;
  border: 1px solid #e9d5ff;
  background: #f5e8ff;
}

.thank-you-page .contact__copy>.eyebrow::after {
  color: #3e3050;
  content: "LET'S WRITE TOGETHER";
  font-size: 18px;
  font-weight: 300;
}

.thank-you-page .contact__copy h2 {
  max-width: 669px;
  margin-bottom: 20px;
  font-size: clamp(42px, 3.55vw, 60px);
  line-height: 1.13;
}

.thank-you-page .contact-form {
  width: 646px;
  max-width: 100%;
  min-height: 0;
  margin-left: auto;
  padding: 37px 37px 58px;
  border: 0;
  background: #d8cfff;
  box-shadow: none;
}

.thank-you-page .contact-form>.row {
  --bs-gutter-x: 17px;
  --bs-gutter-y: 20px;
}

.thank-you-page .contact-form__field span {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
}

.thank-you-page .contact-form__field input,
.thank-you-page .contact-form__field textarea,
.thank-you-page .contact-select__trigger {
  min-height: 54px;
  border-radius: 7px;
  background: #c5b8ff;
}

.thank-you-page .contact-form__field textarea {
  min-height: 137px;
}

.thank-you-page .contact-form__actions {
  padding: 14px 0 0;
}

.thank-you-page .contact-form__cta {
  min-width: 321px;
  min-height: 54px;
}

@media (max-width: 1199.98px) {
  .thank-you-page .site-header { height: 76px; }
  .thank-you-page .thank-you__hero { padding-top: 72px; }
  .thank-you-page .thank-you-testimonial__cover { margin: 0 auto; }
  .thank-you-page .thank-you-testimonial__content { max-width: 814px; margin: 0 auto; }
  .thank-you-page .contact-form { margin: 0 auto; }
}

@media (max-width: 767.98px) {
  .thank-you-page .thank-you__hero { padding: 56px 0; }
  .thank-you-page .thank-you__hero > .hero-wm { display: none; }
  .thank-you-page .thank-you__intro { margin-bottom: 32px; }
  .thank-you-page .thank-you__pill { min-height: 36px; margin-bottom: 15px; padding: 8px 22px; font-size: 14px; }
  .thank-you-page .thank-you__check { width: 78px; height: 78px; margin-bottom: 18px; }
  .thank-you-page .thank-you__check span { font-size: 44px; }
  .thank-you-page .thank-you__intro h1 { font-size: clamp(37px, 10vw, 52px); }
  .thank-you-page .thank-you__intro>p:last-child { font-size: 16px; line-height: 1.5; }
  .thank-you-page .thank-you-step { height: auto; min-height: 0; padding: 26px 22px; }
  .thank-you-page .thank-you-step__icon { width: 56px; height: 56px; }
  .thank-you-page .thank-you-step__number { margin-bottom: 22px; font-size: 13px; }
  .thank-you-page .thank-you-step h2 { font-size: 20px; }
  .thank-you-page .thank-you-step>p:last-child { font-size: 15px; }
  .thank-you-page .thank-you-testimonial { padding: 66px 0; }
  .thank-you-page .thank-you-testimonial h2 { margin-bottom: 24px; font-size: clamp(36px, 9vw, 48px); }
  .thank-you-page .thank-you-testimonial__quote { min-height: 0; padding: 42px 24px 30px; border-radius: 20px; }
  .thank-you-page .thank-you-testimonial__role { margin-bottom: 28px; }
  .thank-you-page .thank-you-testimonial blockquote { font-size: 16px; }
  .thank-you-page .thank-you-testimonial__quotes { top: 6px; right: 18px; font-size: 110px; }
  .thank-you-page .contact { padding: 68px 0; }
  .thank-you-page .contact__copy { margin-bottom: 42px; }
  .thank-you-page .contact-form { padding: 28px 22px 42px; }
  .thank-you-page .contact-form__cta { width: 100%; min-width: 0; }
}

/* Book Publishing service cards
 * Keep this five-card section independent from other service-page grids.
 * The shared grid is two columns from 576px to 767px; that is too cramped
 * for these long publishing descriptions, so this section intentionally
 * becomes one clean card per row on every phone width. */
#book-publishing-services .services__lede {
  max-width: 470px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #book-publishing-services .service-grid.row,
  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell,
  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(4),
  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(5) {
    grid-column: auto;
  }

  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px) !important;
    justify-self: center;
  }

  #book-publishing-services .service-card {
    min-height: 0;
    padding: 28px 24px 26px;
  }
}

@media (max-width: 767.98px) {
  #book-publishing-services {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  #book-publishing-services .services__head {
    margin-bottom: 26px;
  }

  #book-publishing-services .services__intro {
    gap: 14px;
  }

  #book-publishing-services .services__lede {
    max-width: 34rem;
  }

  #book-publishing-services .service-grid.row,
  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child) {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell,
  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(4),
  #book-publishing-services .service-grid.row:has(> .services__cell:nth-child(5):last-child)>.services__cell:nth-child(5) {
    grid-column: auto;
    width: 100% !important;
  }

  #book-publishing-services .service-card {
    min-height: 0;
    height: auto;
    padding: 22px 20px 20px;
    border-radius: 16px;
  }

  #book-publishing-services .service-card>i {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
  }

  #book-publishing-services .service-card>i img {
    width: 30px;
    height: 30px;
  }

  #book-publishing-services .service-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  #book-publishing-services .service-card p {
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.52;
  }
}

@media (max-width: 575.98px) {
  #book-publishing-services {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  #book-publishing-services .service-card {
    padding: 20px 18px;
  }
}

/* Mobile navigation fail-safe
 * Older responsive rules use display:none for the same <nav>. Keep the
 * drawer state explicit at the end of the cascade so opening the menu can
 * never leave only a locked backdrop on screen. */
@media (max-width: 1199.98px) {
  .site-header.is-menu-open,
  .site-header.is-menu-preparing {
    z-index: 1300;
    /*
     * A parent with will-change: transform becomes the containing block for
     * fixed descendants in mobile Chrome/Safari. Clear it while the drawer
     * is open so both the drawer and its backdrop use the actual viewport,
     * even after the visitor has scrolled far down the page.
     */
    transform: none !important;
    will-change: auto !important;
    transition: none !important;
  }

  .site-header.is-menu-open .nav {
    z-index: 1302;
  }

  .site-header.is-menu-open [data-primary-nav].is-open {
    position: fixed !important;
    z-index: 1303 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }

  .site-header.is-menu-open .nav-backdrop.is-active {
    z-index: 1301 !important;
    display: block !important;
  }

  /* Keep the trigger available as a familiar close control if the user
   * needs to dismiss the drawer on a small screen. */
  .site-header.is-menu-open .menu {
    z-index: 1304;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Top Book Marketing thank-you page. */
.thank-you {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 248, 253, .94) 0%, rgba(244, 237, 255, .9) 50%, rgba(237, 248, 255, .94) 100%),
    url("../img/startearly.png") center / cover no-repeat;
}

.thank-you__hero {
  display: grid;
  min-height: min(720px, calc(100vh - 88px));
  padding: 90px 0;
  place-items: center;
}

.thank-you__hero > .container {
  max-width: 760px;
}

.thank-you__panel {
  text-align: center;
  border: 1px solid rgba(210, 188, 240, .72);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(76, 52, 104, .08);
  padding: clamp(44px, 7vw, 84px) clamp(28px, 7vw, 92px);
  background: rgba(255, 255, 255, .7);
}

.thank-you__eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 9px 18px;
  border: 1px solid #e4cdfb;
  border-radius: 999px;
  background: #f4e8ff;
  color: #594967;
  font: 500 12px/1 var(--sans);
}

.thank-you__mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid #d9c4f7;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9c4ff, #b373fa);
  box-shadow: 0 12px 28px rgba(161, 100, 231, .24);
  color: #fff;
  font: 600 35px/1 var(--sans);
}

.thank-you h1 {
  max-width: 620px;
  margin: 0 auto;
  color: #3e3050;
  font: 700 clamp(42px, 5vw, 68px)/1.04 var(--serif);
  letter-spacing: -.05em;
}

.thank-you__lede {
  max-width: 510px;
  margin: 24px auto 32px;
  color: #5d5169;
  font: 400 17px/1.6 var(--sans);
}

.thank-you__home {
  min-height: 52px;
  padding: 15px 25px;
}

@media (max-width: 991.98px) {
  .thank-you__hero {
    min-height: 0;
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .thank-you__hero {
    padding: 52px 0;
  }

  .thank-you__panel {
    border-radius: 18px;
  }

  .thank-you__panel {
    padding: 30px 23px;
  }

  .thank-you__lede {
    font-size: 15px;
  }

  .thank-you__home {
    width: 100%;
  }
}

/* Final responsive pass: shared audience tabs and Thank You steps. */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .thank-you-page .thank-you__steps {
    max-width: 960px;
  }

  .thank-you-page .thank-you-step {
    min-height: 322px;
    padding: 34px;
  }

  .illustration-audience {
    padding: 76px 0;
  }

  .illustration-audience .illustration-section-head {
    margin-bottom: 30px;
  }

  .illustration-audience__tabs {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .illustration-audience__nav {
    min-height: 224px;
    padding: 22px;
    border-radius: 20px 20px 0 0;
  }

  .illustration-audience__panel {
    min-height: 300px;
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 767.98px) {
  .illustration-audience {
    padding: 58px 0;
  }

  .illustration-audience .illustration-section-head {
    margin-bottom: 24px;
  }

  .illustration-audience .illustration-section-head h2 {
    font-size: clamp(34px, 9.5vw, 46px);
  }

  .illustration-audience .illustration-section-head > div:last-child > p {
    font-size: 15px;
    line-height: 1.55;
  }

  .illustration-audience__tabs {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .illustration-audience__nav {
    min-height: 0;
    flex-direction: column;
    gap: 7px;
    padding: 14px;
    border-radius: 16px 16px 0 0;
  }

  .illustration-audience__tab,
  .illustration-audience__tab.is-active {
    min-height: 58px;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    margin-top: 0;
    transform: none;
  }

  .illustration-audience__tab:hover,
  .illustration-audience__tab:focus-visible {
    transform: none;
  }

  .illustration-audience__tab span {
    writing-mode: horizontal-tb;
    text-align: left;
    font-size: 15px;
  }

  .illustration-audience__tab b {
    align-self: auto;
    margin-left: auto;
    font-size: 26px;
  }

  .illustration-audience__panel {
    min-height: 280px;
    padding: 24px 20px;
    border-radius: 0 0 16px 16px;
  }

  .illustration-audience__panel > span {
    font-size: 40px;
  }

  .illustration-audience__panel h3 {
    font-size: 20px;
  }

  .illustration-audience__panel p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Chapter 03 already has internal top padding. Avoid combining that padding
 * with the larger global section anchor offset when arriving from Home. */
#what-we-do {
  scroll-margin-top: 12px;
}

/* Contact hero: keep the CTA and artwork in normal flow on tablets/phones.
 * This removes the old absolute-artwork spacer and prevents overlap. */
@media (max-width: 1199.98px) {
  .hero.contact-hero {
    height: auto;
    min-height: 0;
    padding: 64px 0 52px;
  }

  .hero.contact-hero .contact-hero__inner {
    height: auto;
  }

  .hero.contact-hero .hero-books {
    position: relative;
    inset: auto;
    left: auto;
    bottom: auto;
    width: min(680px, 88vw);
    height: auto;
    margin: 34px auto 0;
    transform: none;
    animation: hero-books-in-flow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  }

  .hero.contact-hero .hero-books img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 991.98px) {
  .hero.contact-hero {
    padding: 52px 0 42px;
  }

  .hero.contact-hero .hero-books {
    width: min(600px, 90vw);
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero.contact-hero {
    padding: 38px 0 32px;
  }

  .hero.contact-hero .actions {
    position: relative;
    z-index: 2;
    margin-top: 26px;
  }

  .hero.contact-hero .hero-books {
    width: min(460px, 94vw);
    margin-top: 26px;
  }
}

@media (max-width: 575.98px) {
  .hero.contact-hero {
    padding: 30px 0 24px;
  }

  .hero.contact-hero .hero-books {
    width: min(390px, 96vw);
    margin-top: 22px;
  }
}

/* Amazon book marketing: dedicated Figma 3 + 2 services grid. */
.amazon-services {
  position: relative;
  overflow: hidden;
  padding: 92px 0 108px;
  background:
    linear-gradient(180deg, rgba(255, 247, 253, .92) 0%, rgba(239, 248, 255, .94) 100%),
    url("../img/startearly.png") center / cover no-repeat;
}

.amazon-services__head {
  /* max-width: 1040px; */
  margin: 0 auto 36px;
}

.amazon-services__eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 24px;
  border: 1px solid #ead7ff;
  border-radius: 999px;
  background: #f4e8ff;
  color: #594967;
  font: 400 12px/1 var(--sans);
  letter-spacing: 0;
}

.amazon-services__head h2 {
  max-width: 570px;
  margin: 0;
  color: #3e3050;
  font: 700 clamp(38px, 4.1vw, 58px)/1.03 var(--serif);
  letter-spacing: -.045em;
}

.amazon-services__lede {
  max-width: 520px;
  margin: 0 0 6px auto;
  color: #574c64;
  font: 400 15px/1.55 var(--sans);
}

.amazon-services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  /* max-width: 1040px; */
  margin: 0 auto;
}

.amazon-service-card {
  --amazon-card-accent: #9274ef;
  --amazon-card-border: #d9cdfd;
  position: relative;
  grid-column: span 2;
  min-width: 0;
  min-height: 350px;
  padding: 45px 28px 28px;
  border: 1px solid var(--amazon-card-border);
  border-radius: 16px;
  color: #3e3050;
}

.amazon-service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.amazon-service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.amazon-service-card--lilac {
  --amazon-card-accent: #8b6ef0;
  --amazon-card-border: #d8cdfb;
  background: #eee9ff;
}

.amazon-service-card--blue {
  --amazon-card-accent: #0aa6d8;
  --amazon-card-border: #b9e4f7;
  background: #dff4ff;
}

.amazon-service-card--pink {
  --amazon-card-accent: #eb4ea1;
  --amazon-card-border: #f7c5df;
  background: #fde7f3;
}

.amazon-service-card--orange {
  --amazon-card-accent: #f16822;
  --amazon-card-border: #f8cca5;
  background: #fff5e9;
}

.amazon-service-card--yellow {
  --amazon-card-accent: #d49b00;
  --amazon-card-border: #f1df75;
  background: #fff9bf;
}

.amazon-service-card__label {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 14px;
  border-radius: 999px;
  color: #51475c;
  font: 500 9px/1 var(--sans);
  letter-spacing: -.01em;
  text-align: center;
  white-space: nowrap;
}

.amazon-service-card--lilac .amazon-service-card__label { background: #ddd3ff; }
.amazon-service-card--blue .amazon-service-card__label { background: #bcecff; }
.amazon-service-card--pink .amazon-service-card__label { background: #f9cce4; }
.amazon-service-card--orange .amazon-service-card__label { background: #ffd9ad; }
.amazon-service-card--yellow .amazon-service-card__label { background: #fff08a; }

.amazon-service-card h3 {
  margin: 0 0 7px;
  color: #3e3050;
  font: 600 20px/1.2 var(--sans);
  letter-spacing: -.025em;
}

.amazon-service-card>p {
  margin: 0 0 18px;
  color: #675b72;
  font: 400 13px/1.45 var(--sans);
}

.amazon-service-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amazon-service-card li {
  position: relative;
  padding-left: 16px;
  color: #655a70;
  font: 400 12px/1.4 var(--sans);
}

.amazon-service-card li::before {
  content: "";
  position: absolute;
  top: .48em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amazon-card-accent);
}

.amazon-service-card li strong,
.amazon-service-card li span {
  display: block;
}

.amazon-service-card li strong {
  margin-bottom: 3px;
  color: #4b4058;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .amazon-services {
    padding: 76px 0 88px;
  }

  .amazon-services__head {
    max-width: 720px;
    margin-bottom: 30px;
    text-align: center;
  }

  .amazon-services__head h2,
  .amazon-services__lede {
    margin-right: auto;
    margin-left: auto;
  }

  .amazon-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .amazon-service-card,
  .amazon-service-card:nth-child(4),
  .amazon-service-card:nth-child(5) {
    grid-column: auto;
  }

  .amazon-service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }
}

@media (max-width: 767.98px) {
  .amazon-services {
    padding: 62px 0 70px;
  }

  .amazon-services__head h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .amazon-services__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .amazon-service-card,
  .amazon-service-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    padding: 48px 22px 26px;
  }
}

@media (max-width: 420px) {
  .amazon-service-card__label {
    right: auto;
    left: 12px;
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
