/* ============================================================
   GRAPHIKER — styles.css
   Onest font · custom CSS · no framework
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Base */
  --ink: #0B1A33;
  --paper: #F7F6F3;
  --white: #FFFFFF;

  /* Signal */
  --signal: #3D4FCC;
  --signal-deep: #2D3BA8;
  --signal-wash: #E8EBFA;
  --signal-lift: #9B8DFF;
  --signal-lift-hi: #B7ACFF;

  /* Ember */
  --ember: #FF7A4D;
  --ember-deep: #D85A30;
  --ember-wash: #FCE7DC;

  /* Ink ramp */
  --ink-70: #3A4761;
  --ink-50: #7A8395;
  --ink-25: #C7CCD6;
  --ink-10: #EBEDF0;

  /* Misc */
  --gold: #F5A623;

  /* Layout */
  --container: 1200px;
  --pad-x: 64px;
  --pad-x-mobile: 24px;
  --section-y: 96px;
  --section-y-mobile: 64px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s var(--ease);
  --t-base: 0.24s var(--ease);
}

/* ---------- 2. RESET / BASE ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-70);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

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

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--signal); color: var(--white); }

/* Layout helper */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- 3. SHARED PRIMITIVES ---------- */

/* Eyebrow label */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--signal);
}
.eyebrow--lift  { color: var(--signal-lift); }
.eyebrow--ember { color: var(--ember); }
.eyebrow--ink50 { color: var(--ink-50); }

/* Buttons — all fully rounded */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  border-radius: 100px;
  padding: 13px 26px;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

.btn--signal {
  background: var(--signal);
  color: var(--white);
}
.btn--signal:hover { background: var(--signal-deep); }

.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 12px 22px;
}
.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline-light:hover { background: var(--ink); color: var(--white); }

.btn--pill { padding: 9px 18px; font-size: 12px; }

/* Lift text helper */
.text-lift { color: var(--signal-lift-hi); }

/* Eyebrow pill (hero — outlined on dark) */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 141, 255, 0.1);
  border: 1px solid rgba(155, 141, 255, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--signal-lift);
}
.eyebrow-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-lift);
  box-shadow: 0 0 0 3px rgba(155, 141, 255, 0.18);
}

/* Hero headline highlight — coloured text only (no pill) */
.hero__highlight {
  color: var(--signal-lift-hi);
}

/* ---------- 4. NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  height: 60px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}
.nav.is-scrolled { border-bottom-color: rgba(255, 255, 255, 0.08); }

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 22px;
  width: auto;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}
.nav__links a:hover { color: rgba(255, 255, 255, 1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__bookcall {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}
.nav__bookcall:hover { color: rgba(255, 255, 255, 1); }

/* Hamburger toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--t-base), opacity var(--t-fast);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 5. HERO ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px var(--pad-x) 96px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  min-height: 600px;
  align-items: center;
}

/* LEFT */
.hero__left { max-width: 640px; }

.hero__h1 {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.12;
  color: var(--white);
  margin: 20px 0 22px;
}

.hero__sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Whenevr-style book-a-call button */
.callbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 0;
  border-radius: 100px;
  padding: 6px 22px 6px 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-base);
}
.callbtn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.callbtn:active { transform: scale(0.99); }

.callbtn__avatar {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.callbtn__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  background: var(--ink-10);
}
.callbtn__dot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
}

.callbtn__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.callbtn__line1 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.callbtn__line2 {
  font-size: 11px;
  font-weight: 400;
  color: #22C55E;
}

/* Social proof */
.hero__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Photo avatar cluster — used in hero + testimonials */
.avatar-cluster {
  display: inline-flex;
  align-items: center;
}
.avatar-cluster .avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #FFFFFF;
  margin-left: -10px;
  background: var(--ink-10);
}
.avatar-cluster .avatar-circle:first-child {
  margin-left: 0;
}

/* On dark navy surfaces, border matches the bg so the cluster reads as separation, not a white outline */
.hero .avatar-cluster .avatar-circle,
.testi .avatar-cluster .avatar-circle {
  border-color: var(--ink);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.hero__trust {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

/* Stats row */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat__num {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

/* RIGHT — Auto-scroll carousel (desktop: two vertical columns) */
.hero-carousel {
  display: flex;
  gap: 16px;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-column {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}

.carousel-track img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: rgba(255, 255, 255, 0.04);
}

.carousel-track--up-slow {
  animation: scroll-up 40s linear infinite;
}

.carousel-track--up-fast {
  animation: scroll-up 32s linear infinite;
}

@keyframes scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Pause animation on hover so users can see specific pieces */
.hero-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* ---------- 6. SECTION PRIMITIVES ---------- */
.section {
  padding: var(--section-y) 0;
}
.section--white  { background: var(--white); }
.section--paper  { background: var(--paper); }
.section--ink    { background: var(--ink); color: var(--white); }

.section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* H2 — section heading on light surfaces */
.h2 {
  font-family: inherit;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--ink);
}
.h2--on-dark { color: var(--white); }

/* Underlined link */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--signal);
  padding-bottom: 2px;
  margin-top: 32px;
  transition: color var(--t-base), border-color var(--t-base);
}
.link-underline:hover { color: var(--signal); }
.link-underline--lift { color: var(--signal-lift); border-bottom-color: var(--signal-lift); }

/* ---------- 7. LOGO MARQUEE ---------- */
.marquee-section {
  background: var(--white);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 32px;
}

.marquee-section__label {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-50);
  max-width: 240px;
}

/* Marquee viewport */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 36px;
  padding-right: 36px;
}

.marquee__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}
.marquee__logo img {
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.55);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
  display: block;
}
.marquee__logo:hover img {
  opacity: 1;
  filter: none;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---------- 8. WHAT YOU GET ---------- */
.wyg__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  align-items: start;
}

.wyg__left { padding-top: 4px; }

.wyg__h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: var(--ink);
  margin: 18px 0 22px;
}

.wyg__intro {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 460px;
}

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

.wyg__item {
  position: relative;
  padding: 24px 18px 24px 21px;
  border-bottom: 1px solid var(--ink-10);
  border-left: 3px solid transparent;
  margin-left: -24px;
  margin-right: -18px;
  border-radius: 8px 0 0 8px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.wyg__item:last-child { border-bottom: 0; }

.wyg__item.is-active,
.wyg__item:hover {
  background: var(--signal-wash);
  border-left-color: var(--signal);
}

/* Other items lose active state when one is hovered */
.wyg__list:hover .wyg__item.is-active:not(:hover) {
  background: transparent;
  border-left-color: transparent;
}

.wyg__item-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
}

.wyg__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wyg__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--signal-wash);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: background 0.25s ease, color 0.25s ease;
}

.wyg__item-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  transition: color 0.25s ease;
}
.wyg__item.is-active .wyg__item-title,
.wyg__item:hover .wyg__item-title {
  color: var(--signal);
}
.wyg__list:hover .wyg__item.is-active:not(:hover) .wyg__item-title { color: var(--ink); }

.wyg__item-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 480px;
}

.wyg__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--signal);
  padding-top: 8px;
}

/* ---------- 9. PORTFOLIO BENTO ---------- */
.portfolio {
  background: var(--ink);
  color: var(--white);
  padding: var(--section-y) 0;
}

.portfolio__header,
.portfolio__caption {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.portfolio__header {
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}

.portfolio__h2 {
  color: var(--white);
  margin-top: 18px;
}

.portfolio__subline {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  max-width: 260px;
}

/* Home work — clean 3×2 grid of square pieces */
.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.home-work-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink-10);
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 16px rgba(11, 26, 51, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-work-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 26, 51, 0.12);
}

.home-work-item img,
.home-work-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .home-work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Caption bar */
.portfolio__caption {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(61, 79, 204, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.portfolio__caption-left {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.portfolio__caption-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--signal-lift-hi);
  border-bottom: 1.5px solid rgba(183, 172, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio__caption-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ---------- 10. HOW IT WORKS ---------- */
.hiw__h2 { margin-top: 18px; }

.hiw__intro {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 540px;
  margin-top: 16px;
}

.hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.hiw__card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hiw__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 26, 51, 0.12);
}

/* Card 3 — file mockup pops on hover */
.hiw__card .hiw__mock--file .mock-file {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hiw__card:hover .hiw__mock--file .mock-file {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px -10px rgba(11, 26, 51, 0.18);
}

/* Step 3 — decorative asset sits behind the file card, peeking out symmetrically.
   Note: z-index 1 (not -1) keeps it above the mock's opaque background while still
   sitting behind the file card, which holds z-index 2. */
.hiw__card--3 .hiw__mock--file {
  position: relative;
  overflow: visible;
}
.step3-design-peek {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: auto;
  transform: translate(-50%, -50%) rotate(-8deg);
  border-radius: 12px;
  overflow: hidden;
  filter: drop-shadow(0 8px 24px rgba(11, 26, 51, 0.18));
  z-index: 1;
  pointer-events: none;
}
.step3-design-peek img {
  width: 100%;
  height: auto;
  display: block;
}

.hiw__mock {
  background: var(--ink-10);
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 22px 22px;
  gap: 8px;
}

.hiw__body {
  padding: 24px;
  flex: 1;
}

.hiw__step {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ember-deep);
}

.hiw__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 8px;
}

.hiw__copy {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
}

/* Mock — checklist (Subscribe) */
.hiw__mock--checklist { gap: 10px; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #DDE0E6;
}
.mock-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--signal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-check svg { width: 12px; height: 12px; }
.mock-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

/* Mock — task board (Request) */
.hiw__mock--board { gap: 6px; }
.mock-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #DDE0E6;
  gap: 12px;
}
.mock-task__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mock-task__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-task__date {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-50);
}
.mock-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.mock-pill--todo { background: var(--signal-wash); color: var(--signal-deep); }
.mock-pill--prog { background: #FFE9CC; color: #B45309; }
.mock-pill--rev  { background: #DCFCE7; color: #15803D; }

/* Mock — file delivery (Receive) */
.hiw__mock--file {
  justify-content: center;
  padding: 22px 18px;
}
.mock-file {
  background: var(--white);
  border: 1px solid #DDE0E6;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 16px -8px rgba(11, 26, 51, 0.12);
}
.mock-file__icon {
  width: 36px;
  height: 36px;
  color: var(--signal);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mock-file__icon svg { width: 28px; height: 36px; }
.mock-file__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-file__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-file__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mock-file__size {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-50);
}
.mock-file__status {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: #DCFCE7;
  color: #15803D;
  padding: 3px 7px;
  border-radius: 100px;
}
.mock-file__btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--signal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.mock-file__btn svg { width: 14px; height: 14px; }

/* Tools strip */
.hiw__tools {
  margin-top: 48px;
  border-top: 1px solid var(--ink-25);
  padding-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.hiw__tools-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.hiw__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Platform logos in tools strip */
.hiw__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.hiw__platforms img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.hiw__platforms img:hover {
  opacity: 1;
  filter: none;
}
.pill {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-70);
  white-space: nowrap;
}
.hiw__tools-note {
  flex-basis: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-70);
  margin-top: 4px;
}

/* ---------- 11. PRICING ---------- */
.pricing__h2 { margin-top: 18px; }

.pricing__subline {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 540px;
  margin-top: 14px;
  margin-bottom: 28px;
}

.pricing__compare {
  background: var(--signal-wash);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
}
.pricing__compare strong {
  color: var(--ink);
  font-weight: 600;
}

/* Plans — rounded individual cards, breathing gap */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 8px 0;
}

.plan {
  background: var(--white);
  border: 1.5px solid var(--ink-10);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

/* Scale card — same look as others at rest, just sits ~8px higher */
.plan--featured {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11, 26, 51, 0.10);
  z-index: 1;
}

/* MOST POPULAR pill — soft purple at rest, inverts on hover */
.plan__badge {
  position: absolute;
  top: 22px;
  right: 26px;
  background: var(--signal-wash);
  color: var(--signal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.25s ease, color 0.25s ease;
}

.plan__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-50);
}

.plan__price {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--ink);
  margin-top: 14px;
  line-height: 1;
}

.plan__period {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-50);
  margin-top: 8px;
}

.plan__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-70);
  margin-top: 14px;
}

.plan__hr {
  border: 0;
  border-top: 1px solid var(--ink-10);
  margin: 20px 0;
}

.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-70);
}

.plan__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--signal-wash);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan__check svg { width: 12px; height: 12px; }

.plan__cta {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 14px 22px;
  margin-top: auto;
}
.plan__cta--ink {
  background: var(--ink);
  color: var(--white);
}
.plan__cta--ink:hover { background: #142543; }
.plan__cta--signal {
  background: var(--signal);
  color: var(--white);
}
.plan__cta--signal:hover { background: var(--signal-deep); }

/* ----- Plan hover state — applies to ALL three cards ----- */
.plan {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.plan:hover {
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(61, 79, 204, 0.25);
}

/* Scale card sits lifted at rest, lifts deeper on hover */
.plan--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(61, 79, 204, 0.30);
}

/* Text colours invert on hover */
.plan:hover .plan__name,
.plan:hover .plan__price {
  color: #FFFFFF;
}
.plan:hover .plan__period,
.plan:hover .plan__desc {
  color: rgba(255, 255, 255, 0.85);
}
.plan:hover .plan__features li {
  color: rgba(255, 255, 255, 0.92);
}

/* Divider line */
.plan:hover .plan__hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* Check icon circles + tick marks */
.plan:hover .plan__check {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.plan:hover .plan__check svg {
  stroke: #FFFFFF;
}

/* CTA button inverts to white-on-dark */
.plan:hover .plan__cta {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
}
.plan:hover .plan__cta:hover {
  background: var(--paper);
  color: var(--ink);
}

/* MOST POPULAR pill inverts to read on the blue hover state */
.plan--featured:hover .plan__badge {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

/* Reassurance strip */
.reassure {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
}
.reassure li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: start;
}
.reassure__icon {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--signal-wash);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reassure__icon svg { width: 16px; height: 16px; }
.reassure__bold {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.1px;
}
.reassure__sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-70);
  line-height: 1.45;
}

/* ---------- 12. WHY GRAPHIKER ---------- */
.why__h2 { margin-top: 18px; margin-bottom: 48px; }

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

.why__card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.why__card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-25);
  box-shadow: 0 12px 32px -16px rgba(11, 26, 51, 0.18);
}

.why__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8EBFA, #D0D5F5);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(61, 79, 204, 0.18);
}
.why__icon svg { width: 26px; height: 26px; stroke-width: 1.5; }

.why__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.why__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-70);
}

/* ---------- 13. TESTIMONIALS ---------- */
.testi__h2 {
  margin-top: 18px;
  margin-bottom: 48px;
}

.testi__layout {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 24px;
  align-items: stretch;
}

/* Avatar variant on dark surface inside card */
.avatar-stack--dark .avatar {
  border-color: rgba(255, 255, 255, 0.05);
}

/* LEFT — summary */
.testi__summary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi__rating {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--white);
}
.testi__rating-of {
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0;
}
.testi__rating-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  max-width: 240px;
}
.testi__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-top: auto;
}
.testi__rating-trust {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.testi__review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  width: 100%;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.testi__review-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

/* RIGHT — 2×2 quote grid */
.testi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.testi__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.testi__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}
.testi__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.testi__tag--lift { color: var(--signal-lift); }
.testi__quote {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  flex: 1;
}
.testi__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
}
.testi__role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* 4th tile — stats variant */
.testi__card--stats { gap: 14px; }
.testi__stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.testi__stat-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.testi__stat-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  min-width: 64px;
}
.testi__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- 14. ABOUT GRAPHIKER ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}

.about__h2 { margin-top: 18px; margin-bottom: 28px; }

.about__prose p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-70);
}
.about__prose p + p { margin-top: 16px; }
.about__prose strong { font-weight: 600; color: var(--ink); }

.about__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.about__cta-note {
  font-size: 12px;
  color: var(--ink-50);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink-25);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-dark:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: var(--signal-wash);
}

.about__stat {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color var(--t-base), transform var(--t-base);
}
.about__stat:hover {
  border-color: var(--ink-25);
  transform: translateY(-2px);
}
.about__stat-num {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2.4px;
  color: var(--ink);
  line-height: 1;
}
.about__stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-50);
  margin-top: 6px;
}

/* ---------- 15. FINAL CTA ---------- */
.finalcta {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(61, 79, 204, 0.25);
  padding: var(--section-y) 0;
}

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

.finalcta__h2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
}

.finalcta__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin-top: 18px;
}

.finalcta__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
}

.finalcta__primary {
  background: var(--signal);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  width: 100%;
  justify-content: center;
}
.finalcta__primary:hover { background: var(--signal-deep); }

.finalcta__secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  padding: 14px 36px;
  border-radius: 100px;
  width: 100%;
  justify-content: center;
}
.finalcta__secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.finalcta__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 4px;
}

/* ---------- 16. FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand { max-width: 300px; }

.footer__logo {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.4px;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.footer__reg {
  color: var(--signal-lift);
  font-size: 12px;
  margin-left: 1px;
  vertical-align: super;
  position: relative;
  top: -2px;
}
.footer__sub {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 13px;
  margin-left: 4px;
}

.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 14px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.footer__links a {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: #FFFFFF; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a {
  color: inherit;
  transition: color var(--t-fast);
}
.footer__bottom a:hover { color: rgba(255, 255, 255, 0.8); }

.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------- 17. REVEAL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger items inside grids */
  .why__grid       .reveal:nth-child(2) { transition-delay: 0.08s; }
  .why__grid       .reveal:nth-child(3) { transition-delay: 0.16s; }
  .hiw__grid       .reveal:nth-child(2) { transition-delay: 0.08s; }
  .hiw__grid       .reveal:nth-child(3) { transition-delay: 0.16s; }
  .plans           .reveal:nth-child(2) { transition-delay: 0.08s; }
  .plans           .reveal:nth-child(3) { transition-delay: 0.16s; }
  .testi__grid     .reveal:nth-child(2) { transition-delay: 0.06s; }
  .testi__grid     .reveal:nth-child(3) { transition-delay: 0.12s; }
  .testi__grid     .reveal:nth-child(4) { transition-delay: 0.18s; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- 99. RESPONSIVE (basic — full pass later) ---------- */
/* Hero: stack text above carousel, carousel goes horizontal (matches brief 1024 breakpoint) */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px var(--pad-x-mobile);
  }

  .hero-carousel {
    display: block;
    height: auto;
    margin-top: 32px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  .carousel-column--2 {
    display: none; /* Hide second column on mobile */
  }

  .carousel-column--1 {
    overflow: hidden;
  }

  .carousel-column--1 .carousel-track {
    flex-direction: row;
    gap: 12px;
    animation: scroll-left 30s linear infinite;
  }

  .carousel-column--1 .carousel-track img {
    width: 200px;
    flex-shrink: 0;
  }

  @keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

@media (max-width: 960px) {
  /* Nav: collapse to hamburger */
  .nav__inner { padding: 0 var(--pad-x-mobile); gap: 16px; }
  .nav__toggle { display: inline-flex; }

  .nav__panel {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px var(--pad-x-mobile) 32px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav.is-open .nav__panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav__links a { font-size: 18px; color: rgba(255, 255, 255, 0.85); }

  .nav__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
  }
  .nav__bookcall { font-size: 14px; }
  .nav__cta .btn--pill {
    text-align: center;
    justify-content: center;
    padding: 14px 22px;
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .marquee-section__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 var(--pad-x-mobile);
  }
  .marquee-section__label { max-width: none; text-align: center; }

  .section { padding: var(--section-y-mobile) 0; }
  .section__inner { padding: 0 var(--pad-x-mobile); }

  .wyg__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wyg__h2 { font-size: 32px; }

  .portfolio__header {
    grid-template-columns: 1fr;
    padding: 0 var(--pad-x-mobile) 40px;
  }
  .portfolio__subline { text-align: left; max-width: none; }
  .home-work-grid { padding: 0 var(--pad-x-mobile); }

  .portfolio__caption {
    padding: 18px var(--pad-x-mobile);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .portfolio__h2 { font-size: 32px; }

  .hiw__grid { grid-template-columns: 1fr; gap: 16px; }
  .hiw__h2 { font-size: 32px; }

  .plans { grid-template-columns: 1fr; gap: 14px; }
  .plan { padding: 28px 24px; }
  .plan__price { font-size: 44px; }
  .plan--featured { order: -1; transform: none; }
  .pricing__h2 { font-size: 32px; }
  .reassure { grid-template-columns: 1fr 1fr; gap: 18px; }

  .why__grid { grid-template-columns: 1fr; }
  .why__h2 { font-size: 32px; }

  .testi__layout { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .testi__h2 { font-size: 32px; margin-bottom: 32px; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__h2 { font-size: 32px; }
  .about__stats { grid-template-columns: 1fr 1fr; }

  .finalcta__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .finalcta__h2 { font-size: 34px; }
  .finalcta__sub { margin-left: auto; margin-right: auto; }
  .finalcta__right { min-width: 0; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero__h1 { font-size: 36px; letter-spacing: -1px; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .stat { border-left: 0; padding: 0; }
  .stat + .stat { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 16px; }
}

/* ============================================================
   PRICING PAGE
   New styles only — does not modify any homepage rules
   ============================================================ */

/* ---- Page hero ---- */
.pricing-hero {
  background: var(--paper);
  padding: 96px 0 32px;
}
.pricing-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pricing-hero__eyebrow {
  margin-bottom: 16px;
}
.pricing-hero__h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--ink);
  max-width: 18ch;
}
.pricing-hero__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 600px;
  margin-top: 16px;
}
.pricing-hero__context {
  display: block;
  background: var(--signal-wash);
  border-radius: 100px;
  padding: 18px 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 800px;
  margin-top: 44px;
}
.pricing-hero__context strong {
  font-weight: 600;
}

@media (max-width: 960px) {
  .pricing-hero { padding: 72px 0 56px; }
  .pricing-hero__inner { padding: 0 var(--pad-x-mobile); }
}

@media (max-width: 720px) {
  .pricing-hero { padding: 56px 0 48px; }
  .pricing-hero__h1 { font-size: 36px; letter-spacing: -1px; }
  .pricing-hero__sub { font-size: 17px; }
  .pricing-hero__context {
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 14px;
    margin-top: 32px;
  }
}

/* ---- Plans ---- */
.pricing-plans {
  background: var(--paper);
  padding: 24px 0 32px;
}
.pricing-plans__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pricing-plans .plans { gap: 24px; }

/* Secondary "Book a call first" text link under the primary CTA */
.plan__altlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--signal);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.plan__altlink:hover {
  color: var(--signal-deep);
  text-decoration: underline;
}
/* On card hover (blue state), altlink inverts to white */
.plan:hover .plan__altlink {
  color: rgba(255, 255, 255, 0.95);
}
.plan:hover .plan__altlink:hover { color: #FFFFFF; }

/* Full-time comparison note — soft signal-wash pill above feature list */
.plan__compare {
  background: var(--signal-wash);
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  transition: background 0.25s ease, color 0.25s ease;
}
.plan__compare strong { font-weight: 600; }
.plan:hover .plan__compare {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* "Everything in [tier], plus:" inheritance label above delta feature list */
.plan__inherit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
.plan:hover .plan__inherit-label { color: var(--white); }

/* ---- Reassurance strip ---- */
.pricing-reassurance {
  background: var(--paper);
  padding: 24px 0 64px;
}
.pricing-reassurance__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pricing-reassurance .reassure { margin-top: 0; }

/* ---- What's Included (dark) ---- */
.pricing-included {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
}
.pricing-included__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pricing-included__h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -1.6px;
  line-height: 1.1;
  color: var(--white);
  margin-top: 16px;
}
.pricing-included__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin-top: 16px;
}

.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 56px 0 32px;
  padding: 0;
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(155, 141, 255, 0.18);
  color: var(--signal-lift-hi);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.service-card__star {
  color: var(--signal-lift-hi);
  font-weight: 400;
  margin-left: 4px;
}

.pricing-included__note {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 720px;
}
.pricing-included__note span { color: var(--signal-lift-hi); }

/* ---- Not Sure Which Plan? ---- */
.pricing-which-plan {
  background: var(--paper);
  padding: 96px 0;
}
.pricing-which-plan__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pricing-which-plan__h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -1.6px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 40px;
}

.which-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.which-card {
  background: var(--white);
  border: 1.5px solid var(--signal-wash);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.which-card:hover {
  border-color: var(--signal-lift);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61, 79, 204, 0.10);
}

/* Lucide icon tile — matches reassurance strip style */
.which-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--signal-wash);
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.which-card__icon svg { width: 22px; height: 22px; }

.which-card__top {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.which-card__top strong { font-weight: 600; color: var(--ink); }
.which-card__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-70);
}

.pricing-which-plan__cta {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: var(--ink-70);
}
.which-link {
  color: var(--signal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.2s ease;
}
.which-link:hover { color: var(--signal-deep); }
.which-link__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.which-link:hover .which-link__arrow { transform: translateX(4px); }

/* ---- FAQ ---- */
.pricing-faq {
  background: var(--white);
  padding: 96px 0;
}
.pricing-faq__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pricing-faq__h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -1.6px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
}

.faq__item {
  border-bottom: 1px solid var(--ink-10);
}
.faq__item:first-child { border-top: 1px solid var(--ink-10); }
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--signal); }
.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink-50);
  transition: transform 0.25s ease, color 0.2s ease;
}
.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--signal);
}
.faq__a {
  padding: 0 0 20px;
}
.faq__a p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 680px;
}
.faq__a p + p { margin-top: 14px; }
.faq__link {
  color: var(--signal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.faq__link:hover { color: var(--signal-deep); }

/* Inline lilac highlight for use on dark surfaces (e.g. "All eight services.") — matches hero "your business." colour */
.highlight-lift { color: var(--signal-lift-hi); }

/* ---- Pricing Final CTA (centred dark) ---- */
.pricing-final-cta {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  border-top: 1px solid rgba(61, 79, 204, 0.25);
}
.pricing-final-cta__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.pricing-final-cta__h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.pricing-final-cta__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 18px auto 0;
}
.pricing-final-cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.pricing-final-cta__primary {
  background: var(--signal);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
}
.pricing-final-cta__primary:hover {
  background: var(--signal-deep);
  color: var(--white);
}
.pricing-final-cta__secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
}
.pricing-final-cta__secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Pricing page responsive ---- */
@media (max-width: 960px) {
  .pricing-plans { padding: 24px 0 64px; }
  .pricing-plans__inner,
  .pricing-reassurance__inner,
  .pricing-included__inner,
  .pricing-which-plan__inner,
  .pricing-faq__inner,
  .pricing-final-cta__inner { padding: 0 var(--pad-x-mobile); }

  .pricing-reassurance { padding: 48px 0; }
  .pricing-included,
  .pricing-which-plan,
  .pricing-faq,
  .pricing-final-cta { padding: 64px 0; }

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

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-included__h2,
  .pricing-which-plan__h2,
  .pricing-faq__h2 { font-size: 30px; letter-spacing: -1px; }
  .pricing-final-cta__h2 { font-size: 30px; letter-spacing: -1px; }
  .which-card { padding: 24px; }
  .faq__q { font-size: 16px; padding: 20px 0; gap: 16px; }
  .pricing-final-cta__btns { flex-direction: column; align-items: stretch; }
  .pricing-final-cta__primary,
  .pricing-final-cta__secondary { width: 100%; justify-content: center; }
}

/* ============================================================
   SERVICES PAGE
   New styles only — does not modify any homepage or pricing rules
   ============================================================ */

/* ---- Hero ---- */
.services-hero {
  background: var(--paper);
  padding: 96px 0 32px;
}
.services-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.services-hero__eyebrow { margin-bottom: 16px; }
.services-hero__h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--ink);
  max-width: 16ch;
}
.services-hero__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 640px;
  margin-top: 16px;
}
.services-hero__cta {
  margin-top: 28px;
  background: var(--signal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
}
.services-hero__cta:hover { background: var(--signal-deep); color: var(--white); }

/* ---- Intro strip ---- */
.services-intro-strip {
  background: var(--paper);
  padding: 32px 0 32px;
}
.services-intro-strip__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.services-intro-strip__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--signal-wash);
  color: var(--ink);
  border-radius: 100px;
  padding: 18px 28px;
  max-width: 900px;
}
.services-intro-strip__pill p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.services-intro-strip__pill strong { font-weight: 600; }
.intro-strip-icon {
  color: var(--signal);
  flex-shrink: 0;
}

/* ---- Services list wrap (sticky nav + content) ---- */
.services-list-wrap {
  background: var(--paper);
  padding-top: 16px;
}

.services-list-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.services-list-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

/* Sticky side nav */
.services-side-nav {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: start;
}
.services-side-nav-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-70);
  transition: background 0.2s ease, color 0.2s ease;
}
.services-side-nav-item:hover,
.services-side-nav-item.is-active {
  background: var(--signal-wash);
  color: var(--ink);
}
.side-nav-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: 0.05em;
  min-width: 20px;
}
.side-nav-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

/* Content column */
.services-list-col {
  display: flex;
  flex-direction: column;
  max-width: 880px;
}

/* Service section — uniform layout (text left, image right) */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 0 0 80px;        /* spacing only below; top spacing comes from margin */
  margin-top: 80px;         /* top spacing as margin so scroll-margin lands cleanly */
  border-bottom: 1px solid var(--ink-10);
  scroll-margin-top: 100px;
}
.service-section:first-child {
  margin-top: 0;            /* first section sits flush against the wrap padding */
}
.service-section:last-child {
  border-bottom: 0;
}
/* Defensive: ensure no first-child of the text column adds top margin */
.service-text > *:first-child {
  margin-top: 0;
}

.service-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--signal);
  margin-bottom: 16px;
}
.service-headline {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 20px;
}
.service-oneliner {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.4;
}
.service-body {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.65;
  margin: 0 0 32px;
}

.service-included { margin-bottom: 28px; }
.service-included-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-70);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-pill {
  background: var(--signal-wash);
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(61, 79, 204, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.service-pill:hover {
  background: #FFFFFF;
  border-color: rgba(61, 79, 204, 0.30);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(11, 26, 51, 0.06);
}

.service-who {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.5;
  margin: 0 0 24px;
}
.service-who-label { font-weight: 600; color: var(--ink); }

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 100px;
}
.service-badge-included {
  background: var(--signal-wash);
  color: var(--signal);
  border: 1px solid rgba(61, 79, 204, 0.15);
}
.service-badge-quoted {
  background: rgba(255, 122, 77, 0.12);
  color: var(--ember-deep);
  border: 1px solid rgba(255, 122, 77, 0.25);
}

/* Service 07 split — give each "included" block its own badge spacing */
.service-section--split .service-included + .service-included { margin-top: 24px; }
.service-section--split .service-included .service-badge { margin-top: 12px; }

/* Service image column — sticky so it follows the user down the text */
.service-image {
  position: sticky;
  top: 120px;
  align-self: start;
}

/* Real portfolio image / video asset */
.service-image-asset {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: var(--ink-10);
}

/* Image placeholders (still used by Service 08 until its asset is ready) */
.service-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--ink-10);
  border: 2px dashed var(--ink-25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--ink-50);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* ---- Service 08 — Brand Identity (full-width dark) ---- */
.service-brand-identity {
  background: var(--ink);
  padding: 96px 0;
  margin-top: 64px;
  scroll-margin-top: 100px;
}
.service-brand-identity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.eyebrow-on-dark  { color: var(--signal-lift-hi); }
.headline-on-dark { color: var(--white); }
.oneliner-on-dark { color: var(--signal-lift-hi); }
.body-on-dark     { color: rgba(255, 255, 255, 0.78); }
.label-on-dark    { color: rgba(255, 255, 255, 0.6); }
.who-on-dark      { color: rgba(255, 255, 255, 0.7); }
.who-on-dark .service-who-label { color: var(--white); }

.service-brand-identity .service-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-brand-identity .service-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.service-pill-featured:hover {
  background: rgba(155, 141, 255, 0.26);
  transform: translateY(-1px);
}

.brand-identity-callout {
  background: rgba(155, 141, 255, 0.08);
  border-left: 3px solid var(--signal-lift-hi);
  padding: 22px 24px;
  border-radius: 12px;
  margin: 32px 0;
}
.callout-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-lift-hi);
  margin: 0 0 12px;
}
.callout-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.brand-identity-offer {
  background: linear-gradient(135deg, rgba(155, 141, 255, 0.18), rgba(155, 141, 255, 0.06));
  border: 1px solid rgba(155, 141, 255, 0.28);
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}
.offer-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(155, 141, 255, 0.15);
  color: var(--signal-lift-hi);
  margin-bottom: 12px;
}
.offer-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.offer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-lift-hi);
  margin-bottom: 8px;
}
.offer-text {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}
.offer-text strong { font-weight: 600; }

/* Service 08 — price callout (above the body paragraphs) */
.brand-identity-price {
  background: rgba(155, 141, 255, 0.10);
  border: 1px solid rgba(155, 141, 255, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.brand-identity-price-amount {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.brand-identity-price-subline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Featured pill inside Service 08 — emphasised first feature */
.service-pill-featured {
  background: rgba(155, 141, 255, 0.18);
  color: var(--white);
  font-weight: 600;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-pill-featured svg {
  width: 14px;
  height: 14px;
  color: var(--signal-lift-hi);
  flex-shrink: 0;
}

/* Service 08 — two-CTA row */
.brand-identity-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.brand-identity-cta-primary,
.brand-identity-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.brand-identity-cta-primary {
  background: var(--signal);
  color: var(--white);
  border: none;
}
.brand-identity-cta-primary:hover {
  background: var(--signal-deep);
  color: var(--white);
}
.brand-identity-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.brand-identity-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
@media (max-width: 480px) {
  .brand-identity-cta-row { flex-direction: column; }
  .brand-identity-cta-primary,
  .brand-identity-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.placeholder-on-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Services final CTA ---- */
.services-final-cta {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  border-top: 1px solid rgba(61, 79, 204, 0.25);
}
.services-final-cta__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.services-final-cta__h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.services-final-cta__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 18px auto 0;
}
.services-final-cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.services-final-cta__primary {
  background: var(--signal);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
}
.services-final-cta__primary:hover { background: var(--signal-deep); color: var(--white); }
.services-final-cta__secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
}
.services-final-cta__secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.services-final-cta__reassure {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 28px;
}

/* ---- Services page responsive ---- */
@media (max-width: 1024px) {
  .services-list-grid { grid-template-columns: 1fr; gap: 0; }
  .services-side-nav { display: none; }
}

@media (max-width: 960px) {
  .services-hero { padding: 72px 0 24px; }
  .services-hero__inner,
  .services-intro-strip__inner,
  .services-list-inner,
  .services-final-cta__inner { padding: 0 var(--pad-x-mobile); }
  .services-intro-strip { padding: 24px 0 48px; }

  .service-brand-identity { padding: 72px 0; margin-top: 48px; }
  .service-brand-identity-inner { padding: 0 var(--pad-x-mobile); }

  .services-final-cta { padding: 72px 0; }
}

@media (max-width: 768px) {
  .services-hero__h1 { font-size: 36px; letter-spacing: -1px; }
  .services-intro-strip__pill {
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 14px;
  }

  .service-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  .service-image {
    position: static;
    top: auto;
  }

  .service-headline { font-size: 32px; }
  .service-oneliner { font-size: 17px; }

  .service-brand-identity-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-final-cta__h2 { font-size: 30px; letter-spacing: -1px; }
  .services-final-cta__btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .services-final-cta__primary,
  .services-final-cta__secondary { width: 100%; justify-content: center; }
}

/* ============================================================
   WORK (PORTFOLIO) PAGE
   New styles only — does not modify any other page's rules
   ============================================================ */

/* ---- Hero ---- */
.work-hero {
  background: var(--paper);
  padding: 96px 0 32px;
}
.work-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.work-hero__eyebrow { margin-bottom: 16px; }
.work-hero__h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--ink);
  max-width: 16ch;
  margin: 0;
}
.work-hero__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 640px;
  margin-top: 16px;
}

/* ---- Filter bar ---- */
.work-filter {
  background: var(--paper);
}
.work-filter__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.work-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0 48px;
}
.work-filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.work-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.work-filter-pill {
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(61, 79, 204, 0.15);
  background: var(--signal-wash);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.work-filter-pill:hover {
  background: #FFFFFF;
  border-color: rgba(61, 79, 204, 0.30);
  transform: translateY(-1px);
}
.work-filter-pill.is-active {
  background: var(--signal);
  color: #FFFFFF;
  border-color: var(--signal);
}
.work-filter-pill.is-active:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
}

/* ---- Grid ---- */
.work-grid-section {
  background: var(--paper);
}
.work-grid-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.work-grid {
  column-count: 4;
  column-gap: 28px;
  padding: 0 0 96px;
}
.work-item {
  position: relative;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-10);
  margin-bottom: 28px;
  display: block;
  box-shadow: 0 4px 16px rgba(11, 26, 51, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 26, 51, 0.12);
}
.work-item img,
.work-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.work-item-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 26, 51, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 100px;
  pointer-events: none;
}
.work-item.is-hidden {
  display: none;
}

/* Dynamic column count for filtered views */
.work-grid.is-cols-3 {
  column-count: 3;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.work-grid.is-cols-2 {
  column-count: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Work final CTA (same component pattern as services-final-cta) ---- */
.work-final-cta {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  border-top: 1px solid rgba(61, 79, 204, 0.25);
}
.work-final-cta__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.work-final-cta__h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}
.work-final-cta__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 18px auto 0;
}
.work-final-cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.work-final-cta__primary {
  background: var(--signal);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
}
.work-final-cta__primary:hover { background: var(--signal-deep); color: var(--white); }
.work-final-cta__secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
}
.work-final-cta__secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Work page responsive ---- */
@media (max-width: 1024px) {
  .work-grid {
    column-count: 3;
  }
  .work-grid.is-cols-3 { column-count: 3; }
  .work-grid.is-cols-2 { column-count: 2; }
}

@media (max-width: 960px) {
  .work-hero { padding: 72px 0 24px; }
  .work-hero__inner,
  .work-filter__inner,
  .work-grid-inner,
  .work-final-cta__inner { padding: 0 var(--pad-x-mobile); }

  .work-final-cta { padding: 72px 0; }
}

@media (max-width: 768px) {
  .work-grid {
    column-count: 2;
  }
  .work-grid.is-cols-3,
  .work-grid.is-cols-2 { column-count: 2; }

  .work-hero__h1 { font-size: 36px; letter-spacing: -1px; }

  .work-final-cta__h2 { font-size: 30px; letter-spacing: -1px; }
  .work-final-cta__btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .work-final-cta__primary,
  .work-final-cta__secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .work-grid {
    column-count: 1;
  }
  .work-grid.is-cols-3,
  .work-grid.is-cols-2 { column-count: 1; }
}
