/* ==========================================================================
   Gleaming — For Business page (Figma 1256:10200 desktop / 1256:13636 mobile)
   ========================================================================== */

html,
body {
  overflow-x: clip; /* hero brush / photo bleed must never cause h-scroll */
}

/* GL2 desktop frame 1256:10200 page background is pure white (not #FCFCFC),
   same as the mobile frame fix below — scoped so mobile numbers hold. */
@media (min-width: 768px) {
  body {
    background: #ffffff;
  }
}

/* ==========================================================================
   Hero (Figma 1256:10450) — white shell, rounded bottom, overlaps photo band
   ========================================================================== */
.biz-hero {
  position: relative;
  z-index: 1;
  /* GL2: full-bleed gradient behind the translucent header, fitted vs export */
  margin-top: -174px;
  padding-top: 174px;
  min-height: 807px;
  background: linear-gradient(103deg, #1E2CA2 29.5%, #A1ABFF 100%);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  overflow: hidden;
  color: var(--color-white);
  margin-bottom: -72px; /* photo band underlaps the hero (band y=736, hero bottom 807) */
}

.biz-hero__content {
  padding-top: 104px; /* title cap tops at y=289 in the frame */
  max-width: 678px;
}

.biz-hero__title {
  line-height: 70px; /* Figma box 678x140: two 70px lines */
  color: var(--color-white);
}

.biz-hero__lead {
  margin-top: 14px;
  max-width: 460px;
  font-family: "Poppins", var(--font-body);
  font-size: 17px;
  line-height: 30px;
  color: var(--color-white);
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary-400);
}

.biz-hero__cta {
  margin-top: 33px;
  min-width: 240px;
}

/* GL2 hero art: broom node 589x589 at (989,131), stars group 331 at (758,720) */
.biz-hero__brush {
  position: absolute;
  top: 131px;
  left: 989px;
  width: 451px; /* node 589 wide, clipped by the frame edge to 451 */
  height: auto;
  pointer-events: none;
}

.biz-hero__sparkles {
  position: absolute;
  left: 820px;
  top: 380px;
  width: 280px;
  height: auto;
  pointer-events: none;
}

/* NOTE (2026-07): swapping hero-stars-3.png for the transparent star exports
   (star-3563/3564) was A/B-tested and REJECTED: starzone diff 1.28 (baked
   crop) vs 6.32 (exports) — the isolated exports lose the group's shadow
   context. Keep the baked crop. */

/* ==========================================================================
   Full-bleed photo band (Figma 1256:10201, 1440x724)
   ========================================================================== */
.biz-photo img {
  width: 100%;
  height: 724px;
  object-fit: cover;
}

/* ==========================================================================
   Statement headings + logo strip (Figma 1256:10203 / 10207 / 10205)
   ========================================================================== */
.biz-trust__statement {
  max-width: 928px;
  margin: 136px auto 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 60px;
  line-height: var(--leading-tight);
  text-align: center;
}

/* GL2 desktop: statement ink is 72px-high caps (829px line width), not 60px */
@media (min-width: 1024px) {
  .biz-trust__statement {
    font-size: 72px;
    line-height: 1;
  }

  /* GL2 frame: services grid sits at x=86..1366, 6px right of the container */
  .biz-services__grid {
    transform: translateX(6px);
  }

}

.biz-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 95px; /* GL2: logo tiles top at y=1833 (was 2px high at 93px) */
  width: 100%;
  overflow: clip;
}

.biz-logos li {
  flex: none;
}

.biz-logos img {
  width: 200px;
  height: 56px;
}

/* ==========================================================================
   Office services cards (Figma 1256:10498, cards 305x380)
   ========================================================================== */
.biz-services .biz-trust__statement--sub {
  margin-top: 189px;
}

.biz-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 72px;
}

.card--biz,
.card--carousel {
  row-gap: 16px;
  justify-content: center; /* design centers the stack vertically in the fixed-height card */
}

.card--biz {
  min-height: 380px;
}

.card--biz .link-more,
.card--carousel .link-more {
  margin-top: 8px; /* 16 row-gap + 8 = 24px text->actions gap (Figma) */
}

.card--carousel {
  min-height: 341px;
}

/* GL2 carousel cards: stack is top-anchored (icon box at y+33) and the
   Book link is pinned to the card bottom — unlike the centered biz cards */
@media (min-width: 1024px) {
  .card--carousel {
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .card--carousel .link-more {
    margin-top: auto;
  }
}

/* ==========================================================================
   Partner pitch + quote form (Figma 1256:10539)
   ========================================================================== */
.biz-partner {
  margin-top: 191px;
}

.biz-partner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 553px minmax(0, 677px);
  justify-content: space-between;
  gap: 49px;
  padding-top: 66px;
}

.biz-partner__mark {
  position: absolute;
  top: 35px;
  right: 61px;
  width: 125px;
  height: 108px;
  pointer-events: none;
}

.biz-partner__bubble {
  position: absolute;
  left: 245px;
  top: 739px;
  width: 120px;
  height: 113px;
  pointer-events: none;
}

.biz-partner__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: var(--leading-tight);
  max-width: 553px;
}

.biz-partner__list {
  margin-top: 48px; /* Figma: content gap 40 + first list-item offset 8 */
}

.biz-partner__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  line-height: 1.6;
}

.biz-partner__item + .biz-partner__item {
  margin-top: 16px;
}

.biz-partner__item img {
  flex: none;
  margin-top: 3px;
}

/* --- form panel --- */
.biz-partner__panel {
  background: var(--color-purple-100);
  border-radius: var(--radius-card);
  padding: 77px 52px 74px 57px;
  min-height: 685px; /* Figma 1256:10540 */
}

.biz-form__field {
  margin-bottom: 35px;
}

.biz-form__select,
.biz-form__input {
  width: 100%;
  height: 70px;
  padding: 0 44px 0 29px;
  background-color: var(--color-white);
  border: none;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: var(--leading-body);
  color: var(--color-text-primary);
}

.biz-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../../assets/img/for-business/icon-caret-down.svg");
  background-repeat: no-repeat;
  background-position: right 29px center;
  cursor: pointer;
}

.biz-form__input::placeholder {
  color: var(--color-text-primary);
  opacity: 1;
}

.biz-form__submit {
  margin-top: 25px;
  min-width: 317px;
}

/* ==========================================================================
   Testimonials (Figma 1256:10379) — 4 cards, row bleeds right, hanging quotes
   ========================================================================== */
.biz-testimonials {
  margin-top: 915px;
}

.biz-testimonials__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 36px;
  line-height: var(--leading-tight);
  text-align: center;
  max-width: 378px;
  margin-inline: auto;
}

.biz-testimonials__row {
  display: flex;
  gap: 20px;
  margin-top: 93px;
  overflow-x: auto;
  padding-inline: max(var(--page-pad), calc((100% - 1280px) / 2));
  scrollbar-width: none;
}

.biz-testimonials__row::-webkit-scrollbar {
  display: none;
}

.tcard {
  position: relative;
  flex: 0 0 390px;
  width: 390px;
  padding-bottom: 112px; /* room for the hanging 3D quote mark (347 total) */
}

.tcard__card {
  background: var(--color-card-bg);
  border-radius: var(--radius-panel);
  padding: 32px 30px;
  min-height: 235px; /* Figma renders the 390x235 frame as the card surface */
}

.tcard__head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.tcard__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.tcard__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px; /* Figma "Sophia Moore" 107x20 */
  line-height: 20px;
  color: var(--color-neutral-800);
}

.tcard__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-alt);
  font-size: var(--text-md); /* Figma "Link text": 18px */
  line-height: var(--leading-body);
}

.tcard__rating img {
  width: 24px;
  height: 24px;
}

.tcard__quote {
  margin-top: 24px;
}

.tcard__quote p {
  max-width: 330px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: var(--leading-body);
}

/* Figma stores the rotated node's origin at its bottom-right (98,272);
   the rendered box is (21,197)-(98,272), overlapping the card's corner */
.tcard__mark {
  position: absolute;
  z-index: 1;
  left: 21px;
  top: 197px;
  width: 77px;
  height: 75px;
}

/* ==========================================================================
   CTA panel (Figma 1256:10367) — gradient, brush, bubbles spilling below
   ========================================================================== */
.biz-cta {
  margin-top: 379px;
}

.biz-cta__wrap {
  position: relative;
}

.biz-cta__panel {
  position: relative;
  overflow: hidden;
  min-height: 441px;
  border-radius: var(--radius-card);
  background: linear-gradient(100deg, #1E2CA2 0%, #1E2CA2 15%, #4653BF 48%, #5E6AD0 64%, #939EF7 98%);
  padding: 79px 83px 79px 83px;
  color: var(--color-white);
}

.biz-cta__content {
  position: relative;
  z-index: 1;
  max-width: 602px;
}

.biz-cta__title {
  margin-top: 4px; /* ref cap-top at panel-rel y 89 */
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 60px; /* ref ink 580px wide in the 602x60 box */
  line-height: 60px;
  color: var(--color-white);
}

.biz-cta__text {
  margin-top: 12px;
  max-width: 602px;
  font-family: var(--font-heading); /* ref body is Cabinet Grotesk */
  font-size: 20px; /* ref line ink 587px = Cabinet 20px */
  line-height: 20px; /* Figma box 602x40: two 20px lines */
  color: rgba(255, 255, 255, 0.85);
}

.biz-cta__btn {
  margin-top: 44px;
  min-width: 343px;
  min-height: 72px;
  padding: 12px 32px;
  font-size: var(--text-btn-lg);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary-400);
}

/* transparent 3D broom + sparkle pair — ink aligned to the Figma render
   (head ink 985..1275, star ink 800..920 panel-relative) */
.biz-cta__brush {
  position: absolute;
  top: -69px;
  right: -8px;
  width: 379px;
  height: auto;
}

.biz-cta__stars {
  position: absolute;
  left: 736px;
  top: 177px;
  width: 265px;
  height: auto;
}

/* ==========================================================================
   Services carousel (Figma 1256:10322) — 4 standard cards + page dots
   ========================================================================== */
.biz-carousel {
  margin-top: 220px;
}

.biz-carousel__title,
.biz-faq__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 72px;
  line-height: var(--leading-tight);
  text-align: center;
}

.biz-carousel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 89px;
}

.biz-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 23px;
  padding: 29px 0;
}

.biz-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--color-primary-100);
}

.biz-carousel__dot.is-active {
  background: var(--color-primary-400);
}

/* ==========================================================================
   FAQ (Figma 1256:10264) — accordion, 2nd item open, single divider
   ========================================================================== */
.biz-faq {
  margin-top: 148px;
}

.biz-faq__list {
  margin-top: 72px;
}

.biz-faq__item {
  padding-block: 25.6px;
}

.biz-faq__item:has([aria-expanded="true"]) {
  background: var(--color-purple-100);
  border-radius: var(--radius-card);
}

.biz-faq__q {
  font-size: inherit;
  line-height: inherit;
}

.biz-faq__q button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 128px;
  padding: 0 32px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px; /* GL2 render ink: 'Do you really show…' 645px wide => 32px (30px gave 603px) */
  line-height: 1.2;
  color: var(--color-neutral-800);
}

.biz-faq__chevron {
  flex: none;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(20, 20, 20, 0.08);
}

.biz-faq__q [aria-expanded="true"] .biz-faq__chevron img {
  transform: rotate(180deg);
}

.biz-faq__panel {
  padding: 4px 32px 34px; /* open item totals 318.6px like Figma 1256:10277 */
}

.biz-faq__panel p {
  max-width: 1216px;
  font-family: var(--font-heading);
  font-size: 26px; /* GL2 render: line pitch 42px, l1 ink 1202px (24px wrapped differently) */
  line-height: 42px;
  color: var(--color-neutral-600);
}

.biz-faq__divider {
  height: 1px;
  background: var(--color-neutral-300);
}

/* GL2 open FAQ item (1256:10277, 319px total): title box centered at y+96,
   body line boxes from y+149, 42px pitch — the collapsed 128px min-height
   does not apply to the expanded button */
@media (min-width: 1024px) {
  .biz-faq__item:has([aria-expanded="true"]) {
    padding-block: 44.8px 25.6px;
  }

  .biz-faq__q button[aria-expanded="true"] {
    /* content row is the 64px chevron: 18.2px pads center it at item y+95 */
    min-height: 0;
    padding-block: 18.2px;
  }

  .biz-faq__panel {
    padding: 4px 32px 18px;
  }
}

/* ==========================================================================
   Footer gap override for this page (design: 296px above footer)
   ========================================================================== */
.site-footer {
  margin-top: 296px;
}

@media (min-width: 1024px) {
  .site-footer {
    margin-top: 293px; /* GL2: tail sat 3px low after the FAQ open-item fit */
  }
}

/* ==========================================================================
   Tablet (768–1023): compress the airy desktop rhythm, 2-col grids
   ========================================================================== */
@media (max-width: 1023px) {
  .biz-hero__brush {
    width: 340px;
    top: -40px;
    right: -30px;
  }

  .biz-hero__sparkles {
    right: 40px;
    top: 230px;
    width: 200px;
  }

  .biz-hero__content {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .biz-photo img {
    height: 480px;
  }

  .biz-trust__statement {
    margin-top: 96px;
    font-size: 44px;
  }

  .biz-logos {
    margin-top: 64px;
  }

  .biz-services .biz-trust__statement--sub {
    margin-top: 120px;
  }

  .biz-services__grid,
  .biz-carousel__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .biz-partner {
    margin-top: 120px;
  }

  .biz-partner__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .biz-partner__mark {
    width: 90px;
    height: 78px;
    top: 0;
    right: 0;
  }

  .biz-partner__bubble {
    display: none;
  }

  .biz-partner__panel {
    padding: 48px 40px;
  }

  .biz-testimonials {
    margin-top: 160px;
  }

  .biz-cta {
    margin-top: 160px;
  }

  .biz-carousel {
    margin-top: 160px;
  }

  .biz-carousel__title,
  .biz-faq__title {
    font-size: 48px;
  }

  .biz-faq {
    margin-top: 120px;
  }

  .site-footer {
    margin-top: 160px;
  }
}

/* ==========================================================================
   Mobile (<768) — matches the 402px frame (Figma 1256:13636)
   ========================================================================== */
@media (max-width: 767px) {
  /* GL2 mobile frame 1001:6738 page background is pure white (not #FCFCFC) */
  body {
    background: #ffffff;
  }

  /* mobile-only / desktop-only content pairs */
  .fb-m {
    display: inline;
  }

  img.fb-m {
    display: block;
  }

  .fb-d {
    display: none;
  }

  /* design (1256:13636) swaps the CTA panel and services carousel vs desktop */
  main {
    display: flex;
    flex-direction: column;
  }

  .biz-cta {
    order: 1;
  }

  .biz-faq {
    order: 2;
  }

  /* --- hero (GL2 1001:6740: panel ends y=511, header block is 96 tall) --- */
  .biz-hero {
    margin-top: -96px; /* mobile header is 96 tall -> hero border box top = 0 */
    padding-top: 96px;
    min-height: 0; /* desktop 807 must not leak into the 511px mobile hero */
    margin-bottom: -40px;
  }

  .biz-hero .container {
    padding-inline: 18px; /* GL2 mobile hero content inset 18, not 20 */
  }

  .biz-hero__content {
    padding-top: 30px; /* title box top y=126 (cap 131) */
    padding-bottom: 120px; /* button bottom 391 -> hero bottom 511 */
    max-width: none;
  }

  .biz-hero__title {
    max-width: 287px; /* 44px (u-display mobile) wraps to 3 natural lines */
    line-height: 44px; /* caps 131/175/220, "Professional" ink 226px */
  }

  .biz-hero__lead {
    margin-top: 4px;
    max-width: 220px;
    font-family: var(--font-heading); /* GL2 mobile lead is Cabinet, not Poppins */
    font-size: 18px; /* GL2 line1 ink 207px = Cabinet 18 */
    line-height: 24px; /* caps 267/291/315 */
    max-height: none;
  }

  /* Figma mobile hero button is a 113.8x30.5 scaled instance at y=360.5 */
  .biz-hero__cta {
    margin-top: 26px;
    min-width: 0;
    min-height: 30px;
    padding: 0 23px;
    gap: 5px;
    font-size: 10px;
    line-height: 1.5;
  }

  .biz-hero__cta .btn__icon {
    width: 10px;
    height: 10px;
  }

  /* 249px node = 0.423x the desktop 589px node; ink-aligned to rows 290..463 */
  .biz-hero__brush {
    width: 191px;
    top: 229px;
    left: 240px;
    right: auto;
  }

  /* truth ink (177..264, 370..452) is taller than the asset pair: stretch Y */
  .biz-hero__sparkles {
    left: 177px;
    right: auto;
    top: 360px;
    width: 87px;
    height: 112px;
  }

  /* --- photo band --- */
  .biz-photo img {
    height: 248px;
    object-position: -55px 50%; /* GL2 node: 494px-wide fit at x=-55, not centered */
  }

  /* --- statements + logos --- */
  .biz-trust__statement {
    margin-top: 86px;
    max-width: 357px;
    font-size: 28px; /* GL2 ink 345px wide, caps 808/836 */
    line-height: 28px;
  }

  .biz-logos {
    display: none; /* GL2 mobile shows the real-brand strip (m-logos.png) */
  }

  .biz-logos-m {
    width: 402px;
    max-width: none;
    height: 56px;
    margin: 40px auto 0;
  }

  .biz-services .biz-trust__statement--sub {
    margin-top: 132px;
  }

  .biz-services__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .card--biz {
    min-height: 341px;
    background: #F6F7FB; /* GL2 mobile card fill (246,247,251), darker than token */
  }

  .card--biz .card__title {
    font-size: 32px; /* GL2 "Office Cleaning" ink 203px = Cabinet 32 */
    line-height: 42px;
  }

  .card--biz .card__text {
    font-family: "Poppins", var(--font-body);
    font-size: 15px; /* frame's Poppins cut ~ Chrome Poppins 15 */
    line-height: 27px; /* GL2 text box 108 = 4 x 27 */
  }

  /* --- partner + form --- */
  .biz-partner {
    margin-top: 63px;
    /* GL2 frame 1001:6821 fill: white -> #CFDEF7 toward bottom-right */
    background: linear-gradient(108deg, #ffffff 42%, #CFDEF7 100%);
    padding-bottom: 66px; /* section runs to y=3585, 66 below the panel */
  }

  .biz-partner__inner {
    gap: 86px; /* list ends 3068, panel top 3154 */
    padding-top: 66px;
  }

  .biz-partner__mark {
    display: none;
  }

  .biz-partner__bubble {
    display: none; /* desktop star-sparkle; mobile uses the X-star pair */
  }

  .biz-partner__stars-m {
    position: absolute;
    right: 8px;
    top: 476px;
    width: 98px;
    height: 85px;
    pointer-events: none;
  }

  .biz-partner__title {
    margin-top: 2px; /* caps 2715/2751/2787 */
    font-size: 36px; /* GL2 "A Cleaning Partner" ink 288px */
    line-height: 36px; /* 3 lines = 108 box */
    max-width: 361px;
  }

  .biz-partner__list {
    margin-top: 24px; /* +2 title margin above keeps items at 2848 */
  }

  .biz-partner__item {
    gap: 8px; /* GL2 item text starts x=52 (icon 24 + 8) */
    font-size: var(--text-md); /* 18px — cap height 11.5 like desktop */
    line-height: 22px; /* GL2 item text 321x44 = 2 x 22, pitch 60 */
  }

  .biz-partner__item > span {
    display: block;
    max-width: 310px; /* forces the frame's per-item wraps */
  }

  .biz-partner__item:nth-child(2) > span {
    max-width: 330px; /* "…custom checklists" must stay on line 1 */
  }

  .biz-partner__item:nth-child(4) > span {
    max-width: 321px; /* "…quality checks, and" (313px) stays on line 1 */
  }

  .biz-partner__item svg {
    flex: none;
    margin-top: 0;
  }

  /* Figma mobile panel (1001:6822) is a 0.53-scaled instance: 37px fields */
  .biz-partner__panel {
    padding: 41px 30px 39px;
    min-height: 365px;
    /* opaque white->blue diagonal fade sampled from the frame (must hide
       the star decor that slides under the panel corner) */
    background: linear-gradient(108deg, #ffffff 20%, #D3E0F8 100%);
  }

  .biz-form__field {
    margin-bottom: 19px;
  }

  .biz-form__select,
  .biz-form__input {
    height: 37px;
    padding: 0 30px 0 15px;
    border-radius: 9px;
    font-size: var(--text-base);
  }

  .biz-form__select {
    background-position: right 15px center;
    background-size: 8px 5px;
  }

  .biz-form__submit {
    margin-top: 13px;
    min-width: 169px;
    min-height: 38px;
    padding: 0 24px;
    gap: 6px;
    font-size: 14px;
  }

  .biz-form__submit .btn__icon {
    width: 13px;
    height: 13px;
  }

  /* --- testimonials --- */
  .biz-testimonials {
    margin-top: 229px; /* partner section now ends 3585; title box top 3814 */
  }

  .biz-testimonials__title {
    max-width: none;
    font-size: 32px; /* GL2 "Testimonials" ink 165px = Cabinet 32 */
    line-height: 38px;
  }

  .tcard__rating {
    min-height: 35px; /* GL2 rating row 35 tall -> quote text top at 87 */
  }

  .tcard__quote {
    margin-top: 9px; /* caps 3968/3989/4011/4033 */
  }

  .tcard__quote p {
    line-height: 21.4px; /* GL2 line pitch 21.4, not 21 */
  }

  .biz-testimonials__row {
    flex-direction: column;
    gap: 48px; /* GL2 tiles every 239px (191 card + 48) */
    margin-top: 24px;
    overflow: visible;
    padding-inline: var(--page-pad-mobile);
  }

  .tcard {
    flex: none;
    width: 100%;
    padding-bottom: 0;
  }

  .tcard__card {
    padding: 20px 20px 14px; /* bottom pad absorbs the 21.4px quote leading */
    min-height: 191px; /* GL2 card surface 362x191 */
  }

  .tcard__avatar {
    width: 48px;
    height: 48px;
  }

  .tcard__quote {
    margin-top: 8px;
  }

  .tcard__quote p {
    max-width: 322px;
  }

  /* GL2: mark ink starts at the card's bottom edge, hangs into the 48px gap */
  .tcard__mark {
    left: 12px;
    top: calc(100% - 11px);
    width: 58px;
    height: 56px;
  }

  /* --- CTA (follows the carousel on mobile) --- */
  .biz-cta {
    margin-top: 188px; /* carousel ends 6228, panel top 6416 */
  }

  .biz-cta__panel {
    min-height: 718px;
    padding: 79px 31px 0;
    /* GL2 mobile gradient is near-horizontal (94deg), flat #1E2CA2 to x~25% */
    background: linear-gradient(94deg, #1E2CA2 27%, #4754BF 50%, #8C97F2 94%, #9AA6FC 100%);
  }

  .biz-cta__title {
    margin-top: 0;
    font-size: 32px;
    line-height: 1; /* Figma 288x64: two 32px lines */
  }

  .biz-cta__text {
    margin-top: 16px;
    max-width: 288px; /* Figma box 288x80: four 20px lines */
    font-size: 18px;
  }

  .biz-cta__btn {
    margin-top: 44px;
    min-width: 192px;
    min-height: 46px;
    padding: 8px 24px;
    font-size: var(--text-btn);
  }

  /* 333px node is 0.715x the desktop 466px node; centroid-fit to the frame */
  .biz-cta__brush {
    width: 271px;
    height: 357px; /* squeeze 1%: low-res asset runs slightly tall vs frame */
    top: 307px;
    left: 106px;
    right: auto;
  }

  .biz-cta__stars {
    left: -24px;
    top: 487px;
    width: 232px;
  }

  /* --- carousel (precedes the CTA on mobile) --- */
  .biz-carousel {
    margin-top: 296px; /* testimonials end 4784, title top 5080 */
  }

  .biz-carousel__title,
  .biz-faq__title {
    font-size: 32px; /* GL2 single real-copy line, box 38 */
    line-height: 38px;
    text-align: center;
    max-height: none;
    overflow: visible;
  }

  .biz-carousel__grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .card--carousel {
    min-height: 0;
    padding-block: 16px;
    justify-content: flex-start;
    row-gap: 0; /* GL2: link sits flush at content end; min-height + auto margin */
  }

  .card--carousel .card__title {
    margin-top: 16px;
  }

  .card--carousel .card__text {
    margin-top: 16px;
  }

  /* GL2 hand-sized cards: 245 / 257 / 263 / 261 */
  .biz-carousel__grid .card--carousel:nth-child(1) { min-height: 245px; }
  .biz-carousel__grid .card--carousel:nth-child(2) { min-height: 257px; }
  .biz-carousel__grid .card--carousel:nth-child(3) { min-height: 263px; }
  .biz-carousel__grid .card--carousel:nth-child(4) { min-height: 261px; }

  .card--carousel .link-more {
    margin-top: auto; /* bottom-anchored inside the fixed-height card */
  }

  .card--carousel .card__title {
    font-size: 24px;
    line-height: 31px; /* GL2 heading box 314x31 */
  }

  .card--carousel .card__text {
    font-size: var(--text-base);
    line-height: 26px;
  }

  .biz-carousel__dots {
    display: none;
  }

  /* --- FAQ --- */
  .biz-faq {
    margin-top: 209px;
  }

  .biz-faq__list {
    margin-top: 24px;
  }

  .biz-faq__item {
    padding-block: 0;
  }

  .biz-faq__item:has([aria-expanded="true"]) {
    /* GL2 open panel fades left #F1EFFA -> right near-white */
    background: linear-gradient(90deg, #F1EFFA 0%, #FCFCFE 100%);
  }

  .biz-faq__q button {
    position: relative;
    min-height: 128px;
    padding: 0 32px 6px; /* centered block sits 3px higher than pure center */
    font-size: 20px;
    line-height: 27px; /* GL2 trigger 20/27 */
  }

  /* GL2 title boxes hug per-question widths; chevron must not set them */
  .biz-faq__q button > span:first-child {
    display: block;
  }

  .biz-faq__list > .biz-faq__item:nth-child(1) button > span:first-child { max-width: 250px; }
  .biz-faq__list > .biz-faq__item:nth-child(2) button > span:first-child { max-width: 248px; }
  .biz-faq__list > .biz-faq__item:nth-child(3) button > span:first-child { max-width: 276px; }
  .biz-faq__list > .biz-faq__item:nth-child(5) button > span:first-child { max-width: 312px; }
  .biz-faq__list > .biz-faq__item:nth-child(6) button > span:first-child { max-width: 242px; }

  /* chevron circles overlap the text column: absolute, right 32 (closed) */
  .biz-faq__chevron {
    position: absolute;
    right: 32px;
    top: 32px;
  }

  /* open item: title box top y=63 rel item, chevron flush right */
  .biz-faq__q [aria-expanded="true"] {
    min-height: 0;
    padding: 63px 24px 0;
  }

  .biz-faq__q [aria-expanded="true"] .biz-faq__chevron {
    right: 0;
    top: 62px;
  }

  /* GL2 open chevron is indigo (#1E2CA2), asset stroke is #170F49 */
  .biz-faq__q [aria-expanded="true"] .biz-faq__chevron img {
    filter: brightness(2.2) hue-rotate(-15deg) saturate(1.15);
  }

  .biz-faq__panel {
    padding: 33px 24px 44px; /* trigger 117 + 33 + 180 + 44 = 374 (GL2 1001:7005) */
  }

  .biz-faq__panel p {
    font-size: var(--text-base);
    line-height: 30px; /* GL2 paragraph pitch 30 */
  }

  /* --- footer gap --- */
  .site-footer {
    margin-top: 409px; /* FAQ ends 8291, footer top 8700 */
  }
}

/* mobile-only content pairs stay hidden on desktop (>=768) */
.fb-m {
  display: none;
}

/* re-assert after the un-scoped rule above so the cascade cannot flip it */
@media (max-width: 767px) {
  .fb-m {
    display: inline;
  }

  img.fb-m {
    display: block;
  }

  .fb-d {
    display: none;
  }
}
