:root {
    --green-primary: #63AC6A;
    --green-dark: #4B8E52;
    --green-light: #86BF8C;
  
    --green-soft: #EDF7EE;
    --green-soft-2: #F6FAF6;
    --green-border: #D6E9D8;
  
    --primary: #BE1A22;
    --primary-dark: #9D1219;
    --primary-soft: #FBEDEE;
  
    --text-dark: #18301D;
    --text: #405347;
    --text-light: #6D7D71;
  
    --white: #FFFFFF;
    --background: #FAFCFA;
    --border: #E1E9E2;
  
    --shadow-sm: 0 12px 35px rgba(36, 78, 42, 0.08);
    --shadow-md: 0 24px 60px rgba(36, 78, 42, 0.13);
  
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
  
    --container: 1180px;

    --font-d: 'Plus Jakarta Sans', sans-serif;
    --font-b: 'Inter', sans-serif;

    --grad-white: linear-gradient(180deg, #FFFFFF 0%, #F9FCF9 100%);
    --grad-soft: linear-gradient(180deg, #F6FAF6 0%, #EDF7EE 100%);
    --grad-soft-2: linear-gradient(180deg, #FAFCFA 0%, #F3F8F3 100%);
    --grad-green: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    --grad-green-dark: linear-gradient(135deg, var(--green-dark), #376C3D);
    --grad-primary-soft: linear-gradient(180deg, #FDF4F4 0%, var(--primary-soft) 100%);
  }
  
  
  /* RESET LOCAL */
  
  .hub-page,
  .hub-page * {
    box-sizing: border-box;
  }
  
  .hub-page {
    overflow: hidden;
    background: var(--grad-white);
    color: var(--text);
    font-family: var(--font-b);
  }
  
  .hub-page img {
    display: block;
    max-width: 100%;
  }
  
  .hub-page h1,
  .hub-page h2,
  .hub-page h3,
  .hub-page p {
    margin-top: 0;
  }

  .hub-page h1,
  .hub-page h2,
  .hub-page h3 {
    font-family: var(--font-d);
  }
  
  .hub-page a {
    text-decoration: none;
  }
  
  .hub-container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
  }
  
  .hub-section {
    padding: 105px 0;
  }
  
  
  /* TEXTOS GERAIS */
  
  .hub-section-tag,
  .hub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .hub-section-tag::before,
  .hub-eyebrow::before {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    content: "";
  }
  
  .hub-section-heading {
    max-width: 820px;
    margin-bottom: 58px;
  }
  
  .hub-section-heading-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  
  .hub-section-heading-center .hub-section-tag {
    justify-content: center;
  }
  
  .hub-section-heading h2,
  .hub-solution-copy h2,
  .hub-results-header h2,
  .hub-differentials-copy h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
    font-size: clamp(35px, 4vw, 55px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
  }
  
  .hub-section-heading h2 span,
  .hub-solution-copy h2 span,
  .hub-results-header h2 span,
  .hub-differentials-copy h2 span {
    color: var(--green-dark);
  }

.hub-section-heading h2 em {
  color: var(--green-dark);
  font-style: normal;
}
  
  .hub-section-heading > p,
  .hub-solution-copy > p,
  .hub-differentials-copy > p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.75;
  }
  
  
  /* BOTÕES */
  
  .hub-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }
  
  .hub-btn:hover {
    transform: translateY(-3px);
  }
  
  .hub-btn-primary {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 13px 28px rgba(190, 26, 34, 0.22);
  }
  
  .hub-btn-primary:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    box-shadow: 0 17px 35px rgba(190, 26, 34, 0.28);
  }
  
  .hub-btn-outline {
    border-color: var(--green-border);
    background: var(--grad-white);
    color: var(--green-dark);
  }
  
  .hub-btn-outline:hover {
    border-color: var(--green-primary);
    background: linear-gradient(180deg, #FFFFFF 0%, #F4FAF4 55%, #EDF7EE 100%);
  }
  
  .hub-btn-white {
    border-color: var(--white);
    background: var(--grad-white);
    color: var(--primary);
  }
  
  .hub-btn-white:hover {
    background: linear-gradient(180deg, #FFF8F8 0%, #FFF1F1 100%);
  }
  
  .hub-btn-white-outline {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--white);
  }
  
  .hub-btn-white-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }
  
  
  /* HERO */
  
  .hub-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 90px 0;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 85% 20%,
        rgba(134, 191, 140, 0.26),
        transparent 33%
      ),
      linear-gradient(135deg, #FFFFFF 0%, #F4FAF4 100%);
  }
  
  .hub-hero::before {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(99, 172, 106, 0.08);
    border-radius: 50%;
    content: "";
  }
  
  .hub-hero::after {
    position: absolute;
    bottom: -190px;
    left: -150px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(134, 191, 140, 0.09);
    content: "";
  }
  
  .hub-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1.03fr 0.97fr;
  }
  
  .hub-hero-copy h1 {
    max-width: 700px;
    margin-bottom: 26px;
    color: var(--text-dark);
    font-size: clamp(46px, 5.3vw, 75px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -3.5px;
  }
  
  .hub-hero-copy h1 span {
    display: block;
    color: var(--green-dark);
  }

.hub-hero-copy h1 em {
  color: var(--green-dark);
  font-style: normal;
}
  
  .hub-hero-description {
    max-width: 660px;
    margin-bottom: 34px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.7;
  }
  
  .hub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .hub-hero-note {
    padding-top: 17px;
    color: var(--text-light);
    font-size: 13px;
  }
  
  .hub-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hub-hero-image {
    position: relative;
    width: 92%;
    height: 525px;
    overflow: hidden;
    border-radius: 42px 42px 120px 42px;
    background:
      linear-gradient(
        135deg,
        rgba(99, 172, 106, 0.95),
        rgba(75, 142, 82, 0.95)
      );
    box-shadow: var(--shadow-md);
  }
  
  .hub-hero-image::after {
    position: absolute;
    right: -40px;
    bottom: -55px;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
  }
  
  .hub-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hub-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 255px;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(99, 172, 106, 0.16);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
  }
  
  .hub-floating-card-bottom {
    right: -20px;
    bottom: 50px;
  }
  
  .hub-floating-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:
      radial-gradient(circle at 18% 22%, rgba(99, 172, 106, 0.18), transparent 38%),
      radial-gradient(circle at 82% 78%, rgba(134, 191, 140, 0.16), transparent 42%),
      linear-gradient(180deg, #FFFFFF 0%, #F5FAF5 58%, #EDF7EE 100%);
    color: var(--green-dark);
    font-size: 23px;
    font-weight: 800;
  }
  
  .hub-floating-card strong,
  .hub-floating-card small {
    display: block;
  }
  
  .hub-floating-card strong {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 14px;
  }
  
  .hub-floating-card small {
    color: var(--text-light);
    font-size: 11px;
  }
  
  
  /* PROBLEMA */
  
  .hub-problem {
    background: var(--grad-white);
    padding-bottom: 0;
  }
  
  .hub-problem-layout {
    display: grid;
    align-items: end;
    gap: 75px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  
  .hub-problem-list {
    display: grid;
    gap: 0;
  }
  
  .hub-problem-item {
    display: grid;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    grid-template-columns: 55px 1fr;
  }
  
  .hub-problem-item:first-child {
    padding-top: 0;
  }
  
  .hub-problem-item span {
    color: var(--green-light);
    font-size: 14px;
    font-weight: 700;
  }
  
  .hub-problem-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .hub-highlight-quote {
    width: 100vw;
    max-width: none;
    margin-top: 70px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: center;
    min-height: 210px;
    padding: 56px 20px;
    background: linear-gradient(120deg, #2f6e42 0%, #4f9659 52%, #6fb679 100%);
  }
  
  .hub-highlight-quote p {
    width: 50%;
    max-width: 820px;
    margin: 0 auto;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
  }

  /* CONCEITO */
  
  .hub-concept {
    background: var(--grad-soft-2);
  }
  
  .hub-pillars {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hub-pillar-card {
    min-height: 350px;
    padding: 38px;
    border: 1px solid var(--green-border);
    border-radius: var(--radius-md);
    background: var(--grad-white);
    box-shadow: var(--shadow-sm);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  
  .hub-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
  }
  
  .hub-pillar-card-featured {
    position: relative;
    top: -20px;
    border-color: var(--green-primary);
    background:
      linear-gradient(
        145deg,
        var(--green-dark),
        var(--green-primary)
      );
  }
  
  .hub-card-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
  }

  .hub-card-icon img {
    width: 66%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }

  .hub-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .hub-card-title span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--grad-soft);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
  }
  
  .hub-pillar-card h3 {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 29px;
  }
  
  .hub-pillar-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
  }
  
  .hub-pillar-card-featured .hub-card-title span {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
  }
  
  .hub-pillar-card-featured h3,
  .hub-pillar-card-featured p {
    color: var(--white);
  }
  
  
  /* SOLUÇÃO */
  
  .hub-solution {
    background: linear-gradient(180deg, #F3F8F3 0%, #FAFCFA 18%, #FFFFFF 100%);
  }
  
  .hub-solution-grid {
    display: grid;
    align-items: center;
    gap: 95px;
    grid-template-columns: 0.95fr 1.05fr;
  }
  
  .hub-solution-copy > p {
    margin-bottom: 17px;
  }
  
  .hub-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
  }
  
  .hub-text-link span {
    font-size: 21px;
    transition: transform 0.25s ease;
  }
  
  .hub-text-link:hover span {
    transform: translateX(5px);
  }
  
  .hub-solution .nr1-differentials-radial {
    position: relative;
    min-height: 460px;
    display: grid;
    align-items: center;
  }

  .hub-solution .nr1-differentials-visual {
    position: relative;
    width: min(44vw, 430px);
    aspect-ratio: 1 / 1;
    margin-left: 2%;
    border: 1px dashed rgba(99, 172, 106, 0.42);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.99) 34%, rgba(237, 247, 238, 0.7) 60%, rgba(237, 247, 238, 0) 72%);
  }

  .hub-solution .nr1-differentials-ring {
    position: absolute;
    inset: 0;
    margin: auto;
    border: 3px solid transparent;
    border-radius: 50%;
    rotate: -25deg;
  }

  .hub-solution .nr1-differentials-ring--yellow {
    width: 82%;
    height: 82%;
    border-top-color: var(--green-light);
    border-right-color: var(--green-light);
  }

  .hub-solution .nr1-differentials-ring--coral {
    width: 70%;
    height: 70%;
    border-right-color: var(--green-primary);
    border-bottom-color: var(--green-primary);
  }

  .hub-solution .nr1-differentials-ring--blue {
    width: 58%;
    height: 58%;
    border-left-color: var(--green-dark);
    border-bottom-color: var(--green-dark);
  }

  .hub-solution .nr1-differentials-ring--purple {
    width: 46%;
    height: 46%;
    border-left-color: #376C3D;
    border-top-color: #376C3D;
  }

  .hub-solution .nr1-differentials-center {
    position: absolute;
    inset: 0;
    width: min(34%, 180px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    margin: auto;
    overflow: hidden;
    border: 2px solid rgba(99, 172, 106, 0.34);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--green-soft) 100%);
    box-shadow: 0 16px 30px rgba(36, 78, 42, 0.16);
  }

  .hub-solution .nr1-differentials-center::before {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(99, 172, 106, 0.24);
    border-radius: 50%;
    content: "";
  }

  .hub-solution .nr1-differentials-center img {
    position: absolute;
    inset: 7px;
    z-index: 1;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.14);
  }

  .hub-solution .nr1-differentials-points {
    position: absolute;
    right: 0;
    width: min(49%, 560px);
    display: grid;
    gap: 24px;
    transform: translate(-38px, -50%);
  }

  .hub-solution .nr1-differentials-points .nr1-differential-item {
    position: relative;
    margin-left: -8px;
    padding: 0 0 0 34px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hub-solution .nr1-differentials-points .nr1-differential-item--1 {
    transform: translate(-10%, 105%);
  }

  .hub-solution .nr1-differentials-points .nr1-differential-item--2 {
    transform: translate(40%, 160%);
  }

  .hub-solution .nr1-differentials-points .nr1-differential-item--3 {
    transform: translate(0%, 260%);
  }

  .hub-solution .nr1-differential-dot {
    position: absolute;
    top: 4px;
    left: 0;
    width: 24px;
    height: 24px;
    border: 3px solid var(--green-light);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 10px 22px rgba(36, 78, 42, 0.36);
  }

  .hub-solution .nr1-differential-item--2 .nr1-differential-dot {
    border-color: var(--green-primary);
  }

  .hub-solution .nr1-differential-item--3 .nr1-differential-dot {
    border-color: var(--green-dark);
  }

  .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
    min-width: 50%;
    max-width: 60%;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
    background-color: #57825b42;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .hub-solution .nr1-differentials-points .nr1-differential-item p {
    max-width: 42ch;
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.35;
  }
  
  
  /* PLATAFORMA */
  
  .hub-platform {
    background:
      linear-gradient(
        180deg,
        var(--green-soft-2) 0%,
        var(--white) 100%
      );
  }
  
  .hub-features-grid {
    display: grid;
    gap: 19px;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hub-feature-card {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--green-border);
    border-radius: 17px;
    background: var(--grad-white);
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }
  
  .hub-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-sm);
  }

  .hub-feature-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--green-dark);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: normal;
    transition:
      color 0.25s ease;
  }

  .hub-feature-preview:hover,
  .hub-feature-preview:focus-visible {
    color: var(--green-primary);
  }
  
  .hub-feature-card h3 {
    margin-bottom: 13px;
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1.25;
  }
  
  .hub-feature-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
  }

  .hub-platform-modal .site-modal__backdrop {
    background: rgba(12, 24, 16, 0.72);
  }

  .hub-platform-modal__content {
    width: min(94vw, 1180px);
    max-height: 90vh;
    padding: 28px;
    border-radius: 24px;
  }

  .hub-platform-modal__title {
    margin: 0 52px 22px 0;
    color: var(--text-dark);
    font-size: 24px;
  }

  .hub-platform-modal__image {
    width: 100%;
    max-height: calc(90vh - 120px);
    display: block;
    border: 1px solid var(--green-border);
    border-radius: 18px;
    object-fit: contain;
    background: var(--green-soft-2);
  }
  
  
  /* RESULTADOS */
  
  .hub-results {
    background: var(--grad-white);
  }
  
  .hub-results-header {
    display: grid;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
    grid-template-columns: 1.15fr 0.85fr;
  }
  
  .hub-results-header > div h2 {
    margin-bottom: 0;
  }
  
  .hub-results-header > p {
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
  }
  
  .hub-results-grid {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(214, 233, 216, 0.8);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(36, 78, 42, 0.1);
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hub-result-item {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }

  .hub-result-item:nth-child(4n) {
    border-right: 0;
  }

  .hub-result-item:nth-child(n + 5) {
    border-bottom: 0;
  }

  .hub-result-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-primary);
  }

  .hub-result-icon svg {
    width: 27px;
    height: 27px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .hub-result-copy {
    position: relative;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 18px;
  }

  .hub-result-copy::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 1px;
    background: var(--border);
    content: "";
  }
  
  .hub-result-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--green-dark);
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
  }
  
  .hub-result-copy span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }
  
  
  /* PROCESSO */
  
  .hub-process {
    background: var(--grad-soft-2);
  }
  
  .hub-process-list {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
  }
  
  .hub-process-list::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34px;
    width: 2px;
    background: var(--green-border);
    content: "";
  }
  
  .hub-process-item {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: start;
    gap: 28px;
    margin-bottom: 17px;
    grid-template-columns: 70px 1fr;
  }
  
  .hub-process-number {
    width: 70px;
    height: 70px;
    margin-top: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--green-soft-2);
    border-radius: 50%;
    background: var(--grad-green);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
  }
  
  .hub-process-content {
    padding: 27px 32px;
    border: 1px solid var(--green-border);
    border-radius: 16px;
    background: var(--grad-white);
  }
  
  .hub-process-content > span {
    display: block;
    margin-bottom: 7px;
    color: var(--green-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  
  .hub-process-content h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 21px;
  }
  
  .hub-process-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.65;
  }

  .hub-process-intro {
    max-width: 820px;
    margin: -25px auto 55px;
    text-align: center;
  }

  .hub-process-intro p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
  }

  .hub-process-intro p:first-child {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 800;
  }
  
  
  /* DIFERENCIAIS */
  
  .hub-differentials {
    background: linear-gradient(180deg, #F3F8F3 0%, #FAFCFA 18%, #FFFFFF 100%);
  }
  
  .hub-differentials-grid {
    display: grid;
    align-items: center;
    gap: 10px;
    max-width: 1050px;
    margin: 0 auto;
    grid-template-columns: 0.85fr 1.15fr;
  }
  
  .hub-differentials-copy {
    position: sticky;
    top: 30px;
  }
  
  .hub-differentials-copy .hub-btn {
    margin-top: 13px;
  }
  
  .hub-differentials-image {
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  /* POSICIONAMENTO */
  
  .hub-positioning {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: url('../img/bck-futuro-hub.jpg') no-repeat center center;
    background-size: cover;
  }
  
  .hub-positioning::before {
    position: absolute;
    top: -180px;
    right: -90px;
    width: 470px;
    height: 470px;
    border: 70px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
  }
  
  .hub-positioning-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
  }
  
  .hub-positioning-label {
    display: block;
    margin-bottom: 25px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .hub-positioning h2 {
    margin-bottom: 24px;
    color: var(--green-dark);
    font-size: clamp(38px, 5vw, 65px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
  }
  
  .hub-positioning p {
    max-width: 730px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 20px;
    line-height: 1.7;
  }
  
  .hub-positioning-line {
    width: 75px;
    height: 3px;
    margin: 35px auto;
    background: linear-gradient(90deg, var(--green-light), var(--green-primary));
  }
  
  .hub-positioning strong {
    display: block;
    max-width: 620px;
    margin: 0 auto;
    color: var(--green-dark);
    font-size: 20px;
    line-height: 1.6;
  }
  
  
  /* CTA FINAL */
  
  .hub-final-cta {
    padding: 95px 0;
    background: linear-gradient(180deg, var(--green-light), var(--green-primary), var(--green-dark));
  }
  
  .hub-final-cta-box {
    position: relative;
    display: grid;
    align-items: center;
    gap: 56px;
    padding: 48px 52px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(214, 233, 216, 0.78);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 65px rgba(36, 78, 42, 0.13);
    grid-template-columns: 1.15fr 0.85fr;
  }
  
  .hub-final-cta-box::after {
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 340px;
    height: 340px;
    border: 55px solid rgba(99, 172, 106, 0.07);
    border-radius: 50%;
    content: "";
  }
  
  .hub-final-cta-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 28px;
    grid-template-columns: 118px 1fr;
  }

  .hub-final-cta-actions {
    position: relative;
    z-index: 2;
  }

  .hub-final-cta-icon {
    position: relative;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 172, 106, 0.18), rgba(99, 172, 106, 0.04) 68%, transparent 70%);
  }

  .hub-final-cta-icon::before {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(99, 172, 106, 0.15);
    border-radius: 50%;
    content: "";
  }

  .hub-final-cta-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }
  
  .hub-final-cta-label {
    display: block;
    margin-bottom: 14px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  
  .hub-final-cta h2 {
    max-width: 620px;
    margin-bottom: 18px;
    color: var(--green-dark);
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.6px;
  }
  
  .hub-final-cta-copy p {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
  }
  
  .hub-final-cta-actions {
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(36, 78, 42, 0.11);
  }

  .hub-final-cta-actions .hub-btn {
    width: 100%;
  }

  .hub-final-cta-actions .hub-btn-white {
    border-color: var(--green-dark);
    background: var(--green-dark);
    color: var(--white);
  }

  .hub-final-cta-actions .hub-btn-white:hover {
    border-color: var(--green-primary);
    background: var(--green-primary);
  }

  .hub-final-cta-actions .hub-btn-white-outline {
    border-color: rgba(190, 26, 34, 0.35);
    background: var(--white);
    color: var(--primary);
  }

  .hub-final-cta-actions .hub-btn-white-outline:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
  }
  
  .hub-final-cta-actions small {
    display: block;
    margin-top: 7px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
  }


/* PREÇO */

.pricing-pharmacy-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbf7 48%, #eef7ef 100%);
  font-family: inherit;
}

.pricing-pharmacy-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.pricing-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
}

.pricing-bg-left {
  width: 420px;
  height: 420px;
  left: -210px;
  bottom: -170px;
  background: rgba(78, 142, 82, 0.08);
}

.pricing-bg-right {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border: 56px solid rgba(78, 142, 82, 0.08);
}

.pricing-pharmacy-section .section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #3f8d4b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pricing-pharmacy-section .section-kicker span {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #3f8d4b;
}

.pricing-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #10351d;
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2px;
}

.pricing-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: #29463a;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.pricing-benefits {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #29463a;
  font-size: 17px;
  font-weight: 500;
}

.check-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f8d4b;
  background: #eaf5eb;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(63, 141, 75, 0.12);
}

.pricing-card-wrap {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  padding: 28px 34px 26px;
  border: 2px solid rgba(63, 141, 75, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(16, 53, 29, 0.10);
  backdrop-filter: blur(10px);
  text-align: center;
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e3f3e5, #d8efdc);
  color: #266d35;
  font-size: 16px;
  font-weight: 800;
}

.badge-icon {
  font-size: 13px;
  line-height: 1;
}

.plan-subtitle {
  margin: 18px 0 12px;
  color: #29463a;
  font-size: 16px;
  line-height: 1.4;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: #0f3f22;
  margin-bottom: 16px;
}

.price-box .currency {
  font-size: 24px;
  font-weight: 900;
}

.price-box strong {
  font-size: clamp(54px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.price-period {
  margin-top: 3px;
  color: #29463a;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 16px;
}

.plan-description {
  max-width: 420px;
  margin: 16px auto 18px;
  color: #29463a;
  font-size: 15px;
  line-height: 1.45;
}

.included-list {
  margin-top: 12px;
  text-align: left;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(16, 53, 29, 0.09);
  color: #18251d;
  font-size: 14px;
  font-weight: 700;
}

.included-item span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f8d4b;
  background: #eaf5eb;
  font-size: 12px;
  font-weight: 900;
}

.pricing-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3f8d4b, #2f7b3d);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(47, 123, 61, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(47, 123, 61, 0.28);
  color: #ffffff;
  text-decoration: none;
}

.pricing-note {
  margin-top: 16px;
  color: #64746b;
  font-size: 12px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-note strong {
  color: #40584a;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .pricing-pharmacy-inner {
    max-width: 860px;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0 34px;
  }

  .pricing-copy {
    text-align: center;
  }

  .pricing-pharmacy-section .section-kicker {
    justify-content: center;
  }

  .pricing-copy h2,
  .pricing-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-benefits {
    align-items: center;
  }

  .pricing-benefit {
    width: fit-content;
  }

  .pricing-card-wrap {
    min-height: auto;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .pricing-pharmacy-section {
    padding: 72px 0;
  }

  .pricing-pharmacy-inner {
    padding: 0 30px;
    gap: 34px;
  }

  .pricing-copy h2 {
    font-size: clamp(34px, 6vw, 46px);
  }

  .pricing-lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .pricing-benefits {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    align-items: stretch;
  }

  .pricing-benefit {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .pricing-pharmacy-section {
    padding: 56px 0;
  }

  .pricing-pharmacy-inner {
    padding: 0 20px;
    gap: 30px;
  }

  .pricing-bg-left {
    width: 280px;
    height: 280px;
    left: -170px;
    bottom: -120px;
  }

  .pricing-bg-right {
    width: 260px;
    height: 260px;
    right: -160px;
    top: -120px;
    border-width: 38px;
  }

  .pricing-pharmacy-section .section-kicker {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .pricing-pharmacy-section .section-kicker span {
    width: 30px;
  }

  .pricing-copy h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .pricing-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .pricing-benefits {
    margin-top: 22px;
    align-items: stretch;
  }

  .pricing-benefit {
    width: 100%;
    align-items: flex-start;
    font-size: 15px;
    text-align: left;
  }

  .check-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .pricing-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .plan-badge {
    padding: 9px 16px;
    font-size: 14px;
  }

  .plan-subtitle {
    margin: 14px 0 10px;
    font-size: 15px;
  }

  .price-box {
    gap: 10px;
  }

  .price-box .currency {
    font-size: 20px;
  }

  .price-box strong {
    font-size: 54px;
  }

  .price-period {
    font-size: 15px;
  }

  .plan-description {
    margin: 12px auto 14px;
    font-size: 14px;
  }

  .included-item {
    align-items: flex-start;
    padding: 8px 0;
    font-size: 13px;
  }

  .pricing-button {
    min-height: 48px;
    margin-top: 16px;
    font-size: 14px;
  }

  .pricing-note {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .pricing-pharmacy-inner {
    padding: 0 16px;
  }

  .pricing-copy h2 {
    font-size: 30px;
  }

  .pricing-card {
    padding: 22px 16px;
  }

  .price-box strong {
    font-size: 48px;
  }
}
  
  
  /* RESPONSIVIDADE */
  
  @media (max-width: 1100px) {
    .hub-hero-grid,
    .hub-solution-grid,
    .hub-differentials-grid {
      gap: 55px;
    }
  
    .hub-features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hub-results-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .hub-result-item {
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .hub-result-item:nth-child(2n) {
      border-right: 0;
    }

    .hub-result-item:nth-child(n + 7) {
      border-bottom: 0;
    }
  
  }
  
  
  @media (max-width: 900px) {
    .hub-section {
      padding: 80px 0;
    }
  
    .hub-hero {
      padding-top: 70px;
    }
  
    .hub-hero-grid,
    .hub-problem-layout,
    .hub-solution-grid,
    .hub-results-header,
    .hub-differentials-grid,
    .hub-final-cta-box {
      grid-template-columns: 1fr;
    }
  
    .hub-hero-grid {
      gap: 45px;
    }
  
    .hub-hero-copy {
      text-align: center;
    }
  
    .hub-hero-copy h1,
    .hub-hero-description {
      margin-right: auto;
      margin-left: auto;
    }
  
    .hub-eyebrow {
      justify-content: center;
    }
  
    .hub-hero-actions {
      justify-content: center;
    }
  
    .hub-hero-visual {
      min-height: 520px;
    }
  
    .hub-hero-image {
      height: 490px;
    }
  
    .hub-problem-content,
    .hub-differentials-copy {
      position: static;
    }
  
    .hub-pillars {
      grid-template-columns: 1fr;
    }

    .hub-solution .nr1-differentials-radial {
      min-height: auto;
      gap: 30px;
      margin-left: 0;
    }

    .hub-solution .nr1-differentials-visual {
      width: min(62vw, 380px);
      margin: 0 auto;
    }

    .hub-solution .nr1-differentials-points {
      position: static;
      width: 100%;
      gap: 20px;
      transform: none;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item {
      margin-left: 0;
      padding-left: 38px;
      transform: none;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
      width: auto;
      display: inline-block;
      font-size: 22px;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item p {
      max-width: none;
    }
  
    .hub-pillar-card {
      min-height: auto;
    }
  
    .hub-pillar-card-featured {
      top: 0;
    }
  
    .hub-card-icon {
      margin-bottom: 40px;
    }
  
    .hub-results-header {
      gap: 20px;
    }
  
    .hub-differentials-copy {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .hub-final-cta-copy {
      max-width: 760px;
      margin: 0 auto;
    }

    .hub-differentials-image::after {
      right: 22%;
      width: 24%;
      opacity: 0.75;
    }
  }
  
  
  @media (max-width: 700px) {
    .hub-container {
      width: min(calc(100% - 28px), var(--container));
    }
  
    .hub-section {
      padding: 65px 0;
    }
  
    .hub-section-heading {
      margin-bottom: 40px;
    }
  
    .hub-section-heading h2,
    .hub-solution-copy h2,
    .hub-results-header h2,
    .hub-differentials-copy h2 {
      font-size: 35px;
      letter-spacing: -1.4px;
    }
  
    .hub-section-heading > p,
    .hub-solution-copy > p,
    .hub-differentials-copy > p {
      font-size: 16px;
    }
  
    .hub-hero {
      min-height: auto;
      padding: 60px 0;
    }
  
    .hub-hero-copy h1 {
      font-size: 43px;
      letter-spacing: -2.2px;
    }
  
    .hub-hero-description {
      font-size: 17px;
    }
  
    .hub-hero-actions {
      display: grid;
    }
  
    .hub-hero-actions .hub-btn {
      width: 100%;
    }
  
    .hub-hero-visual {
      min-height: 430px;
    }
  
    .hub-hero-image {
      width: 100%;
      height: 410px;
      border-radius: 28px 28px 70px 28px;
    }
  
    .hub-floating-card {
      min-width: 220px;
      padding: 13px;
    }
  
    .hub-floating-card-top {
      top: 25px;
      left: -5px;
    }
  
    .hub-floating-card-bottom {
      right: -5px;
      bottom: 25px;
    }
  
    .hub-floating-icon {
      width: 37px;
      height: 37px;
      flex-basis: 37px;
    }
  
    .hub-problem-content {
      padding: 27px;
    }
  
    .hub-highlight-quote {
      margin-top: 45px;
      min-height: 0;
      padding: 38px 16px;
    }
  
    .hub-highlight-quote p {
      width: 92%;
      font-size: 17px;
      line-height: 1.45;
    }

    .hub-solution .nr1-differentials-radial {
      gap: 24px;
    }

    .hub-solution .nr1-differentials-visual {
      width: min(84vw, 320px);
    }

    .hub-solution .nr1-differentials-center {
      width: min(52%, 156px);
    }

    .hub-solution .nr1-differential-dot {
      width: 24px;
      height: 24px;
      border-width: 5px;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item {
      padding-left: 34px;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
      margin-bottom: 6px;
      font-size: 20px;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item p {
      font-size: 15px;
    }
  
    .hub-features-grid,
    .hub-results-grid {
      grid-template-columns: 1fr;
    }
  
    .hub-feature-card {
      min-height: auto;
    }

    .hub-feature-preview {
      font-size: 14px;
    }

    .hub-differentials-image img {
      width: min(100%, 320px);
    }

    .hub-platform-modal__content {
      width: calc(100% - 20px);
      max-height: 88vh;
      margin-top: 6vh;
      padding: 18px;
      border-radius: 18px;
    }

    .hub-platform-modal__title {
      margin-right: 44px;
      margin-bottom: 14px;
      font-size: 19px;
    }

    .hub-platform-modal__image {
      max-height: calc(88vh - 92px);
      border-radius: 12px;
    }
  
    .hub-result-item {
      min-height: 104px;
      padding: 24px 22px;
      border-right: 0;
      border-bottom: 1px solid var(--border);
    }

    .hub-result-item:last-child {
      border-bottom: 0;
    }

    .hub-result-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
    }

    .hub-result-icon svg {
      width: 24px;
      height: 24px;
    }

    .hub-result-item strong {
      font-size: 24px;
    }
  
    .hub-process-list::before {
      left: 25px;
    }
  
    .hub-process-item {
      gap: 15px;
      grid-template-columns: 52px 1fr;
    }
  
    .hub-process-number {
      width: 52px;
      height: 52px;
      margin-top: 14px;
      border-width: 6px;
    }
  
    .hub-process-content {
      padding: 22px;
    }

    .hub-process-intro {
      margin-top: -10px;
      margin-bottom: 40px;
    }

    .hub-process-intro p {
      font-size: 15px;
    }

    .hub-process-intro p:first-child {
      font-size: 18px;
    }
  
    .hub-positioning {
      padding: 85px 0;
    }
  
    .hub-positioning h2 {
      font-size: 39px;
    }
  
    .hub-positioning p,
    .hub-positioning strong {
      font-size: 17px;
      width: 75%;
      margin: 0 auto;
    }
  
    .hub-final-cta {
      padding: 60px 0;
    }
  
    .hub-final-cta-box {
      gap: 35px;
      padding: 42px 25px;
      border-radius: 23px;
    }

    .hub-final-cta-copy {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hub-final-cta-icon {
      margin: 0 auto;
    }
  
    .hub-final-cta h2 {
      font-size: 36px;
    }
  }
  
  
  @media (max-width: 430px) {
    .hub-hero-copy h1 {
      font-size: 38px;
    }
  
    .hub-hero-visual {
      min-height: 385px;
    }
  
    .hub-hero-image {
      height: 365px;
    }
  
    .hub-floating-card {
      min-width: auto;
      max-width: 220px;
    }
  
    .hub-floating-card small {
      display: none;
    }
  
    .hub-problem-item {
      gap: 12px;
      grid-template-columns: 38px 1fr;
    }
  
    .hub-problem-item p {
      font-size: 15px;
    }
  
  }

  @media (min-width: 901px) and (max-width: 1100px) {
    .hub-section {
      padding: 92px 0;
    }

    .hub-hero {
      min-height: 680px;
      padding: 78px 0;
    }

    .hub-hero-grid {
      grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
      gap: 44px;
    }

    .hub-hero-copy h1 {
      font-size: clamp(44px, 5.2vw, 58px);
      letter-spacing: -2.6px;
    }

    .hub-hero-description {
      font-size: 18px;
    }

    .hub-hero-visual {
      min-height: 500px;
    }

    .hub-hero-image {
      width: 100%;
      height: 470px;
    }

    .hub-floating-card-bottom {
      right: 8px;
      bottom: 36px;
    }

    .hub-solution-grid {
      grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
      gap: 48px;
    }

    .hub-solution .nr1-differentials-radial {
      min-height: 430px;
    }

    .hub-solution .nr1-differentials-visual {
      width: min(40vw, 380px);
      margin-left: 0;
    }

    .hub-solution .nr1-differentials-points {
      width: min(50%, 420px);
      transform: translate(-24px, -50%);
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
      min-width: 0;
      max-width: 220px;
    }

    .hub-problem-layout {
      gap: 48px;
      grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    }

    .hub-highlight-quote p {
      width: min(74%, 820px);
    }

    .hub-differentials-grid {
      grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
    }

    .hub-final-cta-box {
      gap: 36px;
      padding: 42px;
    }
  }

  @media (min-width: 701px) and (max-width: 900px) {
    .hub-section {
      padding: 84px 0;
    }

    .hub-section-heading {
      margin-bottom: 46px;
    }

    .hub-hero {
      min-height: auto;
      padding: 72px 0 86px;
    }

    .hub-hero-grid,
    .hub-solution-grid,
    .hub-differentials-grid,
    .hub-final-cta-box {
      gap: 42px;
    }

    .hub-hero-visual {
      width: min(620px, 100%);
      min-height: 460px;
      margin: 0 auto;
    }

    .hub-hero-image {
      width: 100%;
      height: 450px;
    }

    .hub-floating-card-bottom {
      right: 18px;
      bottom: 32px;
    }

    .hub-problem-content {
      width: min(560px, 100%);
      display: block;
      order: 2;
      margin: 34px auto 0;
      padding: 0;
    }

    .hub-problem-content img {
      margin: 0 auto;
    }

    .hub-problem-list {
      order: 1;
    }

    .hub-highlight-quote {
      margin-top: 0;
    }

    .hub-highlight-quote p {
      width: min(86%, 760px);
      font-size: 25px;
    }

    .hub-pillars {
      max-width: 680px;
      margin: 0 auto;
    }

    .hub-card-icon img {
      width: min(260px, 70%);
      margin: 0 auto;
    }

    .hub-solution-copy,
    .hub-results-header,
    .hub-differentials-copy {
      text-align: center;
    }

    .hub-solution .nr1-differentials-radial {
      justify-items: center;
    }

    .hub-solution .nr1-differentials-points {
      max-width: 640px;
      margin: 0 auto;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
      max-width: 100%;
    }

    .hub-features-grid,
    .hub-results-grid {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .hub-differentials-image img {
      width: min(100%, 380px);
      margin: 0 auto;
    }

    .hub-positioning {
      padding-top: 68px;
    }

    .hub-positioning-content {
      max-width: 620px;
    }

    .hub-positioning p {
      max-width: 560px;
    }

    .hub-final-cta-copy {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hub-final-cta-icon {
      margin: 0 auto;
    }
  }

  @media (max-width: 700px) {
    .hub-page {
      overflow-x: hidden;
    }

    .hub-section {
      padding: 68px 0;
    }

    .hub-section-heading {
      margin-bottom: 34px;
    }

    .hub-section-tag,
    .hub-eyebrow {
      justify-content: center;
      width: 100%;
      margin-bottom: 16px;
      text-align: center;
    }

    .hub-hero {
      padding: calc(66px + 50px) 0 64px;
      background:
        radial-gradient(circle at 50% 16%, rgba(134, 191, 140, 0.22), transparent 34%),
        linear-gradient(135deg, #FFFFFF 0%, #F4FAF4 100%);
    }

    .hub-hero::before {
      right: 50%;
      transform: translateX(50%);
    }

    .hub-hero-grid {
      gap: 34px;
    }

    .hub-hero-note {
      max-width: 320px;
      margin: 0 auto;
    }

    .hub-hero-visual {
      width: 100%;
      min-height: 390px;
    }

    .hub-hero-image {
      height: 380px;
    }

    .hub-floating-card-bottom {
      right: 10px;
      bottom: 18px;
    }

    .hub-problem-content {
      width: min(100%, 420px);
      display: block;
      order: 2;
      margin: 28px auto 0;
      padding: 0;
    }

    .hub-problem-content img {
      margin: 0 auto;
    }

    .hub-problem-list {
      order: 1;
      gap: 8px;
    }

    .hub-problem-item {
      padding: 16px 0;
    }

    .hub-highlight-quote {
      margin-top: 0;
    }

    .hub-card-icon {
      margin-bottom: 26px;
    }

    .hub-card-icon img {
      width: min(230px, 72%);
      margin: 0 auto;
    }

    .hub-solution-copy,
    .hub-differentials-copy,
    .hub-results-header {
      text-align: center;
    }

    .hub-text-link {
      justify-content: center;
      width: 100%;
    }

    .hub-solution .nr1-differentials-radial {
      justify-items: center;
    }

    .hub-solution .nr1-differentials-visual {
      margin: 0 auto;
    }

    .hub-solution .nr1-differentials-points {
      max-width: 420px;
      margin: 0 auto;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
      min-width: 0;
      max-width: 100%;
      text-align: left;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item p {
      max-width: 100%;
    }

    .hub-results-header > p {
      margin-right: auto;
      margin-left: auto;
    }

    .hub-result-item:nth-child(n) {
      border-right: 0;
      border-bottom: 1px solid var(--border);
    }

    .hub-result-item:last-child {
      border-bottom: 0;
    }

    .hub-differentials-image {
      justify-content: center;
    }

    .hub-differentials-image img {
      margin: 0 auto;
    }

    .hub-positioning {
      background-position: 24% center;
      height: 100vh;
    }

    .hub-final-cta-box::after {
      right: 50%;
      bottom: -180px;
      transform: translateX(50%);
    }
  }

  @media (max-width: 430px) {
    .hub-section {
      padding: 58px 0;
    }

    .hub-hero {
      padding-top: calc(66px + 40px);
    }

    .hub-hero-copy h1 {
      font-size: 36px;
      letter-spacing: -1.8px;
    }

    .hub-hero-description {
      font-size: 16px;
      line-height: 1.62;
    }

    .hub-hero-visual {
      min-height: 330px;
    }

    .hub-hero-image {
      height: 320px;
      border-radius: 24px 24px 54px 24px;
    }

    .hub-floating-card {
      max-width: 205px;
      padding: 11px 12px;
    }

    .hub-floating-card-bottom {
      right: 8px;
      bottom: 12px;
    }

    .hub-floating-card strong {
      font-size: 13px;
    }

    .hub-pillar-card {
      padding: 28px 24px;
    }

    .hub-solution .nr1-differentials-visual {
      width: min(78vw, 280px);
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item h3 {
      display: block;
      font-size: 17px;
      padding: 9px 14px;
    }

    .hub-solution .nr1-differentials-points .nr1-differential-item {
      padding-left: 30px;
    }

    .hub-final-cta-actions {
      padding: 20px;
    }
  }