*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; }

:root {
  --pink: #c8216e;
  --purple: #7b2d8b;
  --orange: #FFB000;
  --grad-full: linear-gradient(to right, #FFB000, #c8216e, #7b2d8b);
  --bg: #ffffff;
  --bg2: #faf8fb;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
body, * { font-family: 'Poppins', sans-serif; }

.curtain { position: fixed; inset: 0; z-index: 99999; background: var(--grad-full); transform-origin: top; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }

#progress { position: fixed; top: 0; left: 0; height: 3px; z-index: 9999; background: var(--grad-full); width: 0%; transition: width 0.1s linear; }

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
  height: 150px;

  background: transparent;
  border-bottom: none;
  box-shadow: none;

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#nav.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border);
}


.nav-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

#nav {
  height: 160px !important;
  padding: 10px 40px !important;
  align-items: center !important;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-phone,
.nav-cta {
  display: none;
}

/* hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;

  width: 36px;
  height: 36px;

  background: none;
  border: none;
  cursor: pointer;

  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;

  background: var(--text);
  border-radius: 2px;

  transition:
    transform 0.35s cubic-bezier(0.23,1,0.32,1),
    opacity 0.25s;

  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   OVERLAY
========================= */
.nav-overlay {
  transition:
    opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0.2s;
}

.nav-overlay.open {
  transition:
    opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s;
}
.nav-logo-img--white {
    height: 160px;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0.2s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s;
}

/* INNER WRAPPER — FIX: scrollable so bottom section is never cut off */
.nav-overlay-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* TOP BAR (matches your main nav layout exactly) */
.nav-overlay-header {
height: 180px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
/* CLOSE BUTTON (same position as hamburger) */
.nav-overlay-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity 0.2s;
}

.nav-overlay-close:hover {
  opacity: 0.7;
}

.nav-overlay-close svg {
  width: 20px;
  height: 20px;

  stroke: #111;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;

  display: block;
}

/* CONTENT AREA BELOW NAV */
.nav-overlay-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 60px 40px 0;
}


.nav-overlay-col {
  display: flex;
  flex-direction: column;
}

.nav-overlay-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding: 8px 0;        /* increase from 4px to 8px for breathing room */
  line-height: 1.3;
  transition: color 0.2s;
}

.nav-overlay-link:hover {
  color: #CE0058;         /* brand colour on hover instead of plain #111 */
}

.nav-overlay-col-head {
  font-size: 11px;        /* scale down to match the screenshot's proportions */
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 16px;
}


/* GRID MENU */
.nav-overlay-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  margin-bottom: 40px;
}

.nav-overlay-col-head {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: #111;
  margin-bottom: 20px;
}

.nav-overlay-link {
  display: block;

  font-size: 16px;
  font-weight: 600;

  color: #000;

  padding: 4px 0;

  transition: color 0.2s;
}

.nav-overlay-link:hover {
  color: #111;
}

/* BOTTOM SECTION — FIX: never shrinks away, safe-area aware */
.nav-overlay-bottom {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 48px;

  padding-top: 32px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0,0,0,0.08);
}

.nav-overlay-social {
  display: flex;
  gap: 8px;
}

.nav-overlay-social a {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: #1c1c1c;

  transition: opacity 0.2s;
}

.nav-overlay-social a:hover {
  opacity: 0.75;
}

.nav-overlay-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-overlay-social img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}


/* ── HERO ── */
.hero { min-height: 0; display: flex; flex-direction: column; background: #ffffff; position: relative; overflow: hidden; padding-top: 150px; padding-bottom: 56px; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero-orb.o1 { width: 700px; height: 700px; background: #ffffff; top: -100px; right: -100px; }
.hero-orb.o2 { width: 500px; height: 500px; background: #ffffff; bottom: -150px; left: -100px; }
.hero-orb.o3 { width: 400px; height: 400px; background: #ffffff; top: 200px; right: 200px; }
.hero-inner { display: grid; grid-template-columns: 0.55fr 0.45fr; position: relative; z-index: 1; align-items: start; min-height: 540px; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 100px 52px 40px 52px; }
.hero-h1 { font-size: clamp(80px, 9vw, 136px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 20px; color: var(--text); }
.grad-text { color: var(--text); }
.hero-sub { font-size: 16px; color: var(--text); font-weight: 700; line-height: 1.65; margin-bottom: 10px; max-width: 440px; }
.hero-text p:not(.hero-sub) { display: none; }
.hero-cta { align-self: flex-start; }
.hero-visual { position: absolute; top: -40px; right: 300px; transform: none; width: 520px; height: 520px; display: flex; align-items: center; justify-content: center; padding: 0; overflow: visible; }

.btn-primary { background: var(--pink); color: #fff; font-family: inherit; font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 50px; border: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,33,110,0.35); }

/* ── INTRO ── */
.ag-intro {
  position: relative;
  padding: 48px 52px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #fff;
}
.ag-intro-text {
  position: relative;
  z-index: 2;
  width: 49%;
  flex-shrink: 0;
}

.ag-intro-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 14px;
}

.ag-intro-text p:last-of-type {
  margin-bottom: 28px;
}

.ag-intro-swirl {
  position: absolute;
  top: 52%;
  left: 48%;

  width: 1200px;
  height: 1200px;

  transform: translateY(-50%);

  z-index: 1;
  pointer-events: none;

  background-image: url('images/Swirl/Colour/Swirl PNG.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  opacity: 0;
}

/* ── AUDIENCE PILLS ── */
.hero-bottom { position: sticky; top: 160px; z-index: 900; display: flex; align-items: flex-start; justify-content: center; gap: 12px; padding: 0 52px 48px; margin-top: 0; background: transparent; }.audience-pill { font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 50px; border: 2px solid #7b2d8b; color: #fff; background: #7b2d8b; transition: opacity 0.2s, transform 0.2s; cursor: pointer; }
.audience-pill:hover { opacity: 0.85; transform: translateY(-1px); }
.audience-pill.active { background: #7b2d8b; color: #fff; border-color: #7b2d8b; }

/* ── LOGOS ── */
.logos-bar { margin-top: 32px; padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; overflow: hidden; }
.logos-inner { display: flex; align-items: center; overflow: hidden; }
.logos-label { font-size: 10px; font-weight: 700; color: #bbb; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.1em; padding: 0 28px; flex-shrink: 0; border-right: 1px solid var(--border); }
.logos-marquee { display: flex; overflow: hidden; flex: 1; mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent); }
.logos-track { display: flex; align-items: center; animation: marquee 28s linear infinite; flex-shrink: 0; }
.logos-track img { height: 110px; max-width: 200px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.45); transition: filter 0.3s; margin: 0 48px; flex-shrink: 0; }
.logos-track img:hover { filter: grayscale(0%) opacity(1); }
.logos-track img[alt="Hartey Wealth"],
.logos-track img[alt="Celtic &amp; Co"],
.logos-track img[alt="DMA"],
.logos-track img[alt="Kettlewell"],
.logos-track img[alt="Richard Mackay"] { height: 95px; }
.logos-track img[src*="whistllogoORI"] { height: 50px !important; max-width: 150px !important; }
.logos-track img[src*="Lakeland-logo"] { height: 100px !important; max-width: 200px !important; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ── THREE WAYS static grid ── */
.three-ways { background: #fff; padding: 72px 40px; min-height: 100vh; display: flex; align-items: center; }
.three-ways-inner { max-width: 1160px; margin: 0 auto; width: 100%; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; }
.section-title { font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 28px; text-align: center; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.75; margin-bottom: 52px; }
.three-ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.way-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 16px; padding: 20px; transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s; aspect-ratio: 1; }
.way-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.way-card-logo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.way-card-logo img { width: 100%; height: 100%; object-fit: contain; }

/* ── PRODUCT SHOWCASE ── */
.product-showcase { background: #fff; }
.sc-wrap { display: flex; flex-direction: column; }
.sc-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; overflow: hidden; align-items: stretch; }
.sc-row--purple { background: #ede5f5; }
.sc-row--pink   { background: #fce8f3; }
.sc-row--cream  { background: #fdf6ed; }
.sc-brand { display: flex; align-items: center; justify-content: center; padding: 48px; position: relative; }
.sc-brand-group { position: relative; width: fit-content; display: flex; flex-direction: column; align-items: center; padding-bottom: 10px; }
.sc-logo { display: block; width: auto; max-width: 100%; max-height: 200px; object-fit: contain; }
.sc-btn { position: absolute; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; line-height: 1; color: #fff; white-space: nowrap; padding: 11px 22px; border-radius: 6px; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s; }
.sc-btn:hover { opacity: 0.92; transform: translateY(-2px); }
.sc-btn--purple { background: #7b2d8b; }
.sc-btn--pink { background: #c8216e; }
.sc-btn--orange { background: #FFB000; }
.sc-row--purple .sc-btn { left: 66%; top: 80%; }
.sc-row--pink .sc-btn { left: 40%; top: 80%; }
.sc-row--cream .sc-btn { left: 69%; top: 80%; }
.sc-media { display: flex; align-items: stretch; overflow: hidden; height: 100%; }
.sc-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; min-height: 380px; }

.sc-tagline {
  position: absolute;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  color: rgba(0,0,0,0.65);
  margin: 0;
  transform: translateY(-28px);
}

.sc-row--purple .sc-tagline { left: 55%; top: 80%; }
.sc-row--pink .sc-tagline { left: 40%; top: 82%; }
.sc-row--cream .sc-tagline { left:42%; top: 80%; }


@media (min-width: 901px) and (max-width: 1850px) {
  .sc-brand-group { position: relative !important; display: inline-block !important; }

  .sc-row--purple .sc-tagline,
  .sc-row--pink .sc-tagline,
  .sc-row--cream .sc-tagline {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 12px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .sc-row--purple .sc-btn,
  .sc-row--pink .sc-btn,
  .sc-row--cream .sc-btn {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    margin-top: 64px !important;
    width: fit-content !important;
  }
}


@media (min-width: 901px) and (max-width: 1850px) {
  .sc-brand { padding: 32px 40px !important; overflow: hidden !important; }
  .sc-logo { max-height: 140px !important; }
  .sc-brand-group { position: relative !important; display: inline-block !important; }

  .sc-row--purple .sc-tagline,
  .sc-row--pink .sc-tagline,
  .sc-row--cream .sc-tagline {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 12px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .sc-row--purple .sc-btn,
  .sc-row--pink .sc-btn,
  .sc-row--cream .sc-btn {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    margin-top: 64px !important;
    width: fit-content !important;
  }
}
@media (max-width: 900px) {
  .sc-row { display: flex; flex-direction: column; min-height: auto; }
  .sc-row--reversed { flex-direction: column; }
  .sc-media { height: 240px; flex-shrink: 0; }
  .sc-photo { min-height: 0 !important; height: 100%; }
  .sc-brand { padding: 32px 24px 40px; align-items: flex-start; justify-content: center; }
  .sc-brand-group { position: static; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; padding-bottom: 0; }
  .sc-logo { max-height: 60px; }
.sc-tagline { position: static !important; transform: none !important; white-space: normal !important; text-align: center !important; font-size: 13px !important; left: auto !important; top: auto !important; }  .sc-btn { position: static; display: inline-flex; align-self: center; margin: 0; white-space: nowrap; }
}

/* ── TYPO SECTION ── */
.typo-section { background: #fff; padding: 88px 56px; }
.typo-inner { max-width: 1560px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.typo-left { padding-top: 4px; }
.typo-om-logo { display: block; width: auto; object-fit: contain; }
.typo-om-logo--top { height: 60px; margin-bottom: 22px; }
.typo-headline { font-size: clamp(26px, 2.4vw, 36px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.25; margin-bottom: 24px; color: var(--text); }
.typo-accent { display: inline-block; margin-top: 8px; background: linear-gradient(90deg, #e8621a, #f5a623); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; }
.typo-not-us {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: #FFB000;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.typo-stepper { display: flex; flex-direction: column; }
.tsp-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tsp-col { display: flex; flex-direction: column; }
.tsp-label { font-size: 12px; color: #000; line-height: 1.4; font-weight: 700; display: block; margin-bottom: 8px; min-height: 36px; }
.tsp-connector { display: flex; align-items: center; height: 24px; margin-bottom: 12px; }
.tsp-dot { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: #fff; border: 3px solid #D04A79; margin-left: 6px; margin-right: 6px; box-shadow: 0 0 0 3px rgba(208,74,121,0.15); }
.tsp-dot--orange { border-color: #e8621a; box-shadow: 0 0 0 3px rgba(232,98,26,0.15); }
.tsp-line { flex: 1; height: 2px; background: #D04A79; margin-right: -12px; margin-left: -12px; }
.tsp-col:first-child .tsp-line { margin-left: 0; }
.tsp-col:nth-child(2) .tsp-line { background: #7b2d8b; margin-left: 0; }
.tsp-col:nth-child(2) .tsp-dot { border-color: #7b2d8b; box-shadow: 0 0 0 3px rgba(123,45,139,0.15); }
.tsp-col:nth-child(3) .tsp-line { background: #e8621a; margin-left: 0; }
.tsp-col:nth-child(3) .tsp-dot { border-color: #FFB000; box-shadow: 0 0 0 3px rgba(232,98,26,0.15); }
.tsp-panel { background: #f9f9f9; padding: 28px 24px; border: 1px solid #e4e4e4; border-radius: 10px; display: flex; align-items: flex-start; flex: 1; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.tsp-panel--photo { padding: 0; border-radius: 10px; background: #f0f0f0; overflow: hidden; flex: none; height: 340px; transform: translateZ(0); }
.tsp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 10px;
  image-rendering: auto;
  backface-visibility: hidden;
}
/* ── TESTIMONIALS ── */
.testimonials-section { background: #fff; overflow: hidden; }
.section { padding: 72px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.testimonials-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; align-items: center; }
.testimonials-left { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.title-wrap { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.title-wrap::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background-image: url("images/Swirl/Colour/Swirl PNG.png"); background-repeat: no-repeat; background-size: contain; background-position: center; opacity: 0.65; pointer-events: none; z-index: 0; }
.testimonials-left .section-title { position: relative; z-index: 1; text-align: left; white-space: nowrap; font-size: clamp(26px, 2.6vw, 40px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; max-width: none; }
.tgrid { display: grid; grid-template-columns: 1fr; gap: 6px; max-width: 460px; justify-self: end; }
.tcard { border-radius: 14px; padding: 20px 24px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.tcard:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.tcard--pink   { background: var(--pink); }
.tcard--purple { background: var(--purple); }
.tcard--orange { background: #FFB000; }
.tcard-quote { font-size: 12px; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 10px; font-style: italic; }
.tcard-author { font-size: 12px; font-weight: 700; color: #fff; }
.tcard-company { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── STATS ── */
.stats-section { position: relative; padding: 200px 40px; overflow: hidden; }
.stats-section::before { display: none; }
.stats-section::after { display: none; }
.stats-inner { max-width: 100%; padding: 0 60px; position: relative; z-index: 2; }
.stats-layout { display: grid; grid-template-columns: 220px 1fr; gap: 0; align-items: center; }
.stats-left { display: flex; flex-direction: column; gap: 48px; }
.stat-stack { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-size: 64px; font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 400; }
.stats-right { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; padding-left: 55%; margin-top: -280px; }
.stats-right .section-title { color: #fff; font-size: clamp(32px, 3.2vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin: 0 0 28px 0; text-align: left; max-width: 500px; }
.stats-link { display: inline-flex; font-size: 14px; font-weight: 700; color: #fff; background: var(--pink); padding: 12px 22px; border-radius: 50px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.stats-link:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,33,110,0.35); }

/* ── STATS VIDEO BG ── */
.stats-video-bg { position: absolute; inset: 0; z-index: 0; }
.stats-video-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.stats-video-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.stats-inner { position: relative; z-index: 1; }
.stats-section .stat-num { color: #FFB000 !important; }
.stats-section .stat-label,
.stats-section .stats-title,
.stats-section .stats-link { color: #fff !important; }
.stats-section .stats-link:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,33,110,0.35); }


/* ── CTA SECTION ── */
.cta-section { position: relative; padding: 80px 0; overflow: hidden; background: linear-gradient(to right, #e8206a 0%, #c0267e 25%, #8a2b8a 55%, #ffb000 85%, #ffb000 100%); }
.cta-inner { max-width: 100%; margin: 0; padding: 0 40px 0 32px; display: grid; grid-template-columns: 1.6fr 0.85fr 0.9fr; gap: 40px; position: relative; z-index: 2; align-items: end; }
.cta-left h2 { font-size: clamp(44px, 4.8vw, 76px); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -0.03em; }
.cta-middle { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cta-middle p { font-size: 13px; color: #fff; font-weight: 600; line-height: 1.75; max-width: 260px; }
.cta-middle .btn-primary { background: #c8216e; border: none; color: #fff; font-size: 13px; font-weight: 700; padding: 12px 26px; border-radius: 999px; display: inline-block; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
.cta-middle .btn-primary:hover { background: #a8185c; transform: translateY(-2px); }
.cta-social { display: flex; gap: 8px; margin-top: 2px; }
.cta-social a { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0; }.cta-social a:hover { opacity: 0.85; transform: translateY(-2px); }
.cta-social svg { display: block; }
.cta-social img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.cta-social .social-linkedin  { background: transparent; }
.cta-social .social-facebook  { background: transparent; }
.cta-social .social-instagram { background: transparent; }
.cta-social .social-tiktok    { background: transparent; }
.cta-right { display: flex; flex-direction: column; gap: 0; }
.cta-contact-details { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.cta-contact-details a { font-size: 13px; color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.2s; display: block; }
.cta-contact-details a:hover { opacity: 0.75; }
.cta-address { font-size: 12px; line-height: 1.85; color: #fff; font-weight: 600; }
.cta-address-name { color: #fff; font-weight: 700; font-size: 12px; display: block; margin-bottom: 2px; }
.cta-reg { font-size: 11px; color: #fff; font-weight: 500; margin-top: 12px; line-height: 1.7; display: block; }

/* ── jeton-up ── */
.jeton-up { transform: translateY(40px); }

/* ── SCROLL ANIMATION legacy classes ── */
.reveal { }
.reveal-left { }
.reveal-right { }
.reveal-scale { opacity: 0; transform: scale(0.94); }
.reveal-scale.in { opacity: 1; transform: scale(1); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23,1,0.32,1); }

/* ── PAGE HERO ── */
.page-hero { position: relative; overflow: hidden; display: flex; align-items: flex-end; margin-top: 180px; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 64px 56px; width: 100%; }
.page-hero-content h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; color: #fff; line-height: 1; margin: 0; }

/* ── INTRO SECTION ── */
.intro-section { display: grid; grid-template-columns: 1fr 420px; gap: 0; padding: 72px 64px; max-width: 1280px; margin: 0 auto; align-items: start; }
.intro-text p { font-size: 1.05rem; line-height: 1.75; color: #333; margin-bottom: 20px; max-width: 560px; }
.intro-text p:last-of-type { margin-bottom: 32px; }
.btn-primary:focus { outline: 2px solid #c8216e; outline-offset: 3px; }
.intro-swirl { display: flex; align-items: center; justify-content: center; }
.intro-swirl img { width: 340px; height: 340px; object-fit: contain; }

/* ── TOOLKIT SECTION ── */
.toolkit-section { padding: 80px 64px; background: #fafafa; }
.toolkit-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.toolkit-label { display: block; font-size: 1.15rem; font-weight: 700; color: #e8621a; line-height: 1.2; }
.toolkit-title { font-size: 2.1rem; font-weight: 800; color: #1a1a2e; line-height: 1.2; margin: 4px 0 28px; }
.toolkit-dl-btn { display: inline-block; background: #c8216e; color: #fff; font-weight: 700; font-size: 0.85rem; padding: 13px 22px; border-radius: 999px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.toolkit-dl-btn:hover { background: #a81a5c; transform: translateY(-2px); }
.toolkit-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tk-product { display: flex; flex-direction: column; }
.tk-product-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.tk-product-logo img { height: 36px; width: auto; object-fit: contain; }
.tk-icons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.tk-icon-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.tk-icon-circle { width: 52px; height: 52px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; }
.tk-icon-circle svg { width: 22px; height: 22px; }
.tk-icon-label { font-size: 0.7rem; font-weight: 600; color: #444; line-height: 1.2; max-width: 60px; }
.tk-product--OptiMail .tk-icon-circle { color: #7b2d8b; border-color: #7b2d8b; }
.tk-product--mailhub .tk-icon-circle { color: #c8216e; border-color: #c8216e; }
.tk-product--directmail .tk-icon-circle { color: #e8621a; border-color: #e8621a; }
.tk-card { border-radius: 14px; padding: 18px 20px; color: #fff; font-size: 0.82rem; line-height: 1.55; }
.tk-card strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.tk-card--purple { background: #7b2d8b; }
.tk-card--pink { background: #c8216e; }
.tk-card--orange { background: #e8621a; }

/* ── JOURNEY BAR ── */
.journey-bar { padding: 40px 64px; display: flex; justify-content: center; }
.journey-bar-inner { border: 2px solid #e0e0e0; border-radius: 999px; padding: 18px 48px; display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; font-size: 1rem; font-weight: 600; }
.journey-step { color: #1a1a2e; font-weight: 700; }
.journey-step--brief, .journey-step--data { color: #7b2d8b; }
.journey-step--audience, .journey-step--mailprep { color: #c8216e; }
.journey-step--fulfilment, .journey-step--delivery { color: #e8621a; }
.journey-arrow { color: #999; font-weight: 400; padding: 0 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-overlay-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  #nav { padding: 0 20px; height: 100px !important; }
  .nav-logo-img { height: 80px !important; }
  .nav-overlay-header { height: 100px; padding: 0 20px; }

  /* ── HERO ── */
  .hero {
    padding-top: 100px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
  }
  .hero-text {
    padding: 32px 24px 40px;
    justify-content: center;
  }
  .hero-h1 { font-size: clamp(40px, 11vw, 56px) !important; margin-bottom: 12px; }
  .hero-sub { font-size: 13px !important; }
  .hero-inner {
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    position: relative !important;
    min-height: 380px !important;
  }

  
  .hero-text {
    padding: 32px 8px 40px 20px !important;
    position: relative !important;
    z-index: 1 !important;
  }
  .hero-visual {
    display: flex !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }
  .hero-visual img {
    width: 160px !important;
    height: 160px !important;
  }


  .nav-overlay-contact-btn {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 16px;
  background: #CE0058; /* BBS Cerise */
  color: #fff;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-overlay-contact-btn:hover {
  background: #A80048;
}

  /* ── AUDIENCE PAGES MOBILE ── */
  .page-hero {
    height: 55vw !important;
    min-height: 260px !important;
    max-height: 380px !important;
    margin-top: 100px !important;
  }
  .page-hero h1 {
    font-size: clamp(36px, 9vw, 56px) !important;
    padding: 0 24px !important;
    transform: none !important;
  }
  .ag-intro {
    flex-direction: column !important;
    padding: 40px 24px !important;
    min-height: auto !important;
  }
  .ag-intro-text { width: 100% !important; }
  .ag-intro-swirl { display: none !important; }
  .ag-tk-scroll-space { height: auto !important; }
  .ag-tk-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    padding: 40px 24px !important;
    overflow: visible !important;
  }
  .ag-tk-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .ag-tk-left h2 { font-size: 20px !important; }
  #ag-tk-typed { font-size: 20px !important; min-height: auto !important; }
  .ag-dl-btn { font-size: 13px !important; padding: 12px 20px !important; }
  .ag-products { flex-direction: column !important; gap: 32px !important; }
  .ag-icons { min-height: auto !important; flex-wrap: wrap !important; gap: 12px !important; }
  .ag-product-logo img { height: 40px !important; }
  .ag-journey { padding: 28px 20px !important; overflow-x: auto !important; }
  .ag-journey-inner {
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    gap: 6px !important;
    border-radius: 20px !important;
  }
  .jstep { font-size: 12px !important; }
  .jarrow { font-size: 12px !important; padding: 0 4px !important; }

  /* ── PILLS BAR ── */
  .hero-bottom {
    top: 100px;
    padding: 4px 20px 12px;
    gap: 8px;
    background: transparent;
    justify-content: center;
    margin-top: 0;
  }
  .audience-pill { font-size: 12px; padding: 8px 16px; }

  /* ── NAV OVERLAY MOBILE ── */
  .nav-overlay-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .nav-overlay-content { padding: 36px 24px 0; }
  .nav-overlay-bottom { flex-direction: column; align-items: flex-start; gap: 20px; padding-bottom: max(40px, env(safe-area-inset-bottom)); }

  /* ── MOBILE HERO — keep pure white so the video's multiply blend renders correctly ── */
  .hero {
    background: #ffffff !important;
  }
  .hero-orb.o1, .hero-orb.o2, .hero-orb.o3 { display: none !important; }

  /* ── MOBILE NAV — keep hamburger and logo visible against light bg ── */
#nav { background: #ffffff !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }

  /* ── LOGOS / GENERAL ── */
  .logos-bar { display: none; }
  .three-ways { padding: 64px 24px; }
  .three-ways-grid { grid-template-columns: 1fr; }

  /* ── SERVICE PAGES MOBILE ── */
  .om-hero { margin-top: 100px !important; min-height: 220px !important; }
  .om-hero img.om-hero-fallback,
  .om-hero video.om-hero-fallback { min-height: 220px !important; }
  .om-hero-title {
    font-size: clamp(36px, 9vw, 56px) !important;
    left: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .om-intro { grid-template-columns: 1fr !important; padding: 40px 24px !important; gap: 32px !important; }
  .om-intro-logo { display: none !important; }
  .om-intro-text p { font-size: 14px !important; }
  .om-intro-text p:first-child { font-size: 15px !important; }
  .om-tk-sticky { padding: 40px 24px !important; height: auto !important; }
  .om-tk-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .om-tk-left h2 { font-size: 18px !important; }
  #om-tk-typed { font-size: 20px !important; min-height: auto !important; }
  .om-dl-btn { font-size: 13px !important; padding: 12px 20px !important; }
  .om-icons { flex-wrap: wrap !important; gap: 12px !important; }
  .om-tk-tag { width: 100px !important; min-width: 100px !important; font-size: 12px !important; padding: 14px 10px !important; }
  .om-tk-body { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; padding: 12px 14px !important; }
  .om-tk-body p { font-size: 12px !important; }
  .om-tk-body a { font-size: 11px !important; }
  /* Prevent last toolkit row being cut off */
  .om-tk-sticky { padding-bottom: 60px !important; }
  .om-tk-right { padding-bottom: 20px !important; }
  .om-worth { padding: 24px 24px 48px !important; }
  .om-worth-card { grid-template-columns: 1fr !important; }
  .om-worth-photo { min-height: 220px !important; position: relative !important; }
  .om-worth-copy { padding: 28px 24px !important; }
  .om-need { padding: 48px 24px !important; }
  .om-need h2 { font-size: clamp(40px, 10vw, 60px) !important; margin-bottom: 32px !important; }

  /* ── WHY CHOOSE US PAGE ── */
  .wcu-intro { padding: 48px 24px 40px !important; }
  .wcu-intro-lede { font-size: clamp(22px, 6vw, 32px) !important; }
  .wcu-intro-lede br { display: none !important; }
  .wcu-reasons { padding: 0 24px 48px !important; }
  .wcu-reason p:not(.wcu-reason-label) { white-space: normal !important; font-size: clamp(18px, 5vw, 24px) !important; }
  .wcu-reason-label { font-size: 15px !important; }
  .wcu-adds { padding: 64px 24px !important; }
  .wcu-adds h2 { font-size: clamp(36px, 10vw, 56px) !important; margin-bottom: 48px !important; }
  .wcu-adds-cards { max-width: 100% !important; }
  .wcu-adds-card:nth-child(1),
  .wcu-adds-card:nth-child(2),
  .wcu-adds-card:nth-child(3) { margin-left: 0 !important; }
  .wcu-adds-box { width: 120px !important; height: 120px !important; min-width: 120px !important; font-size: 14px !important; }
  .wcu-adds-card p { font-size: 15px !important; }

  /* ── OUR VALUES PAGE ── */
  .ov-intro { padding: 48px 24px 40px !important; }
  .ov-intro-lede { font-size: clamp(22px, 6vw, 32px) !important; }
  .ov-intro-lede br { display: none !important; }
  .ov-value { padding: 48px 24px !important; }
  .ov-value-heading { font-size: clamp(36px, 10vw, 56px) !important; white-space: normal !important; letter-spacing: -0.02em !important; }
  .ov-value-body { white-space: normal !important; font-size: 14px !important; text-align: left !important; }
  .ov-values .ov-value--right .ov-value-heading,
  .ov-values .ov-value--right .ov-value-body { text-align: left !important; margin-left: 0 !important; }
  .ov-closing { grid-template-columns: 1fr !important; }
  .ov-closing-photo { height: 260px !important; }
  .ov-closing-copy { padding: 48px 24px !important; }
  .ov-closing-copy p { font-size: clamp(18px, 5vw, 24px) !important; text-align: left !important; }

  /* ── PRODUCT SHOWCASE ── */
  .sc-row { grid-template-columns: 1fr; min-height: auto; }
  .sc-brand { padding: 48px 24px; }

  /* ── TYPO ── */
  .typo-inner { grid-template-columns: 1fr; gap: 48px; }
  .typo-section { padding: 64px 24px; }
  .tsp-cols { grid-template-columns: 1fr; }
  .typo-left { display: flex; flex-direction: column; align-items: center; text-align: center; }

  /* ── STATS ── */
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-section { padding: 64px 24px; }
  .stats-right { padding-left: 0; margin-top: 0; }

  /* ── TESTIMONIALS ── */
  .testimonials-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-left .section-title { white-space: normal; font-size: clamp(32px, 8vw, 48px); }
  .title-wrap::before { width: 320px; height: 320px; }
  .tgrid { justify-self: start; max-width: 100%; }
  .section { padding: 64px 24px; }

  /* ── CTA ── */
  .cta-section { padding: 64px 0 !important; }
  .cta-inner { grid-template-columns: 1fr !important; gap: 40px !important; padding: 0 24px !important; }
  .cta-left h2 { font-size: clamp(36px, 9vw, 52px) !important; }

  /* ── OTHER PAGES ── */
  .page-hero-content { padding: 0 24px 40px; }
  .intro-section { grid-template-columns: 1fr; padding: 48px 24px; }
  .intro-swirl { display: none; }
  .toolkit-section { padding: 56px 24px; }
  .toolkit-inner { grid-template-columns: 1fr; gap: 40px; }
  .toolkit-products { grid-template-columns: 1fr; gap: 32px; }
  .journey-bar { padding: 32px 24px; }
  .journey-bar-inner { padding: 16px 24px; font-size: 0.85rem; }
}

/* ── LARGER PHONES / SMALL TABLETS: true 2-col hero ── */
@media (min-width: 481px) and (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    position: static !important;
    min-height: auto !important;
  }
  .hero-text {
    padding: 32px 0 40px 32px !important;
    position: static !important;
  }
  .hero-visual {
    display: flex !important;
    position: static !important;
    top: auto !important; right: auto !important;
    transform: none !important;
    width: 100% !important; height: 100% !important;
    min-height: 240px !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
  }
  .hero-visual img {
    width: 200px !important;
    height: 200px !important;
  }
}

/* ── TABLET (901px – 1100px) ── */
@media (min-width: 901px) and (max-width: 1100px) {

  /* NAV */
  #nav { padding: 0 28px; height: 100px !important; }
  .nav-logo-img { height: 80px !important; }

  /* HERO */
  .hero { padding-top: 100px; overflow: hidden !important; }
  .hero-inner { grid-template-columns: 0.6fr 0.4fr !important; overflow: hidden !important; }
  .hero-h1 { font-size: clamp(52px, 7vw, 80px) !important; }
  .hero-text { padding: 60px 32px 40px 40px !important; }
.hero-visual { top: 50% !important; right: 0 !important; transform: translateY(-50%) !important; width: 560px !important; height: 560px !important; overflow: hidden !important; }
  .hero-visual video { width: 100% !important; height: 100% !important; object-fit: contain !important; }

  /* THREE WAYS */
  .tw-typed-text { font-size: clamp(36px, 5vw, 56px) !important; }

  /* PRODUCT SHOWCASE */
  .sc-row { grid-template-columns: 1fr 1fr; min-height: 300px; align-items: stretch !important; }
  .sc-photo { min-height: 300px !important; height: 100% !important; object-fit: cover !important; }
  .sc-media { height: 100% !important; align-items: stretch !important; display: flex !important; }
  .sc-media video { height: 100% !important; width: 100% !important; object-fit: cover !important; }
  .sc-logo { max-height: 140px !important; }

  /* TYPO SECTION */
  .typo-inner { grid-template-columns: 260px 1fr; gap: 48px; }
  .tsp-cols { gap: 8px; }

  /* TESTIMONIALS */
  .testimonials-layout { grid-template-columns: 1fr 1.4fr; gap: 40px; }
  .testimonials-left .section-title { font-size: clamp(22px, 2.8vw, 36px); }

  /* STATS */
  .stats-inner { padding: 0 32px; }
  .stats-right { padding-left: 40%; margin-top: -200px; }
  .stats-right .section-title { font-size: clamp(28px, 3.5vw, 44px) !important; }

  
  /* CTA */
  .cta-inner { grid-template-columns: 1.4fr 0.9fr 0.9fr; gap: 28px; padding: 0 28px; }
  .cta-left h2 { font-size: clamp(36px, 4.5vw, 56px) !important; }

  /* AG PAGES */
  .ag-tk-inner { gap: 36px !important; }
  .ag-icons { gap: 12px !important; }

  /* PAGE HERO */
  .page-hero { margin-top: 100px !important; }
  .page-hero h1 { font-size: clamp(44px, 6vw, 72px) !important; padding: 0 40px !important; }

  /* AUDIENCE PILLS */
  .hero-bottom { top: 100px; padding: 0 32px 36px; }
  .audience-pill { font-size: 12px; padding: 8px 16px; }

  /* NAV OVERLAY */
  .nav-overlay-header { height: 100px; padding: 0 28px; }
  .nav-overlay-content { padding: 48px 28px 0; }
  .nav-overlay-cols { gap: 28px; }
  .nav-overlay-col-head { font-size: 16px; }
  .nav-overlay-link { font-size: 14px; }

  /* THREE WAYS CARDS */
  .tw-card-item { width: 200px !important; height: 200px !important; margin-top: -100px !important; margin-left: -100px !important; }
}

/* ── TABLET THREE WAYS + HERO HEIGHT FIXES ── */
@media (min-width: 901px) and (max-width: 1100px) {

  /* Hero — cap height so no giant empty space */
  .hero { min-height: auto !important; }
  .hero-inner { min-height: 500px; }

  /* Three Ways — reduce scroll space and card spread */
  .tw-scroll-space { height: 190vh !important; }
  .tw-sticky { height: 60vh !important; padding: 0 24px !important; }
  .tw-typed-text { font-size: clamp(28px, 4.5vw, 48px) !important; }
  .tw-card-item {
    width: 180px !important;
    height: 180px !important;
    margin-top: -90px !important;
    margin-left: -90px !important;
    padding: 20px !important;
    border-radius: 20px !important;
  }
}

/* ── REDUCE SCROLL SPACES ON TABLET + MOBILE ── */
@media (max-width: 1100px) {
  /* Agencies toolkit — shorter scroll space */
  .ag-tk-scroll-space { height: 180vh !important; }
}
@media (max-width: 900px) {
  .ag-tk-scroll-space { height: auto !important; }
}


@media (max-width: 900px) {
  .hero-bottom {
    padding: 2px 16px 2px !important;  /* was likely 48px bottom — cut it right down */
    gap: 6px !important;
    margin-top: 0 !important;
  }
}

/* ── TOOLKIT SCROLL SPACE — tighter for Jeton-style pacing ── */
/* Desktop: was 300vh, now 220vh — still sticky but gets through faster */

@media (max-width: 1100px) { .ag-tk-scroll-space { height: 180vh !important; } }
@media (max-width: 900px)  { .ag-tk-scroll-space { height: auto !important; } }

/* ══════════════════════════════════════════════
   SINGLE AUDIENCE PILL — Jeton-style segmented pill
   Same track colour/border as the old .audience-pill,
   just merged into one continuous pill with a sliding
   white "active" chip and a Brand dropdown.
══════════════════════════════════════════════ */
.audience-pillbar {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: #7b2d8b;
  border: 2px solid #7b2d8b;
  border-radius: 999px;
}

.ap-label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 4px 10px 18px;
}

.ap-seg {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.ap-seg:hover { background: rgba(255,255,255,0.16); }

.ap-seg.active { background: #fff; color: #7b2d8b; }
.ap-seg.active:hover { background: #fff; }

/* Brand segment (contains the dropdown trigger) */
.ap-seg--dropdown { padding: 0; }
.ap-seg--dropdown:hover,
.ap-seg--dropdown.open { background: rgba(255,255,255,0.16); }
.ap-seg--dropdown.active { background: #fff; color: #7b2d8b; }
.ap-seg--dropdown.active:hover { background: #fff; }

.ap-seg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: inherit;
  background: none;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.ap-chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.ap-seg--dropdown.open .ap-chevron { transform: rotate(180deg); }

.ap-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 10px; /* invisible bridge — keeps hover unbroken between trigger and menu */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s;
  z-index: 9999;
}

.ap-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  transform: translate(-50%, 6px);
  transition: transform 0.18s ease;
}

.ap-seg--dropdown:hover .ap-dropdown,
.ap-seg--dropdown.open .ap-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.18s ease, visibility 0s;
}

.ap-seg--dropdown:hover .ap-dropdown-inner,
.ap-seg--dropdown.open .ap-dropdown-inner {
  transform: translate(-50%, 0);
}

.ap-dropdown-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 9px 14px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.ap-dropdown-link:hover { background: #f3e8fb; color: #7b2d8b; }


@media (max-width: 1600px) {
    .product-showcase {
        height: auto;
        min-height: auto;
    }

    .sc-wrap {
        height: auto;
        min-height: auto;
    }
}
/* ── Tablet — keep the full pill, just size it down ── */
@media (min-width: 901px) and (max-width: 1100px) {
  .ap-seg, .ap-seg-btn { font-size: 12px; padding: 8px 16px; }
  .ap-label { font-size: 12px; padding: 8px 4px 8px 16px; }
}

/* ── Mobile compact trigger (Jeton-style) ── */
.ap-mobile-trigger {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #7b2d8b;
  border: 2px solid #7b2d8b;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(123,45,139,0.25);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.ap-mobile-trigger:active { transform: translateY(1px) translateZ(0); }

.ap-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(20,10,25,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.ap-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s;
}

.ap-mobile-sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 22px 22px calc(28px + env(safe-area-inset-bottom));
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 -16px 48px rgba(0,0,0,0.18);
}
.ap-mobile-overlay.open .ap-mobile-sheet { transform: translateY(0); }

.ap-mobile-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ap-mobile-sheet-header span {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
}
.ap-mobile-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f3e8fb;
  color: #7b2d8b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ap-mobile-group { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.ap-mobile-group:first-of-type { padding-top: 0; }
.ap-mobile-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9a9a9;
  margin-bottom: 6px;
  padding: 0 4px;
}
.ap-mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.ap-mobile-link:hover,
.ap-mobile-link:active { background: #f3e8fb; color: #7b2d8b; }
.ap-mobile-link--top { margin-top: 10px; }


@media (min-width: 901px) and (max-width: 1100px) {
  .sc-row { height: auto !important; min-height: 400px; }
  .sc-brand { padding: 32px 24px !important; }
  .sc-btn { position: static !important; margin-top: 16px !important; }
}


@media (max-width: 900px) {
  .audience-pillbar { display: none !important; }
  .ap-mobile-trigger { display: inline-flex; }
}