.hp-stats {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
      margin-top: var(--space-3xl);
      padding-top: var(--space-2xl);
      border-top: 1px solid var(--gray-800);
    }

    @media (min-width: 768px) {
      .hp-stats {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xl);
      }
    }

    .hp-stats__item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }

    .hp-stats__number {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--rosa);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .hp-stats__label {
      font-size: var(--text-sm);
      color: var(--gray-400);
      font-weight: 300;
    }

    .hp-stats__aside {
      display: block;
      font-size: var(--text-xs);
      color: var(--gray-600);
      font-weight: 300;
      font-style: italic;
      margin-top: 6px;
      line-height: 1.4;
    }

    .hp-stats__divider {
      display: none;
    }

    @media (min-width: 768px) {
      .hp-stats__divider {
        display: block;
        width: 1px;
        height: 60px;
        background: var(--gray-800);
        flex-shrink: 0;
      }
    }

    .hp-portfolio-header {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      margin-bottom: var(--space-2xl);
    }

    @media (min-width: 768px) {
      .hp-portfolio-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
      }
    }

    /* ── Portfolio grid - full-width, matches portfolio.html ── */
    .hp-portfolio-grid {
      display: grid;
      grid-template-columns: 1fr;
      column-gap: 1rem;
      row-gap: 3rem;
      /* Break out of container to full width */
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      padding: 0 var(--container-padding);
      box-sizing: border-box;
    }

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

    .hp-portfolio-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .hp-portfolio-card__image-wrap {
      overflow: hidden;
      aspect-ratio: 1 / 1;
      cursor: none;
    }

    .hp-portfolio-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hp-portfolio-card__info {
      padding: var(--space-sm) 0 0;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: var(--space-sm);
    }

    @media (min-width: 768px) {
      .hp-portfolio-card__info {
        padding: var(--space-sm) var(--space-md) 0;
      }
    }

    .hp-portfolio-card__left {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .hp-portfolio-card__client {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
      transition: color 0.3s;
    }

    .hp-portfolio-card:hover .hp-portfolio-card__client {
      color: var(--rosa);
    }

    /* ── "Ver projeto" cursor circle ── */
    .hp-cursor {
      position: fixed;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--rosa);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      pointer-events: none;
      z-index: 1000;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.4);
      transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hp-cursor.is-active {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    @media (hover: none) {
      .hp-cursor { display: none; }
      .hp-portfolio-card__image-wrap { cursor: pointer; }
    }

    .hp-portfolio-card__name {
      font-size: var(--text-sm);
      font-weight: 300;
      color: var(--gray-400);
      line-height: 1.3;
      margin: 0;
    }

    .hp-portfolio-card__scope {
      font-size: var(--text-sm);
      color: var(--gray-500);
      font-weight: 300;
      text-align: right;
      white-space: nowrap;
    }

    .hp-portfolio-cta {
      display: flex;
      justify-content: center;
      margin-top: var(--space-2xl);
    }

    .hp-highlight {
      position: relative;
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    .hp-highlight::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 39, 122, 0.03) 0%, transparent 50%, rgba(255, 39, 122, 0.02) 100%);
      pointer-events: none;
    }

    .hp-highlight__inner {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    .hp-highlight__rule {
      display: flex;
      align-items: center;
      gap: var(--space-lg);
    }

    .hp-highlight__line {
      flex: 1;
      height: 1px;
      background: var(--gray-800);
    }

    .hp-highlight__tag {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--rosa);
      font-weight: 500;
      white-space: nowrap;
    }

    .hp-highlight__quote {
      margin: 0;
    }

    .hp-highlight__main {
      display: block;
      font-size: clamp(1.8rem, 4.5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .hp-highlight__main .hp-highlight__em {
      color: var(--rosa);
      font-style: normal;
      font-weight: 300;
    }

    .hp-highlight__sub {
      display: block;
      font-size: clamp(1.1rem, 2.5vw, 1.8rem);
      font-weight: 300;
      line-height: 1.3;
      color: var(--gray-400);
      margin-top: var(--space-md);
      max-width: 700px;
    }

    .hp-highlight__accent {
      width: 60px;
      height: 3px;
      background: var(--rosa);
      margin-top: var(--space-sm);
      transform-origin: left;
    }

    @media (min-width: 768px) {
      .hp-highlight {
        padding: var(--space-5xl) 0;
      }

      .hp-highlight__inner {
        gap: var(--space-2xl);
      }
    }

    /* ── Explore Section ── */
    .hp-explore {
      padding: var(--space-xl) 0 var(--space-3xl);
      position: relative;
    }

    .hp-explore__label {
      font-size: var(--text-sm);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--gray-500);
      font-weight: 500;
      text-align: center;
      margin-bottom: var(--space-xl);
    }

    .hp-explore__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-sm);
    }

    @media (min-width: 768px) {
      .hp-explore__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
      }
    }

    .hp-explore__card {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      padding: var(--space-lg) var(--space-xl);
      border: 1px solid var(--gray-700);
      border-radius: var(--radius-lg);
      background: var(--gray-800);
      text-decoration: none;
      color: var(--white);
      cursor: pointer;
      transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
      position: relative;
    }

    .hp-explore__card:hover,
    .hp-explore__card:focus-visible {
      border-color: var(--rosa);
      background: rgba(255, 39, 122, 0.08);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255, 39, 122, 0.1);
    }

    .hp-explore__card:focus-visible {
      outline: 2px solid var(--rosa);
      outline-offset: 2px;
    }

    .hp-explore__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: rgba(255, 39, 122, 0.12);
      color: var(--rosa);
      flex-shrink: 0;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .hp-explore__card:hover .hp-explore__icon {
      background: rgba(255, 39, 122, 0.2);
      transform: scale(1.05);
    }

    .hp-explore__card-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      min-width: 0;
    }

    .hp-explore__card-title {
      font-size: var(--text-lg);
      font-weight: 500;
      line-height: 1.3;
    }

    .hp-explore__card-desc {
      font-size: var(--text-sm);
      color: var(--gray-400);
      font-weight: 300;
      line-height: 1.5;
    }

    .hp-explore__arrow {
      color: var(--rosa);
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-out);
    }

    .hp-explore__card:hover .hp-explore__arrow {
      transform: translate(3px, -3px);
    }

    @media (min-width: 768px) {
      .hp-explore__card {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-xl);
        gap: var(--space-lg);
      }

      .hp-explore__arrow {
        align-self: flex-end;
        margin-top: auto;
      }
    }

    /* ── Método - Leeroy-style sticky image + scroll list ── */
    .hp-metodo {
      position: relative;
    }

    /* ── Mobile: vertical layout, no sticky ── */
    .hp-metodo__image {
      display: none;
    }

    .hp-metodo__list {
      padding: 0 var(--container-padding);
      box-sizing: border-box;
    }

    .hp-metodo__item {
      border-top: 1px solid var(--gray-500);
      padding: var(--space-xl) 0;
    }

    .hp-metodo__item:last-child {
      border-bottom: 1px solid var(--gray-500);
    }

    .hp-metodo__item-img {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      margin-bottom: var(--space-lg);
    }

    .hp-metodo__item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hp-metodo__item-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-md);
      width: 100%;
    }

    .hp-metodo__item-title {
      font-size: clamp(1.5rem, 5vw, 2rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
    }

    .hp-metodo__item-text {
      font-size: var(--text-base);
      color: var(--gray-300);
      line-height: 1.5;
      font-weight: 300;
    }

    /* ── Desktop: sticky image + scroll list ── */
    @media (min-width: 768px) {
      .hp-metodo__image {
        display: flex;
        position: sticky;
        top: 0;
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        z-index: 1;
      }

      .hp-metodo__image-inner {
        position: relative;
        width: auto;
        height: 55svh;
        aspect-ratio: 3 / 4;
        overflow: hidden;
      }

      .hp-metodo__image-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity 0.6s ease;
      }

      .hp-metodo__image-inner img.is-hidden {
        opacity: 0;
        position: absolute;
        inset: 0;
      }

      .hp-metodo__image-inner img.is-active {
        opacity: 1;
      }

      /* Hide per-item images on desktop */
      .hp-metodo__item-img {
        display: none;
      }

      .hp-metodo__list {
        position: relative;
        z-index: 2;
        margin-top: -100vh;
      }

      .hp-metodo__item {
        min-height: 55svh;
        display: flex;
        align-items: center;
        padding: var(--space-3xl) 0;
        opacity: 0.6;
        transition: opacity 0.5s ease;
      }

      .hp-metodo__item.is-active {
        opacity: 1;
      }

      /* 3-column grid: title | empty center (image space) | text */
      .hp-metodo__item-grid {
        grid-template-columns: 1fr 30% 1fr;
        gap: 0;
        align-items: start;
      }

      .hp-metodo__item-title {
        grid-column: 1;
        font-size: clamp(2rem, 3.5vw, 3rem);
        padding-right: var(--space-xl);
      }

      .hp-metodo__item-text {
        grid-column: 3;
        padding-left: var(--space-xl);
        font-size: clamp(0.95rem, 1.1vw, 1.1rem);
      }
    }

    @media (min-width: 1200px) {
      .hp-metodo__item-grid {
        grid-template-columns: 1fr 28% 1fr;
      }

      .hp-metodo__item-title {
        font-size: clamp(2.5rem, 3vw, 3.2rem);
      }
    }

    /* Clients – Leeroy-inspired bordered grid */
    .hp-clients {
      padding: var(--space-3xl) 0;
    }

    .hp-clients__header {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      margin-bottom: var(--space-3xl);
    }

    .hp-clients__title {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: var(--text-4xl);
      line-height: 1.1;
      color: var(--white);
      max-width: 18ch;
    }

    .hp-clients__text {
      font-size: var(--text-base);
      line-height: 1.7;
      color: var(--gray-400);
      max-width: 52ch;
    }

    .hp-clients__text strong {
      color: var(--white);
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .hp-clients__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: var(--space-3xl);
      }

      .hp-clients__title {
        flex: 0 1 55%;
      }

      .hp-clients__text {
        flex: 0 1 40%;
        text-align: left;
      }
    }

    /* Grid with visible borders */
    .hp-clients__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--gray-800);
      border-left: 1px solid var(--gray-800);
    }

    .hp-clients__cell {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-xl) var(--space-lg);
      min-height: 100px;
      border-right: 1px solid var(--gray-800);
      border-bottom: 1px solid var(--gray-800);
      transition: background-color 0.3s ease;
    }

    .hp-clients__cell:hover {
      background-color: rgba(255, 255, 255, 0.03);
    }

    .hp-clients__cell img {
      max-width: 140px;
      max-height: 44px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%) brightness(2);
      opacity: 0.5;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .hp-clients__cell--tall img {
      max-height: 76px;
      max-width: 110px;
    }

    .hp-clients__cell:hover img {
      filter: grayscale(0%) brightness(1);
      opacity: 1;
    }

    @media (min-width: 640px) {
      .hp-clients__grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .hp-clients__grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .hp-clients__cell {
        min-height: 120px;
        padding: var(--space-xl);
      }

      .hp-clients__cell img {
        max-width: 160px;
        max-height: 50px;
      }

      .hp-clients__cell--tall img {
        max-height: 88px;
        max-width: 120px;
      }
    }

    /* ── Team Photo Morph - large → inline ── */
    .hp-photo-morph {
      position: relative;
    }

    /* Sticky frame: stays pinned while content scrolls up */
    .hp-photo-morph__sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 5;
    }

    /* The actual photo wrapper that animates */
    .hp-photo-morph__img {
      width: 100%;
      max-width: var(--container-max);
      padding: 0 var(--container-padding);
      box-sizing: border-box;
      will-change: transform, opacity;
    }

    .hp-photo-morph__img img {
      width: 100%;
      aspect-ratio: 21 / 9;
      object-fit: cover;
      display: block;
      border-radius: var(--radius-xl);
    }

    @media (max-width: 767px) {
      .hp-photo-morph__img img {
        aspect-ratio: 16 / 9;
      }
    }

    /* Spacer pushes statement down, giving scroll room for phase 1 (expand) */
    .hp-photo-morph__spacer {
      height: 50vh;
    }

    /* Statement with inline photo */
    .hp-statement {
      position: relative;
      z-index: 2;
      padding: var(--space-3xl) 0;
    }

    .hp-statement__text {
      font-size: clamp(2rem, 4.5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 1100px;
    }

    .hp-statement__text .serif {
      font-style: italic;
    }

    .hp-statement__inline-img {
      display: inline-block;
      width: clamp(100px, 14vw, 200px);
      height: clamp(40px, 5.5vw, 75px);
      border-radius: 999px;
      overflow: hidden;
      vertical-align: middle;
      margin: 0 0.15em;
      position: relative;
      top: -0.05em;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .hp-statement__inline-img.is-visible {
      opacity: 1;
    }

    .hp-statement__inline-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hp-statement__sub {
      font-size: var(--text-lg);
      font-weight: 300;
      color: var(--gray-400);
      margin-top: var(--space-lg);
      max-width: 700px;
      line-height: 1.5;
    }

    /* ── Full-width break photo ── */
    .hp-break-photo {
      width: 100%;
      overflow: hidden;
    }

    .hp-break-photo img {
      width: 100%;
      height: clamp(300px, 50vw, 600px);
      object-fit: cover;
      display: block;
    }

    /* ── Manifesto split section (Motto-style) ── */
    .hp-manifesto {
      padding: var(--space-3xl) 0;
    }

    .hp-manifesto__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }

    @media (min-width: 768px) {
      .hp-manifesto__grid {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-2xl);
        align-items: start;
      }
    }

    .hp-manifesto__label {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--gray-400);
      line-height: 1.4;
    }

    .hp-manifesto__body {
      max-width: 800px;
    }

    .hp-manifesto__title {
      font-size: clamp(1.75rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: var(--space-lg);
    }

    .hp-manifesto__title .serif {
      font-style: italic;
    }

    .hp-manifesto__text {
      font-size: var(--text-base);
      font-weight: 300;
      color: var(--gray-400);
      line-height: 1.5;
      max-width: 650px;
      margin-bottom: var(--space-xl);
    }

    .hp-manifesto__eyebrow {
      font-size: var(--text-xs);
      font-weight: 700;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: var(--space-md);
    }

    .hp-manifesto__link {
      font-size: var(--text-base);
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
      border-bottom: 1px solid var(--white);
      padding-bottom: 4px;
      transition: color 0.3s, border-color 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5em;
    }

    .hp-manifesto__link:hover {
      color: var(--rosa);
      border-color: var(--rosa);
    }


    /* ─────────────────────────────────────────────────
       "O que fazemos" — Lottie + accordion split
       Mobile-first. Stacked column on small screens.
       Two-column grid from 960px upward.
       ───────────────────────────────────────────────── */

    .hp-svc {
      padding: var(--space-3xl) 0;
      position: relative;
    }

    @media (min-width: 768px) {
      .hp-svc {
        padding: var(--space-4xl) 0;
      }
    }

    /* Same outer padding as .hp-metodo__list, plus internal column padding
       to mirror the breathing room hp-metodo gets from its 3-col grid */
    .hp-svc__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
      align-items: start;
      padding: 0 var(--container-padding);
      box-sizing: border-box;
    }

    @media (min-width: 768px) {
      .hp-svc__grid {
        padding: 0 calc(var(--container-padding) + var(--space-md));
      }
    }

    @media (min-width: 960px) {
      .hp-svc__grid {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
        gap: clamp(2.5rem, 5vw, 5rem);
        padding: 0 calc(var(--container-padding) + var(--space-lg));
      }
    }

    @media (min-width: 1280px) {
      .hp-svc__grid {
        padding: 0 calc(var(--container-padding) + var(--space-xl));
      }
    }

    /* ── LEFT column: Lottie centered, text aligned left ── */
    .hp-svc__intro {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: var(--space-md);
    }

    @media (min-width: 960px) {
      .hp-svc__intro {
        position: sticky;
        top: 100px;
        gap: var(--space-lg);
      }
    }

    .hp-svc__eyebrow {
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--rosa);
      display: inline-block;
    }

    .hp-svc__lottie {
      width: 100%;
      max-width: 380px;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: var(--space-sm) auto;
    }

    .hp-svc__lottie::before {
      /* soft magenta halo behind the animation */
      content: '';
      position: absolute;
      inset: 8%;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255, 39, 122, 0.18) 0%, rgba(255, 39, 122, 0) 60%);
      filter: blur(20px);
      z-index: 0;
      pointer-events: none;
    }

    .hp-svc__lottie dotlottie-wc {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      display: block;
    }

    @media (min-width: 768px) {
      .hp-svc__lottie {
        max-width: 340px;
      }
    }

    @media (min-width: 1280px) {
      .hp-svc__lottie {
        max-width: 360px;
      }
    }

    .hp-svc__title {
      font-size: clamp(1.75rem, 3.2vw, 2.75rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--white);
      margin: 0;
    }

    .hp-svc__title .serif {
      font-style: italic;
      color: var(--rosa);
    }

    .hp-svc__text {
      font-size: var(--text-sm);
      font-weight: 300;
      line-height: 1.55;
      color: var(--gray-400);
      max-width: 44ch;
      margin: 0;
    }

    .hp-svc__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6em;
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--white);
      padding: 6px 0;
      border-bottom: 1px solid var(--gray-600);
      transition: color 0.3s, border-color 0.3s, gap 0.3s;
      margin-top: var(--space-xs);
    }

    .hp-svc__cta:hover,
    .hp-svc__cta:focus-visible {
      color: var(--rosa);
      border-color: var(--rosa);
      gap: 1em;
    }

    .hp-svc__cta:focus-visible {
      outline: 2px solid var(--rosa);
      outline-offset: 6px;
      border-radius: 2px;
    }

    .hp-svc__cta svg {
      transition: transform 0.3s var(--ease-out);
    }

    .hp-svc__cta:hover svg,
    .hp-svc__cta:focus-visible svg {
      transform: translateX(4px);
    }

    .hp-svc__list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--gray-500);
    }

    .hp-svc-item {
      border-bottom: 1px solid var(--gray-500);
      transition: background 0.4s var(--ease-out);
    }

    .hp-svc-item.is-open {
      background: linear-gradient(90deg, rgba(255, 39, 122, 0.04), transparent 60%);
    }

    .hp-svc-item__heading {
      margin: 0;
      font-weight: inherit;
      font-size: inherit;
    }

    .hp-svc-item__trigger {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: var(--space-md);
      padding: var(--space-md) var(--space-sm);
      min-height: 72px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      color: var(--white);
      font-family: inherit;
      transition: color 0.3s ease, background 0.3s ease;
    }

    @media (min-width: 768px) {
      .hp-svc-item__trigger {
        gap: var(--space-lg);
        padding: var(--space-md);
        min-height: 96px;
      }
    }

    .hp-svc-item__trigger:hover {
      color: var(--rosa);
    }

    .hp-svc-item__trigger:focus-visible {
      outline: 2px solid var(--rosa);
      outline-offset: -2px;
    }

    /* Sentence-case, comfortable spacing — perguntas são frases longas
       e merecem ler-se com naturalidade, não como etiquetas. */
    .hp-svc-item__question {
      font-size: var(--text-lg);
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: 0;
      color: inherit;
    }

    @media (min-width: 768px) {
      .hp-svc-item__question {
        font-size: var(--text-xl);
      }
    }

    @media (min-width: 1280px) {
      .hp-svc-item__question {
        font-size: clamp(1.5rem, 1.8vw, 1.875rem);
        font-weight: 400;
        line-height: 1.3;
      }
    }

    /* Plus icon — rotates to X on open */
    .hp-svc-item__icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid var(--gray-700);
      transition: transform 0.4s var(--ease-out),
                  border-color 0.3s,
                  background 0.3s;
      color: currentColor;
    }

    .hp-svc-item__trigger:hover .hp-svc-item__icon {
      border-color: var(--rosa);
    }

    .hp-svc-item.is-open .hp-svc-item__icon {
      transform: rotate(45deg);
      background: var(--rosa);
      border-color: var(--rosa);
      color: var(--white);
    }

    /* Panel — uses grid-template-rows trick for accessible height animation */
    .hp-svc-item__panel {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: grid-template-rows 0.5s var(--ease-out),
                  opacity 0.4s var(--ease-out);
    }

    .hp-svc-item.is-open .hp-svc-item__panel {
      grid-template-rows: 1fr;
      opacity: 1;
    }

    .hp-svc-item__inner {
      overflow: hidden;
      min-height: 0;
    }

    .hp-svc-item.is-open .hp-svc-item__inner {
      padding: 0 var(--space-sm) var(--space-lg);
    }

    @media (min-width: 768px) {
      .hp-svc-item.is-open .hp-svc-item__inner {
        padding: 0 var(--space-md) var(--space-xl);
      }
    }

    .hp-svc-item__lead {
      font-size: var(--text-base);
      font-weight: 300;
      line-height: 1.55;
      color: var(--gray-300);
      max-width: 56ch;
      margin: 0 0 var(--space-sm);
    }

    /* Tags */
    .hp-svc-item__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .hp-svc-item__tags li {
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--rosa);
      background: rgba(255, 39, 122, 0.08);
      padding: 7px 16px;
      border: 1px solid rgba(255, 39, 122, 0.18);
      border-radius: 100px;
      white-space: nowrap;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }

    .hp-svc-item__tags li:hover {
      background: rgba(255, 39, 122, 0.16);
      border-color: rgba(255, 39, 122, 0.35);
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .hp-svc-item,
      .hp-svc-item__panel,
      .hp-svc-item__icon,
      .hp-svc-item__trigger,
      .hp-svc__cta,
      .hp-svc__cta svg {
        transition: none !important;
      }

      .hp-svc-item.is-open .hp-svc-item__icon {
        transform: none;
      }
    }

    /* High-contrast / forced-colors mode */
    @media (forced-colors: active) {
      .hp-svc-item {
        border-color: CanvasText;
      }
      .hp-svc-item__icon {
        border-color: CanvasText;
      }
      .hp-svc-item.is-open .hp-svc-item__icon {
        background: Highlight;
        color: HighlightText;
      }
    }


    /* ─────────────────────────────────────────────────
       STATS BLOCK — three big numbers between
       portfolio and clients. Stacks on mobile, row on
       tablet upward, with magenta vertical dividers.
       ───────────────────────────────────────────────── */

    .hp-stats-block {
      padding: var(--space-3xl) 0;
      border-top: 1px solid var(--gray-800);
      border-bottom: 1px solid var(--gray-800);
    }

    @media (min-width: 768px) {
      .hp-stats-block {
        padding: var(--space-4xl) 0;
      }
    }

    .hp-stats-block__grid {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: var(--space-xl);
      list-style: none;
      padding: 0;
      margin: 0;
    }

    @media (min-width: 768px) {
      .hp-stats-block__grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-lg);
      }
    }

    .hp-stats-block__item {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      text-align: center;
      padding: 0 var(--space-md);
    }

    @media (min-width: 768px) {
      .hp-stats-block__item {
        gap: var(--space-md);
      }
    }

    .hp-stats-block__number {
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: var(--rosa);
      font-variant-numeric: tabular-nums;
      display: block;
    }

    .hp-stats-block__label {
      font-size: var(--text-sm);
      font-weight: 300;
      line-height: 1.4;
      color: var(--gray-300);
      letter-spacing: 0.01em;
      max-width: 22ch;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .hp-stats-block__label {
        font-size: var(--text-base);
      }
    }

    /* Divider — horizontal on mobile, vertical on tablet+ */
    .hp-stats-block__divider {
      align-self: center;
      background: var(--gray-800);
      border: 0;
      flex-shrink: 0;
      width: 60%;
      height: 1px;
    }

    @media (min-width: 768px) {
      .hp-stats-block__divider {
        width: 1px;
        height: 80px;
      }
    }

    @media (min-width: 1024px) {
      .hp-stats-block__divider {
        height: 100px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hp-stats-block__item {
        transition: none;
      }
    }
