      :root {
        --renewal-blue: #0073ff;
        --renewal-blue-mid: #2b64f5;
        --renewal-blue-soft: #50a0ff;
        --renewal-green-accent: #4ade80;
        --renewal-hero-bg: #3c403e;
        --renewal-text: #111827;
        --renewal-text-muted: #6b7280;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      /* Evita fresta de 1px no topo (body branco) por baixo do header transparente */
      html {
        background-color: var(--renewal-hero-bg);
      }

      body {
        margin: 0;
        font-family: var(--font-sans);
        color: var(--renewal-text);
        background: #fff;
        line-height: 1.6;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
      }

      strong,
      b {
        font-weight: 500;
      }

      h1,
      h2 {
        font-family: var(--font-heading);
        font-weight: 300;
      }

      h3,
      h4,
      h5,
      h6 {
        font-family: var(--font-sans) !important;
        font-weight: 400 !important;
      }

      a {
        color: var(--renewal-blue-mid);
        text-decoration: none;
      }

      a:hover {
        text-decoration: underline;
      }

      a:focus-visible,
      button:focus-visible,
      .btn:focus-visible,
      .nav-dropdown__trigger:focus-visible,
      .nav-link-plain:focus-visible,
      .site-header__lang:focus-visible,
      .site-header__social a:focus-visible {
        outline: 2px solid var(--renewal-blue-soft);
        outline-offset: 3px;
        border-radius: 0.5rem;
      }

      .skip-link {
        position: absolute;
        left: -9999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      .skip-link:focus {
        position: fixed;
        left: 1rem;
        top: 1rem;
        z-index: 9999;
        width: auto;
        height: auto;
        padding: 0.75rem 1rem;
        background: #fff;
        border: 2px solid var(--renewal-blue);
        border-radius: 8px;
      }

      /* Hero */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: var(--renewal-hero-bg);
        overflow: hidden;
      }

      .hero__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }

      .hero__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .hero__overlay {
        position: absolute;
        inset: 0;
        background: rgba(60, 64, 62, 0.35);
        z-index: 1;
      }

      .hero__glow {
        position: absolute;
        width: min(48vw, 620px);
        height: min(48vw, 620px);
        right: -8%;
        top: -12%;
        z-index: 2;
        pointer-events: none;
        border-radius: 50%;
        background:
          radial-gradient(circle at 35% 35%, rgb(80 160 255 / 0.38) 0%, rgb(80 160 255 / 0.16) 36%, rgb(80 160 255 / 0) 72%),
          radial-gradient(circle at 72% 60%, rgb(74 222 128 / 0.2) 0%, rgb(74 222 128 / 0) 68%);
        filter: blur(8px);
        mix-blend-mode: screen;
        opacity: 0.8;
      }

      .hero__grain {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        opacity: 0.12;
        background-image: radial-gradient(rgb(255 255 255 / 0.25) 0.6px, transparent 0.6px);
        background-size: 3px 3px;
      }

      .hero__inner {
        position: relative;
        z-index: 10;
        padding: calc(6.75rem + 2.25rem) 0 4rem;
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
        box-sizing: border-box;
      }

      .hero__title .line {
        display: inline-block;
        will-change: transform, opacity;
      }

      .hero__pill {
        display: inline-block;
        margin-bottom: 2rem;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(8px);
        font-size: 0.7rem;
        letter-spacing: 0.04em;
        color: #e5e7eb;
      }

      .hero__title {
        margin: 0 0 2rem;
        font-size: clamp(2.5rem, 9vw, 5.5rem);
        line-height: 1.02;
        letter-spacing: -0.02em;
        color: #fff;
        text-wrap: balance;
      }

      @media (max-width: 420px) {
        .hero__title {
          font-size: clamp(2.15rem, 9vw, 2.65rem);
          letter-spacing: -0.018em;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .hero__glow,
        .hero__grain {
          animation: none !important;
          transition: none !important;
          transform: none !important;
        }
      }

      .hero__title .accent {
        color: var(--renewal-green-accent);
        font-style: normal;
      }

      .hero__desc {
        max-width: 36rem;
        margin: 0 0 2.5rem;
        font-size: clamp(1.1rem, 2vw, 1.35rem);
        color: #e5e7eb;
        text-wrap: pretty;
      }

      .hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
        cursor: pointer;
        border: 2px solid transparent;
      }

      .btn:hover {
        text-decoration: none;
      }

      .btn--primary {
        background: var(--renewal-blue);
        color: #fff;
      }

      .btn--primary:hover {
        background: #0060d6;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px -14px rgb(0 115 255 / 0.65);
      }

      .btn--ghost {
        background: transparent;
        color: #d1d5db;
        border-color: rgba(209, 213, 219, 0.5);
      }

      .btn--ghost:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        transform: translateY(-1px);
      }

      /* Sections — padding vertical original; lateral 0 (rail no .container) */
      .section {
        padding: 4rem 0;
      }

      @media (min-width: 768px) {
        .section {
          padding: 5rem 0;
        }
      }

      .container {
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
        box-sizing: border-box;
      }

      .section--gradient {
        background: linear-gradient(to bottom, #e3f0ff, #fff);
      }

      .section__eyebrow {
        text-align: center;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #374151;
        margin: 0 0 0.75rem;
      }

      .section__title {
        text-align: center;
        font-size: clamp(2rem, 5vw, 3.25rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin: 0 0 1rem;
        color: #111827;
        text-wrap: balance;
      }

      .section__title em,
      h1 em,
      h2 em {
        font-family: var(--font-heading);
        font-style: normal;
        font-weight: 300;
        color: var(--renewal-blue-mid);
      }

      .section__lead {
        text-align: center;
        max-width: 42rem;
        margin: 0 auto 3rem;
        color: var(--renewal-text-muted);
        font-size: 1.125rem;
        line-height: 1.65;
        text-wrap: pretty;
      }

      @media (max-width: 639px) {
        .section__lead {
          font-size: 1.0625rem;
          margin-bottom: 2.5rem;
        }
      }

      /* Cards grid */
      .grid-2 {
        display: grid;
        gap: 2rem;
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
      }

      @media (min-width: 1024px) {
        .grid-2 {
          grid-template-columns: 1fr 1fr;
        }
      }

      .card {
        background: #fff;
        border: 1px solid #f3f4f6;
        border-radius: 1.25rem;
        padding: 2rem;
        box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
        transition: transform 0.25s, box-shadow 0.25s;
      }

      .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgb(0 0 0 / 0.08);
      }

      @media (max-width: 639px) {
        .card {
          padding: 1.5rem 1.35rem;
          border-radius: 1.125rem;
        }
      }

      .card__badge {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--renewal-blue-mid);
        margin: 0 0 0.25rem;
      }

      .card__title {
        font-size: 1.75rem;
        font-weight: 300;
        color: var(--renewal-blue-mid);
        margin: 0 0 1rem;
      }

      .card__text {
        color: #4b5563;
        font-size: 0.95rem;
        margin: 0 0 1.5rem;
      }

      .card ul {
        margin: 0 0 1.5rem;
        padding: 0;
        list-style: none;
      }

      .card li {
        position: relative;
        padding-left: 1.25rem;
        margin-bottom: 0.65rem;
        color: #4b5563;
        font-size: 0.9rem;
      }

      .card li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--renewal-blue-mid);
        font-weight: 500;
      }

      .card .btn {
        width: 100%;
        background: #526a7a;
        color: #fff;
        border: none;
        padding: 1rem;
        box-shadow: 0 8px 18px -14px rgb(61 79 91 / 0.7);
      }

      .card .btn:hover {
        background: #3d4f5b;
        box-shadow: 0 14px 24px -16px rgb(61 79 91 / 0.75);
      }

      /* Science */
      .section--white {
        background: #fff;
      }

      .science-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
        border-radius: 1.25rem;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 40px rgb(15 23 42 / 0.06);
      }

      @media (min-width: 640px) {
        .science-grid {
          border-radius: 1.5rem;
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (min-width: 1024px) {
        .science-grid {
          grid-template-columns: repeat(4, 1fr);
          border-radius: 26px;
          box-shadow: none;
        }

        .science-grid > .science-tile,
        .science-grid > .science-photo {
          aspect-ratio: 1;
          min-height: 0;
        }

        .science-grid.science-grid--quad > .science-tile {
          aspect-ratio: auto;
          min-height: 220px;
        }
      }

      .science-grid.science-grid--quad {
        gap: 1px;
        background: #d9e1ee;
        border-radius: 1.6rem;
        overflow: hidden;
        box-shadow: none;
      }

      .science-grid.science-grid--quad > .science-tile {
        background: #f2f5fb;
      }

      .science-grid.science-grid--quad > .science-photo {
        background: #edf2f8;
      }

      .science-grid > .science-tile,
      .science-grid > .science-photo {
        min-width: 0;
      }

      .science-tile {
        background: #f2f5fb;
        border-radius: 0;
        padding: clamp(1.05rem, 2.3vw, 1.55rem);
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .science-tile h3 {
        margin: 0 0 0.65rem;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.18;
        letter-spacing: -0.01em;
        color: #2b64f5;
      }

      .science-tile p {
        margin: 0;
        font-size: clamp(0.84rem, 1vw, 1rem);
        line-height: 1.5;
        color: #4b5563;
        max-width: 30ch;
      }

      .science-photo {
        border-radius: 0;
        overflow: hidden;
        background: #e5e7eb;
        position: relative;
      }

      @media (max-width: 1023px) {
        .science-grid > .science-photo {
          aspect-ratio: 1;
          min-height: min(70vw, 320px);
        }
      }

      .science-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
      }

      @media (min-width: 1024px) {
        .science-grid.science-grid--quad > .science-tile,
        .science-grid.science-grid--quad > .science-photo {
          aspect-ratio: 1;
          min-height: 0;
        }
      }

      /* Precised / science grid — mobile: readable rhythm, no double gutter, alternate tile↔photo */
      @media (max-width: 639px) {
        .science-grid.science-grid--quad {
          gap: 0.35rem;
          border-radius: 1.15rem;
        }

        /* DOM row 2 had two photos adjacent (P2 then P3); swap middle pair so copy leads each pair */
        .science-grid.science-grid--quad > :nth-child(1) {
          order: 1;
        }
        .science-grid.science-grid--quad > :nth-child(2) {
          order: 2;
        }
        .science-grid.science-grid--quad > :nth-child(3) {
          order: 3;
        }
        .science-grid.science-grid--quad > :nth-child(4) {
          order: 4;
        }
        .science-grid.science-grid--quad > :nth-child(5) {
          order: 6;
        }
        .science-grid.science-grid--quad > :nth-child(6) {
          order: 5;
        }
        .science-grid.science-grid--quad > :nth-child(7) {
          order: 7;
        }
        .science-grid.science-grid--quad > :nth-child(8) {
          order: 8;
        }

        .science-tile {
          padding: 1.25rem 1.15rem;
        }

        .science-tile h3 {
          font-size: clamp(17px, 4.5vw, 20px);
          line-height: 1.22;
        }

        .science-tile p {
          max-width: none;
          font-size: 0.92rem;
        }

        .science-grid > .science-photo {
          aspect-ratio: 4 / 3;
          min-height: 0;
        }
      }

      /* Video */
      .manifesto {
        background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
      }

      .video-wrap {
        max-width: 1300px;
        width: min(100%, 1300px);
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 25px 50px rgb(0 0 0 / 0.12);
        background: #000;
      }

      @media (min-width: 640px) {
        .video-wrap {
          border-radius: 1.25rem;
        }
      }

      .video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        vertical-align: middle;
        display: block;
      }

      /* Transformation — split hero + overlapping 2×2 cards (mirrors Next transformation-section) */
      .transform-section.section {
        padding: 0 0 5rem;
        background: #fff;
      }

      .transform-hero {
        position: relative;
        min-height: clamp(400px, 70vh, 760px);
        display: flex;
        align-items: center;
      }

      .transform-hero__media {
        position: absolute;
        inset: 0;
        z-index: 0;
      }

      .transform-hero__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% 18%;
        display: block;
      }

      .transform-hero__gradient {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
          90deg,
          #212933 0%,
          rgba(33, 41, 51, 0.9) 26%,
          rgba(33, 41, 51, 0.48) 52%,
          transparent 74%
        );
      }

      .transform-hero__inner {
        position: relative;
        z-index: 2;
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
        padding: clamp(3.5rem, 9vw, 5.5rem) 0 clamp(5rem, 14vw, 9rem);
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
        box-sizing: border-box;
      }

      .transform-hero__title {
        margin: 0 0 1.5rem;
        max-width: 16ch;
        font-size: clamp(2rem, 4.8vw, 3.85rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #fff;
        text-align: left;
      }

      .transform-hero__line {
        display: block;
      }

      .transform-hero__accent {
        color: #2b64f5;
        font-weight: 300;
      }

      .transform-hero__lead {
        margin: 0;
        max-width: min(36rem, 52%);
        font-size: clamp(1rem, 1.9vw, 1.25rem);
        font-weight: 300;
        line-height: 1.55;
        color: rgba(229, 231, 235, 0.9);
      }

      @media (max-width: 767px) {
        .transform-hero__lead {
          max-width: 100%;
        }

        .transform-section .transform-item {
          border-radius: 1.35rem;
        }

        .transform-section .transform-item::before {
          border-radius: 1.35rem;
        }
      }

      .transform-cards-wrap {
        position: relative;
        z-index: 3;
        margin-top: clamp(-3.5rem, -8vw, -7.5rem);
        padding: 0;
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
        box-sizing: border-box;
      }

      .transform-section .transform-grid {
        display: grid;
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
        grid-template-columns: 1fr;
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
      }

      @media (min-width: 640px) {
        .transform-section .transform-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      .transform-section .transform-item {
        position: relative;
        padding: clamp(1.5rem, 4.5vw, 2.25rem);
        border-radius: 2rem;
        background: #fff;
        border: 1px solid rgba(214, 242, 223, 0.65);
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.14), 0 12px 24px -10px rgb(0 0 0 / 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .transform-section .transform-item::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 2rem;
        border: 1px solid rgba(5, 200, 50, 0.2);
        pointer-events: none;
      }

      .transform-section .transform-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 32px 64px -12px rgb(0 0 0 / 0.16), 0 16px 32px -10px rgb(0 0 0 / 0.1);
      }

      .transform-section .transform-item h3 {
        margin: 0 0 0.65rem;
        font-size: clamp(1.05rem, 2vw, 1.5rem);
        font-weight: 500;
        line-height: 1.25;
        color: var(--renewal-blue-mid);
      }

      .transform-section .transform-item p {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.65;
        color: #4b5563;
      }

      /* Steps (home process — markup com .step__card + SVG) */
      .steps-row {
        display: grid;
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
        grid-template-columns: 1fr;
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto 3rem;
      }

      @media (min-width: 768px) {
        .steps-row {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .step {
        text-align: center;
      }

      .step h3 {
        margin: 0;
        font-size: 1rem;
        color: #1f2937;
        font-weight: 500;
        max-width: 11rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.35;
      }

      .cta-dual {
        display: grid;
        gap: 1.5rem;
        max-width: 1300px;
        width: min(100%, 1300px);
        margin: 0 auto;
      }

      @media (min-width: 640px) {
        .cta-dual {
          grid-template-columns: 1fr 1fr;
        }
      }

      .cta-box {
        border-radius: 2rem;
        padding: 2rem;
        text-align: center;
        border: 1px solid #e5e7eb;
        transition: background 0.2s, box-shadow 0.2s;
      }

      @media (max-width: 639px) {
        .cta-box {
          padding: 1.5rem 1.35rem;
          border-radius: 1.35rem;
        }
      }

      .cta-box--tint {
        background: #f5f8ff;
        border-color: #bfdbfe;
      }

      .cta-box:hover {
        box-shadow: 0 8px 24px rgb(0 0 0 / 0.06);
      }

      .cta-box p {
        margin: 0.75rem 0 0;
        font-size: 0.875rem;
        color: var(--renewal-text-muted);
      }

      /* Process + CTA — bloco premium (só steps; não afeta science section--white) */
      .section.section--white.section--home-process {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        background:
          radial-gradient(ellipse 110% 85% at 8% -15%, rgb(0 115 255 / 0.07), transparent 56%),
          radial-gradient(ellipse 85% 70% at 100% 5%, rgb(80 160 255 / 0.06), transparent 50%),
          linear-gradient(180deg, #fbfdff 0%, #f2f6fb 48%, #ebf1f7 100%);
      }

      .section.section--white.section--home-process::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          118deg,
          rgb(255 255 255 / 0) 0%,
          rgb(255 255 255 / 0.5) 44%,
          rgb(255 255 255 / 0) 68%
        );
        pointer-events: none;
        z-index: 0;
      }

      .section.section--white.section--home-process .container {
        position: relative;
        z-index: 1;
      }

      .section.section--white.section--home-process .section__lead {
        color: rgb(71 85 105);
      }

      .section.section--white.section--home-process .step__card {
        position: relative;
        padding: 1.65rem 1.15rem 1.45rem;
        border-radius: 1.25rem;
        border: 1px solid rgb(226 232 240 / 0.95);
        background: linear-gradient(162deg, rgb(255 255 255 / 0.99) 0%, rgb(248 250 252 / 0.94) 100%);
        box-shadow:
          inset 0 1px 0 rgb(255 255 255 / 0.98),
          0 18px 42px -18px rgb(15 23 42 / 0.11),
          0 5px 16px -6px rgb(0 115 255 / 0.07);
        backdrop-filter: blur(10px) saturate(1.12);
        -webkit-backdrop-filter: blur(10px) saturate(1.12);
        transition:
          transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.4s ease,
          border-color 0.3s ease;
      }

      .section.section--white.section--home-process .step__card:hover {
        transform: translateY(-5px);
        border-color: rgb(0 115 255 / 0.2);
        box-shadow:
          inset 0 1px 0 rgb(255 255 255 / 1),
          0 26px 52px -16px rgb(15 23 42 / 0.14),
          0 10px 26px -8px rgb(0 115 255 / 0.11);
      }

      .section.section--white.section--home-process .step__label {
        display: inline-block;
        margin-bottom: 0.9rem;
        padding: 0.32rem 0.7rem;
        border-radius: 999px;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--renewal-blue-mid);
        background: rgb(239 246 255 / 0.95);
        border: 1px solid rgb(191 219 254 / 0.65);
      }

      .section.section--white.section--home-process .step__icon-ring {
        width: 4.35rem;
        height: 4.35rem;
        margin: 0 auto 1.1rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--renewal-blue-mid);
        background: linear-gradient(150deg, rgb(255 255 255 / 1) 0%, rgb(239 246 255 / 0.88) 100%);
        border: 1px solid rgb(226 232 240 / 0.95);
        box-shadow:
          inset 0 1px 0 rgb(255 255 255 / 1),
          0 10px 24px -10px rgb(0 115 255 / 0.14);
      }

      .section.section--white.section--home-process .step__icon {
        width: 1.75rem;
        height: 1.75rem;
        flex-shrink: 0;
      }

      .section.section--white.section--home-process .step h3 {
        color: #0f172a;
        max-width: 13rem;
      }

      .section.section--white.section--home-process .cta-box {
        border-radius: 1.25rem;
        background: linear-gradient(158deg, rgb(255 255 255 / 0.97) 0%, rgb(248 250 252 / 0.92) 100%);
        border: 1px solid rgb(226 232 240 / 0.95);
        box-shadow:
          inset 0 1px 0 rgb(255 255 255 / 0.98),
          0 20px 44px -22px rgb(15 23 42 / 0.1);
        backdrop-filter: blur(12px) saturate(1.15);
        -webkit-backdrop-filter: blur(12px) saturate(1.15);
        transition:
          transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.4s ease,
          border-color 0.3s ease;
      }

      .section.section--white.section--home-process .cta-box--tint {
        background: linear-gradient(
          158deg,
          rgb(239 246 255 / 0.94) 0%,
          rgb(245 249 255 / 0.96) 50%,
          rgb(255 255 255 / 0.92) 100%
        );
        border-color: rgb(191 219 254 / 0.85);
      }

      .section.section--white.section--home-process .cta-box:hover {
        transform: translateY(-4px);
        border-color: rgb(0 115 255 / 0.22);
        box-shadow:
          inset 0 1px 0 rgb(255 255 255 / 1),
          0 28px 56px -18px rgb(15 23 42 / 0.14),
          0 10px 24px -8px rgb(0 115 255 / 0.1);
      }

      @media (prefers-reduced-motion: reduce) {
        .section.section--white.section--home-process .step__card,
        .section.section--white.section--home-process .cta-box {
          transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .section.section--white.section--home-process .step__card:hover,
        .section.section--white.section--home-process .cta-box:hover {
          transform: none;
        }
      }

      @media (max-width: 767px) {
        :root {
          --mobile-gutter: clamp(14px, 4vw, 20px);
        }

        .site-header {
          padding-left: var(--mobile-gutter);
          padding-right: var(--mobile-gutter);
        }

        .hero {
          min-height: max(78svh, 560px);
        }

        .hero__bg img {
          object-position: 72% center;
        }

        .hero__inner,
        .container,
        .grid-2,
        .video-wrap,
        .transform-hero__inner,
        .transform-section .transform-grid,
        .steps-row,
        .cta-dual,
        .footer__inner {
          padding-left: var(--mobile-gutter);
          padding-right: var(--mobile-gutter);
        }

        .hero__inner {
          padding-top: calc(6rem + 1.5rem);
          padding-bottom: 3rem;
        }

        .hero__pill {
          margin-bottom: 1.25rem;
        }

        .hero__desc {
          font-size: 1rem;
          margin-bottom: 1.5rem;
        }

        .hero__actions {
          width: 100%;
          gap: 0.75rem;
        }

        .hero__actions .btn {
          width: 100%;
          min-height: 2.85rem;
        }

        .section {
          padding: 3.25rem 0;
        }

        .section__title {
          margin-bottom: 0.85rem;
        }

        .transform-section.section {
          padding-bottom: 3.5rem;
        }

        .transform-cards-wrap {
          margin-top: -2.5rem;
        }

        .transform-section .transform-item {
          text-align: left;
        }

        .steps-row {
          margin-bottom: 2.25rem;
        }
      }

      em,
      i {
        font-style: normal;
      }

