.hero-with-media {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
      gap: 28px;
      align-items: center;
    }

    .sector-hero-media img,
    .sector-gallery img {
      width: 100%;
      border-radius: 24px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      object-fit: cover;
    }

    .sector-hero-media img {
      min-height: 360px;
      max-height: 420px;
    }

    .sector-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
      gap: 26px;
      align-items: start;
    }

    .sales-card {
      position: sticky;
      top: 110px;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .pill-list span {
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 700;
    }

    .sector-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .sector-gallery .card {
      display: grid;
      grid-template-rows: auto 1fr;
      height: 100%;
    }

    body.page-sector_solution main,
    body.page-camps main {
      max-width: none;
      padding: 0 0 136px;
    }

    body.page-sector_solution main > .stack,
    body.page-camps main > .stack {
      max-width: 1280px;
      margin: 0 auto;
      padding: 28px 36px 0;
    }

    .centers-landing,
    .hotel-landing,
    .school-landing,
    .business-landing {
      max-width: 1920px;
      margin: 0 auto;
      padding: 28px 36px 0;
    }

    .hotel-landing {
      display: grid;
      gap: 28px;
    }

    .hotel-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(430px, 1.02fr);
      gap: 34px;
      align-items: center;
      min-height: 560px;
    }

    .hotel-hero-copy {
      display: grid;
      gap: 26px;
      text-align: left;
    }

    .hotel-eyebrow {
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(0, 122, 61, 0.1);
      color: #006d36;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .hotel-hero h1 {
      max-width: 13ch;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(42px, 5.3vw, 72px);
      line-height: 1.1;
      letter-spacing: -0.065em;
      color: #101820;
    }

    .hotel-hero h1 span {
      display: block;
      color: #007a3d;
    }

    .hotel-hero-copy .lead {
      max-width: 58ch;
      color: #24323d;
      font-size: clamp(17px, 1.45vw, 20px);
      line-height: 1.78;
    }

    .hotel-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 6px;
    }

    .hotel-actions .button {
      min-width: 220px;
      border-radius: 10px;
    }

    .hotel-hero .hotel-actions .button:not(.secondary) {
      background: #007a3d !important;
      color: #ffffff !important;
      border-color: #007a3d !important;
      box-shadow: 0 18px 36px rgba(0, 122, 61, 0.18);
    }

    .hotel-actions .button.secondary {
      background: #ffffff;
      color: #007a3d;
      border-color: rgba(0, 122, 61, 0.36);
      box-shadow: none;
    }

    .hotel-hero-media {
      position: relative;
      min-height: 500px;
      overflow: hidden;
      border-radius: 38px;
      isolation: isolate;
      background: #f7efe4;
    }

    .hotel-hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.74) 9%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, #ffffff 100%);
      pointer-events: none;
    }

    .hotel-hero-media img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hotel-floating-card {
      position: absolute;
      right: 16px;
      bottom: 34px;
      z-index: 2;
      width: min(400px, calc(100% - 32px));
      padding: 26px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 24, 32, 0.08);
      box-shadow: 0 22px 50px rgba(17, 24, 32, 0.17);
      text-align: left;
    }

    .hotel-check-list,
    .hotel-mini-list {
      display: grid;
      gap: 13px;
      margin: 0;
      padding: 0;
      list-style: none;
      text-align: left;
    }

    .hotel-check-list li,
    .hotel-mini-list li {
      display: grid;
      gap: 12px;
      align-items: start;
      color: #17242f;
      font-weight: 800;
      line-height: 1.45;
    }

    .hotel-check-list li {
      grid-template-columns: 34px minmax(0, 1fr);
    }

    .hotel-mini-list li {
      grid-template-columns: 22px minmax(0, 1fr);
    }

    .hotel-check-list .hotel-icon {
      width: 30px;
      height: 30px;
      margin-top: 1px;
    }

    .hotel-mini-list li::before {
      content: "";
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border-radius: 999px;
      background:
        radial-gradient(circle at center, #ffffff 0 15%, transparent 16%),
        #007a3d;
    }

    .hotel-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      padding: 24px 28px;
      border-radius: 14px;
      border: 1px solid rgba(17, 24, 32, 0.12);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 38px rgba(17, 24, 32, 0.06);
    }

    .hotel-metric {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      min-height: 104px;
      padding: 0 22px;
      border-right: 1px solid rgba(17, 24, 32, 0.12);
      text-align: left;
    }

    .hotel-metric:last-child {
      border-right: none;
    }

    .hotel-icon {
      width: 42px;
      height: 42px;
      color: #007a3d;
      flex: 0 0 auto;
    }

    .hotel-landing .hotel-icon,
    .school-landing .hotel-icon {
      fill: none;
      stroke: currentColor;
    }

    .hotel-metric strong {
      display: block;
      color: #111820;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .hotel-metric span {
      color: #26333f;
      line-height: 1.55;
    }

    .hotel-section-heading {
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
      margin-top: 14px;
    }

    .hotel-section-heading h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.1;
      letter-spacing: -0.045em;
    }

    .hotel-benefits {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 20px;
    }

    .school-landing .hotel-benefits {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .hotel-benefit-card {
      display: grid;
      gap: 14px;
      align-content: start;
      min-height: 250px;
      padding: 28px 22px;
      border-radius: 12px;
      border: 1px solid rgba(17, 24, 32, 0.11);
      background: #ffffff;
      box-shadow: 0 16px 30px rgba(17, 24, 32, 0.06);
      text-align: center;
    }

    .hotel-benefit-card .hotel-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto;
    }

    .hotel-benefit-card h3 {
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .hotel-benefit-card p {
      color: #26333f;
      line-height: 1.55;
    }

    .school-landing .hotel-benefit-card {
      min-height: 245px;
      padding: 24px 18px;
    }

    .school-landing .hotel-benefit-card h3 {
      font-size: 18px;
      letter-spacing: 0;
      line-height: 1.18;
    }

    .hotel-value {
      display: grid;
      gap: 22px;
    }

    .hotel-value-heading {
      display: grid;
      gap: 10px;
      max-width: 900px;
      margin: 0 auto;
      justify-items: center;
      text-align: center;
    }

    .hotel-value-eyebrow {
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(214, 162, 63, 0.14);
      color: #8a5f00;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .hotel-value-heading h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(30px, 3.2vw, 44px);
      line-height: 1.08;
      letter-spacing: 0;
      color: #101820;
    }

    .hotel-value-heading p {
      max-width: 72ch;
      color: #3f4d58;
      font-size: clamp(16px, 1.2vw, 19px);
      line-height: 1.65;
      font-weight: 700;
    }

    .hotel-value-grid {
      display: grid;
      grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
      gap: 18px;
      align-items: stretch;
    }

    .hotel-value-featured {
      display: grid;
      gap: 18px;
      align-content: end;
      min-height: 330px;
      padding: 34px;
      border-radius: 14px;
      color: #ffffff;
      background:
        radial-gradient(circle at 88% 14%, rgba(214, 162, 63, 0.28), transparent 26%),
        radial-gradient(circle at 10% 92%, rgba(255, 255, 255, 0.13), transparent 30%),
        linear-gradient(135deg, #006d36 0%, #008b45 100%);
      box-shadow: 0 22px 46px rgba(0, 109, 54, 0.18);
      text-align: left;
    }

    .hotel-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 225, 163, 0.42);
      color: #ffe1a3;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .hotel-rating-stars {
      display: inline-flex;
      gap: 3px;
      align-items: center;
      flex: 0 0 auto;
    }

    .hotel-rating-stars .hotel-icon {
      width: 44px;
      height: 44px;
      color: #ffe1a3;
    }

    .hotel-rating-badge span {
      color: #ffffff;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.2;
    }

    .hotel-value-title-row {
      display: flex;
      gap: 22px;
      align-items: center;
      justify-content: space-between;
    }

    .hotel-title-icon {
      width: 78px;
      height: 78px;
      color: #ffe1a3;
      flex: 0 0 auto;
    }

    .hotel-value-featured h3 {
      flex: 1 1 auto;
      font-size: clamp(28px, 2.6vw, 38px);
      line-height: 1.1;
      letter-spacing: 0;
      color: inherit;
    }

    .hotel-value-featured p {
      max-width: 58ch;
      color: rgba(255, 255, 255, 0.88);
      font-size: 17px;
      line-height: 1.62;
      font-weight: 700;
    }

    .hotel-value-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .hotel-value-card {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
      min-height: 156px;
      padding: 24px;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid rgba(17, 24, 32, 0.1);
      box-shadow: 0 16px 32px rgba(17, 24, 32, 0.055);
      text-align: left;
    }

    .hotel-value-card .hotel-icon {
      width: 52px;
      height: 52px;
      color: #007a3d;
    }

    .hotel-value-card h3 {
      margin-bottom: 8px;
      font-size: 20px;
      line-height: 1.18;
      letter-spacing: 0;
      color: #111820;
    }

    .hotel-value-card p {
      color: #43515c;
      font-size: 14px;
      line-height: 1.52;
      font-weight: 650;
    }

    .hotel-value-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      overflow: hidden;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid rgba(17, 24, 32, 0.09);
      box-shadow: 0 14px 28px rgba(17, 24, 32, 0.05);
    }

    .hotel-value-step {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 20px 22px;
      border-right: 1px solid rgba(17, 24, 32, 0.08);
      color: #17242f;
      font-weight: 900;
      line-height: 1.25;
      text-align: left;
    }

    .hotel-value-step:last-child {
      border-right: none;
    }

    .hotel-value-step .hotel-icon {
      width: 34px;
      height: 34px;
      color: #8a5f00;
    }

    .hotel-privacy {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      padding: 24px 30px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 92% 50%, rgba(var(--mint-rgb), 0.14), transparent 26%),
        linear-gradient(90deg, #f4faf6 0%, #ffffff 100%);
      border: 1px solid rgba(0, 122, 61, 0.1);
      text-align: left;
    }

    .hotel-privacy h3 {
      color: #006d36;
      margin-bottom: 6px;
    }

    .hotel-privacy p {
      color: #26333f;
      line-height: 1.6;
    }

    .hotel-image-band {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .hotel-image-card {
      position: relative;
      min-height: 260px;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(17, 24, 32, 0.11);
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(20, 49, 37, 0.08);
    }

    .hotel-image-card img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      display: block;
    }

    .hotel-image-card figcaption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      padding: 14px 16px;
      border-radius: 14px;
      color: #111820;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 12px 24px rgba(17, 24, 32, 0.12);
      backdrop-filter: blur(8px);
    }

    .hotel-image-card strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1rem;
      color: #007a3d;
    }

    .hotel-image-card span {
      color: #26333f;
      line-height: 1.45;
    }

    .hotel-flow {
      display: grid;
      gap: 18px;
      padding: 22px;
      border-radius: 14px;
      border: 1px solid rgba(17, 24, 32, 0.11);
      background: #ffffff;
    }

    .hotel-flow-steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .hotel-flow-step {
      position: relative;
      min-height: 168px;
      padding: 26px 18px 18px;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 12px;
      display: grid;
      gap: 14px;
      place-items: center;
      text-align: center;
    }

    .hotel-flow-step:not(:last-child)::after {
      content: "\2192";
      position: absolute;
      right: -18px;
      top: 50%;
      transform: translateY(-50%);
      color: #007a3d;
      font-size: 28px;
    }

    .hotel-flow-number {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #007a3d;
      color: #ffffff;
      font-weight: 900;
    }

    .hotel-flow-step p {
      color: #26333f;
      line-height: 1.45;
      font-weight: 700;
    }

    .hotel-flow-image {
      width: 100%;
      height: 78px;
      object-fit: contain;
      display: block;
      border-radius: 10px;
      background: linear-gradient(135deg, #f7fbf9 0%, #ffffff 100%);
    }

    .hotel-flow-step .hotel-icon {
      width: 58px;
      height: 58px;
    }

    .hotel-decision-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .hotel-decision-panel {
      --panel-color: #007a3d;
      display: grid;
      gap: 18px;
      min-height: 300px;
      padding: 30px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 92% 88%, rgba(0, 122, 61, 0.13), transparent 22%),
        linear-gradient(135deg, #f5fbf7 0%, #ffffff 100%);
      border: 1px solid rgba(0, 122, 61, 0.12);
      text-align: left;
    }

    .hotel-decision-panel[data-tone="red"] {
      --panel-color: #b3222b;
      background:
        radial-gradient(circle at 92% 88%, rgba(179, 34, 43, 0.11), transparent 22%),
        linear-gradient(135deg, #fff6f5 0%, #ffffff 100%);
      border-color: rgba(179, 34, 43, 0.14);
    }

    .hotel-decision-panel h3 {
      color: var(--panel-color);
      font-size: 28px;
      letter-spacing: -0.04em;
    }

    .hotel-decision-panel p {
      color: #26333f;
      line-height: 1.65;
    }

    .hotel-decision-items {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--panel-color);
      text-align: center;
      font-weight: 800;
    }

    .hotel-decision-panel[data-tone="red"] .hotel-decision-items {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hotel-decision-items li {
      display: grid;
      gap: 9px;
      justify-items: center;
      align-content: start;
      line-height: 1.3;
    }

    .hotel-decision-items .hotel-icon {
      width: 46px;
      height: 46px;
      color: var(--panel-color);
    }

    .hotel-role-strip,
    .hotel-assurance-strip {
      display: grid;
      gap: 0;
      padding: 24px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: inset 0 0 0 1px rgba(17, 24, 32, 0.08);
    }

    .hotel-role-strip {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hotel-assurance-strip {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hotel-role,
    .hotel-assurance {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 0 22px;
      border-right: 1px solid rgba(17, 24, 32, 0.1);
      text-align: left;
    }

    .hotel-role:last-child,
    .hotel-assurance:last-child {
      border-right: none;
    }

    .hotel-role strong,
    .hotel-assurance strong,
    .hotel-role span,
    .hotel-assurance span {
      display: block;
    }

    .hotel-role strong,
    .hotel-assurance strong {
      color: #111820;
      line-height: 1.25;
      margin-bottom: 5px;
    }

    .hotel-role span,
    .hotel-assurance span {
      color: #3f4d58;
      font-size: 14px;
      line-height: 1.45;
    }

    .hotel-final-cta {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
      gap: 36px;
      align-items: stretch;
      padding: 40px 44px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 18% 92%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(135deg, #006d36 0%, #008d46 100%);
      color: #ffffff;
      box-shadow: 0 24px 48px rgba(0, 109, 54, 0.22);
      text-align: left;
    }

    .hotel-final-copy {
      display: grid;
      gap: 22px;
      align-content: center;
      max-width: 820px;
    }

    .hotel-final-cta h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(32px, 3.2vw, 50px);
      line-height: 1.16;
      letter-spacing: 0;
      color: inherit;
    }

    .hotel-final-description {
      max-width: 66ch;
      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(16px, 1.15vw, 19px);
      line-height: 1.65;
      font-weight: 700;
    }

    .hotel-final-cta ul {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin: 4px 0 0;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.94);
      font-weight: 800;
    }

    .hotel-final-cta li {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      min-height: 66px;
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      line-height: 1.35;
      text-align: left;
    }

    .hotel-final-cta li::before {
      content: "\2713";
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      font-size: 14px;
    }

    .hotel-final-cta .hotel-actions {
      justify-content: flex-start;
      margin: 0;
    }

    .hotel-final-cta .button {
      background: #ffffff;
      color: #007a3d;
      border-color: #ffffff;
      box-shadow: none;
    }

    .hotel-final-cta .button.secondary {
      background: transparent;
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.46);
    }

    .hotel-lead-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      align-content: start;
      padding: 18px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 38px rgba(0, 32, 15, 0.18);
    }

    .hotel-form-intro {
      display: grid;
      gap: 4px;
      grid-column: 1 / -1;
      padding: 4px 2px 8px;
      color: #17242f;
    }

    .hotel-form-intro strong,
    .hotel-form-intro span {
      display: block;
    }

    .hotel-form-intro strong {
      font-size: 18px;
      line-height: 1.2;
    }

    .hotel-form-intro span {
      color: #52606b;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.4;
    }

    .hotel-lead-form label {
      display: grid;
      gap: 6px;
      color: #17242f;
      font-size: 12px;
      font-weight: 900;
    }

    .hotel-lead-form input,
    .hotel-lead-form textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 8px;
      padding: 11px 12px;
      background: #ffffff;
      color: #111820;
      font: 800 12px/1.25 "Manrope", "Segoe UI", sans-serif;
    }

    .hotel-lead-form textarea {
      min-height: 84px;
      resize: vertical;
    }

    .hotel-lead-form label:last-of-type,
    .hotel-lead-form button {
      grid-column: 1 / -1;
    }

    .hotel-lead-form button {
      min-height: 48px;
      border-radius: 8px;
      border-color: #007a3d;
      background: #007a3d;
      color: #ffffff;
      box-shadow: none;
    }

    .hospital-landing {
      --hospital-green: #007a3d;
      --hospital-green-dark: #005f30;
      --hospital-soft: #edf8f1;
      --hospital-ink: #071226;
      --hospital-muted: #3b4854;
      --hospital-line: rgba(17, 24, 32, 0.12);
      display: grid;
      gap: 24px;
      width: min(1500px, calc(100vw - 96px));
      max-width: 1500px;
      margin: 0 auto;
      padding: 24px 0 0;
      color: var(--hospital-ink);
    }

    .hospital-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
      gap: 42px;
      align-items: center;
      min-height: 500px;
    }

    .hospital-hero-copy {
      display: grid;
      gap: 16px;
      text-align: left;
    }

    .hospital-eyebrow {
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0, 122, 61, 0.1);
      color: var(--hospital-green-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .hospital-hero h1 {
      max-width: 15.4ch;
      margin: 0;
      color: var(--hospital-ink);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(34px, 3.5vw, 52px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .hospital-hero h1 span {
      display: block;
      color: var(--hospital-green);
    }

    .hospital-hero .lead {
      max-width: 58ch;
      margin: 0;
      color: #20303c;
      font-size: clamp(14px, 1.08vw, 17px);
      font-weight: 650;
      line-height: 1.62;
    }

    .hospital-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 4px;
    }

    .hospital-actions .button {
      min-width: 166px;
      border-radius: 8px;
    }

    .hospital-actions .button:not(.secondary) {
      background: var(--hospital-green);
      border-color: var(--hospital-green);
      color: #ffffff;
      box-shadow: 0 16px 30px rgba(0, 122, 61, 0.17);
    }

    .hospital-actions .button.secondary {
      background: #ffffff;
      border-color: rgba(0, 122, 61, 0.38);
      color: var(--hospital-green-dark);
      box-shadow: none;
    }

    .hospital-hero-visual {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 238px;
      align-items: center;
      gap: 0;
    }

    .hospital-hero-media {
      margin: 0;
      min-height: 440px;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 32, 0.1);
      border-radius: 20px;
      background: #ffffff;
      box-shadow: 0 18px 36px rgba(17, 24, 32, 0.08);
    }

    .hospital-hero-media img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 440px;
      object-fit: cover;
      object-position: center;
    }

    .hospital-hero-panel {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 0;
      margin-left: -54px;
      padding: 16px 18px;
      border: 1px solid rgba(17, 24, 32, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 40px rgba(17, 24, 32, 0.13);
    }

    .hospital-hero-panel article,
    .hospital-proof-item,
    .hospital-kit-item,
    .hospital-implementation-item {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      text-align: left;
    }

    .hospital-hero-panel article {
      min-height: 70px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(17, 24, 32, 0.08);
    }

    .hospital-hero-panel article:last-child {
      border-bottom: none;
    }

    .hospital-icon {
      display: block;
      width: 38px;
      height: 38px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .hospital-hero-panel strong,
    .hospital-proof-item strong,
    .hospital-kit-item strong,
    .hospital-implementation-item strong {
      display: block;
      color: var(--hospital-ink);
      font-size: 14px;
      line-height: 1.26;
    }

    .hospital-proof-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      padding: 14px 18px;
      border: 1px solid var(--hospital-line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 32, 0.05);
    }

    .hospital-proof-item {
      --hospital-proof-accent: var(--hospital-green);
      grid-template-columns: 56px minmax(0, 1fr);
      min-height: 78px;
      padding: 0 22px;
      border-right: 1px solid rgba(17, 24, 32, 0.1);
    }

    .hospital-proof-item:nth-child(2) {
      --hospital-proof-accent: #126fb3;
    }

    .hospital-proof-item:nth-child(3) {
      --hospital-proof-accent: #b86f0c;
    }

    .hospital-proof-item:nth-child(4) {
      --hospital-proof-accent: #0a8378;
    }

    .hospital-proof-item:last-child {
      border-right: none;
    }

    .hospital-proof-icon-shell {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.34), transparent 30%),
        var(--hospital-proof-accent);
      box-shadow:
        0 12px 24px color-mix(in srgb, var(--hospital-proof-accent) 26%, transparent),
        inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    }

    .hospital-proof-icon-shell .hospital-icon {
      width: 30px;
      height: 30px;
      filter: brightness(0) invert(1);
    }

    .hospital-section-heading {
      display: grid;
      justify-items: center;
      gap: 6px;
      margin-top: 4px;
      text-align: center;
    }

    .hospital-section-heading h2 {
      margin: 0;
      color: var(--hospital-ink);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(26px, 2.6vw, 34px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .hospital-offer-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .hospital-offer-card {
      display: grid;
      grid-template-rows: 172px 1fr;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 32, 0.11);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 14px 28px rgba(17, 24, 32, 0.055);
      text-align: left;
    }

    .hospital-offer-card figure {
      position: relative;
      z-index: 1;
      height: 172px;
      min-height: 0;
      margin: 0;
      overflow: hidden;
      background: #f5f8fa;
    }

    .hospital-offer-card figure img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
    }

    .hospital-offer-body {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 9px;
      align-content: start;
      padding: 0 14px 16px;
    }

    .hospital-card-icon {
      position: relative;
      z-index: 3;
      width: 50px;
      height: 50px;
      margin-top: -25px;
      padding: 9px;
      border: 1px solid rgba(0, 122, 61, 0.18);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 10px 20px rgba(17, 24, 32, 0.08);
    }

    .hospital-offer-card h3,
    .hospital-flow-step h3 {
      margin: 0;
      color: var(--hospital-ink);
      font-size: 17px;
      line-height: 1.22;
      letter-spacing: 0;
    }

    .hospital-offer-card p,
    .hospital-flow-step p,
    .hospital-kit-copy p,
    .hospital-implementation-item span,
    .hospital-final-copy p {
      margin: 0;
      color: var(--hospital-muted);
      font-size: 13px;
      font-weight: 650;
      line-height: 1.55;
    }

    .hospital-flow {
      display: grid;
      gap: 20px;
    }

    .hospital-flow-steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .hospital-flow-step {
      position: relative;
      display: grid;
      grid-template-rows: 132px auto;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 32, 0.11);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 14px 28px rgba(17, 24, 32, 0.052);
      text-align: left;
    }

    .hospital-flow-step:not(:last-child)::after {
      content: "\2192";
      position: absolute;
      top: 50%;
      right: -25px;
      z-index: 3;
      color: var(--hospital-green);
      font-size: 32px;
      font-weight: 800;
      transform: translateY(-50%);
    }

    .hospital-step-number {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: var(--hospital-green);
      color: #ffffff;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(0, 122, 61, 0.2);
    }

    .hospital-step-media {
      display: block;
      height: 132px;
      min-height: 0;
      margin: 0;
      background: #f5f8fa;
    }

    .hospital-step-media img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
    }

    .hospital-step-media[data-fit="contain"] img {
      object-fit: contain;
      padding: 8px;
      background: #ffffff;
    }

    .hospital-flow-body {
      display: grid;
      gap: 7px;
      align-content: start;
      padding: 14px;
    }

    .hospital-kit {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
      gap: 18px;
      align-items: center;
      padding: 12px 18px;
      border: 1px solid rgba(17, 24, 32, 0.1);
      border-radius: 8px;
      background: #ffffff;
    }

    .hospital-kit-visual {
      margin: 0;
    }

    .hospital-kit-visual img {
      display: block;
      width: 100%;
      max-height: 190px;
      object-fit: contain;
    }

    .hospital-kit-copy,
    .hospital-implementation-copy,
    .hospital-final-copy {
      display: grid;
      gap: 16px;
    }

    .hospital-kit-copy h2,
    .hospital-implementation-copy h2,
    .hospital-final-copy h2 {
      margin: 0;
      color: var(--hospital-ink);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(24px, 2.35vw, 34px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .hospital-kit-items {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 2px;
    }

    .hospital-kit-item {
      min-height: 74px;
      padding: 10px;
      border: 1px solid rgba(0, 122, 61, 0.12);
      border-radius: 8px;
      background: #f8fcfa;
    }

    .hospital-implementation {
      display: grid;
      grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
      gap: 24px;
      align-items: stretch;
    }

    .hospital-implementation-visual {
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
      background: #f5f8fa;
      min-height: 420px;
    }

    .hospital-implementation-visual img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    .hospital-implementation-copy {
      padding: 4px 0 0;
      gap: 14px;
    }

    .hospital-implementation-lead {
      margin: 0;
      max-width: 74ch;
      color: #2f414f;
      font-size: 14px;
      font-weight: 750;
      line-height: 1.62;
    }

    .hospital-implementation-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .hospital-implementation-item {
      --implementation-accent: var(--hospital-green);
      align-content: start;
      align-items: start;
      min-height: 156px;
      padding: 16px 14px;
      border: 1px solid rgba(17, 24, 32, 0.09);
      border-left: 4px solid var(--implementation-accent);
      border-radius: 8px;
      background: linear-gradient(135deg, #f2fbf6 0%, #ffffff 100%);
      box-shadow: 0 12px 24px rgba(17, 24, 32, 0.05);
    }

    .hospital-implementation-item[data-tone="blue"] {
      --implementation-accent: #1769b3;
      background: linear-gradient(135deg, #f1f8ff 0%, #ffffff 100%);
    }

    .hospital-implementation-item[data-tone="teal"] {
      --implementation-accent: #00857d;
      background: linear-gradient(135deg, #effbf9 0%, #ffffff 100%);
    }

    .hospital-implementation-item[data-tone="amber"] {
      --implementation-accent: #b97812;
      background: linear-gradient(135deg, #fff8ec 0%, #ffffff 100%);
    }

    .hospital-implementation-item .hospital-icon {
      width: 36px;
      height: 36px;
    }

    .hospital-implementation-item span {
      display: block;
      margin-top: 6px;
      color: #344553;
      font-size: 13px;
      line-height: 1.48;
    }

    .hospital-implementation-highlight {
      display: grid;
      gap: 9px;
      padding: 18px 20px;
      border-radius: 8px;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0 18%, transparent 18% 100%),
        linear-gradient(135deg, #006d36 0%, #008244 66%, #00a05a 100%);
      box-shadow: 0 18px 34px rgba(0, 109, 54, 0.16);
      color: #ffffff;
      text-align: left;
    }

    .hospital-implementation-highlight > span {
      color: #d9fbe8;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .hospital-implementation-highlight strong {
      color: #ffffff;
      font-size: 20px;
      line-height: 1.18;
    }

    .hospital-implementation-highlight p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 750;
      line-height: 1.55;
    }

    .hospital-implementation-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
    }

    .hospital-implementation-points li {
      padding: 7px 10px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.2;
    }

    .hospital-disclaimer {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      margin: 0;
      padding: 12px 18px;
      border: 1px solid rgba(0, 122, 61, 0.1);
      border-radius: 8px;
      background: #eaf6ef;
      color: var(--hospital-green-dark);
      font-weight: 900;
      line-height: 1.45;
      text-align: left;
    }

    .hospital-disclaimer::before {
      content: "i";
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 2px solid currentColor;
      border-radius: 999px;
      font-family: Georgia, serif;
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }

    .hospital-final-cta {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
      gap: 20px;
      align-items: stretch;
      overflow: hidden;
      padding: 22px;
      border-radius: 8px;
      background: linear-gradient(135deg, #006d36 0%, #008244 100%);
      color: #ffffff;
    }

    .hospital-final-copy {
      position: relative;
      grid-template-columns: minmax(0, 1fr) 160px;
      align-items: end;
      min-height: 255px;
    }

    .hospital-final-copy::after {
      content: "";
      position: absolute;
      right: -18px;
      bottom: -22px;
      width: 220px;
      height: 165px;
      border-radius: 8px 0 0 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .hospital-final-text {
      display: grid;
      gap: 14px;
      align-content: center;
      align-self: center;
      padding: 8px 0;
    }

    .hospital-final-copy h2,
    .hospital-final-copy p {
      color: inherit;
    }

    .hospital-final-copy p {
      max-width: 38ch;
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
    }

    .hospital-response-badge {
      display: inline-grid;
      grid-template-columns: 28px minmax(0, auto);
      gap: 10px;
      align-items: center;
      width: fit-content;
      color: #ffffff;
      font-weight: 900;
      line-height: 1.2;
    }

    .hospital-response-badge::before {
      content: "";
      width: 28px;
      height: 28px;
      border: 2px solid rgba(255, 255, 255, 0.92);
      border-radius: 999px;
      background: linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.92) 50% 56%, transparent 57%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.92) 50% 56%, transparent 57%);
    }

    .hospital-cta-doctor {
      align-self: end;
      justify-self: end;
      position: relative;
      z-index: 1;
      width: min(230px, 100%);
      max-height: 300px;
      object-fit: contain;
      object-position: bottom right;
      filter: drop-shadow(0 18px 24px rgba(0, 39, 18, 0.28));
    }

    .hospital-demo-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      align-content: start;
      padding: 12px;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 34px rgba(0, 32, 15, 0.18);
    }

    .hospital-demo-form label {
      display: grid;
      gap: 0;
      margin: 0;
    }

    .hospital-demo-form input,
    .hospital-demo-form select,
    .hospital-demo-form textarea {
      width: 100%;
      min-height: 42px;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 6px;
      padding: 10px 11px;
      background: #ffffff;
      color: #17242f;
      font: 750 13px/1.25 "Manrope", "Segoe UI", sans-serif;
    }

    .hospital-demo-form select {
      appearance: auto;
    }

    .hospital-demo-form textarea {
      min-height: 76px;
      resize: vertical;
    }

    .hospital-form-wide,
    .hospital-demo-form button {
      grid-column: 1 / -1;
    }

    .hospital-demo-form button {
      min-height: 46px;
      border-radius: 6px;
      border: 1px solid var(--hospital-green);
      background: var(--hospital-green);
      color: #ffffff;
      font-weight: 900;
      box-shadow: none;
    }

    .hospital-demo-form .muted {
      display: block;
      margin-top: 5px;
      color: #9f2f2f;
      font-size: 12px;
    }

    @media (max-width: 900px) {
      .hospital-hero,
      .hospital-final-cta,
      .hospital-kit,
      .hospital-implementation {
        grid-template-columns: 1fr;
      }

      .hospital-hero-copy {
        justify-items: center;
        text-align: center;
      }

      .hospital-hero h1,
      .hospital-hero .lead {
        max-width: 780px;
      }

      .hospital-actions {
        justify-content: center;
      }

      .hospital-proof-strip,
      .hospital-flow-steps,
      .hospital-implementation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hospital-offer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hospital-proof-item:nth-child(2),
      .hospital-implementation-item:nth-child(2) {
        border-right: none;
      }

      .hospital-proof-item:nth-child(-n + 2),
      .hospital-implementation-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(17, 24, 32, 0.09);
      }

      .hospital-implementation-item:nth-child(2) {
        border-right: 1px solid rgba(17, 24, 32, 0.09);
      }

      .hospital-final-copy {
        grid-template-columns: minmax(0, 1fr) 210px;
      }
    }

    @media (max-width: 760px) {
      .hospital-landing {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        gap: 22px;
        padding: 22px 14px 0;
      }

      .hospital-hero {
        gap: 22px;
        min-height: auto;
        width: 100%;
        min-width: 0;
        max-width: 100%;
      }

      .hospital-hero-copy {
        gap: 16px;
        min-width: 0;
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        justify-self: start;
      }

      .hospital-eyebrow {
        max-width: 100%;
        text-align: center;
        line-height: 1.25;
      }

      .hospital-hero h1 {
        max-width: min(100%, 280px);
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(26px, 7vw, 30px);
        line-height: 1.08;
        overflow-wrap: break-word;
      }

      .hospital-hero .lead {
        max-width: min(100%, 286px);
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
        line-height: 1.58;
        overflow-wrap: break-word;
      }

      .hospital-actions,
      .hospital-actions .button {
        width: 100%;
      }

      .hospital-actions {
        max-width: 280px;
      }

      .hospital-actions .button {
        min-width: 0;
      }

      .hospital-hero-visual,
      .hospital-proof-strip,
      .hospital-offer-grid,
      .hospital-flow-steps,
      .hospital-kit-items,
      .hospital-implementation-grid,
      .hospital-demo-form {
        grid-template-columns: 1fr;
      }

      .hospital-hero-visual,
      .hospital-hero-media,
      .hospital-hero-panel,
      .hospital-proof-strip,
      .hospital-offer-grid,
      .hospital-flow-steps,
      .hospital-kit,
      .hospital-implementation,
      .hospital-final-cta {
        width: 100%;
        min-width: 0;
        max-width: 100%;
      }

      .hospital-hero-media,
      .hospital-hero-media img {
        min-height: 330px;
      }

      .hospital-hero-panel {
        margin: -72px 12px 0;
      }

      .hospital-proof-item,
      .hospital-proof-item:nth-child(2),
      .hospital-implementation-item,
      .hospital-implementation-item:nth-child(2) {
        border-right: none;
      }

      .hospital-proof-item,
      .hospital-implementation-item {
        min-height: auto;
        padding: 14px 0;
        border-bottom: 1px solid rgba(17, 24, 32, 0.09);
      }

      .hospital-proof-item:last-child,
      .hospital-implementation-item:last-child {
        border-bottom: none;
      }

      .hospital-implementation-visual,
      .hospital-implementation-visual img {
        min-height: 280px;
      }

      .hospital-implementation-item,
      .hospital-implementation-item:nth-child(2),
      .hospital-implementation-item:last-child {
        padding: 16px 14px;
        border: 1px solid rgba(17, 24, 32, 0.09);
        border-left: 4px solid var(--implementation-accent);
        border-radius: 8px;
      }

      .hospital-implementation-highlight {
        padding: 16px;
      }

      .hospital-flow-step:not(:last-child)::after {
        right: auto;
        top: auto;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
      }

      .hospital-kit,
      .hospital-final-cta {
        padding: 18px;
      }

      .hospital-implementation-copy {
        padding: 0;
      }

      .hospital-final-copy {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hospital-final-copy::after {
        display: none;
      }

      .hospital-cta-doctor {
        display: none;
      }

      .hospital-form-wide,
      .hospital-demo-form button {
        grid-column: auto;
      }
    }

    .school-landing {
      display: grid;
      gap: 28px;
    }

    .school-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
      gap: 34px;
      align-items: center;
      min-height: 560px;
    }

    .school-hero-copy {
      display: grid;
      gap: 24px;
      text-align: left;
    }

    .school-eyebrow {
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(0, 122, 61, 0.1);
      color: #006d36;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .school-hero h1 {
      max-width: 15.4ch;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(38px, 4.2vw, 58px);
      line-height: 1.09;
      letter-spacing: 0;
      color: #101820;
    }

    .school-hero h1 span {
      display: block;
      color: #007a3d;
    }

    .school-hero-copy .lead {
      max-width: 60ch;
      color: #24323d;
      font-size: clamp(16px, 1.25vw, 19px);
      line-height: 1.75;
    }

    .school-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      margin-top: 2px;
    }

    .school-actions .button {
      min-width: 230px;
      border-radius: 10px;
    }

    .school-hero .school-actions .button:not(.secondary) {
      background: #007a3d;
      color: #ffffff;
      border-color: #007a3d;
      box-shadow: 0 18px 36px rgba(0, 122, 61, 0.18);
    }

    .school-actions .button.secondary {
      background: #ffffff;
      color: #007a3d;
      border-color: rgba(0, 122, 61, 0.36);
      box-shadow: none;
    }

    .school-hero-media {
      position: relative;
      min-height: 560px;
      border-radius: 38px;
      background: #f6f4ed;
      overflow: hidden;
      isolation: isolate;
    }

    .school-hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 12%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, #ffffff 100%);
      pointer-events: none;
    }

    .school-hero-media img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .school-floating-stack {
      position: absolute;
      top: 18px;
      right: 16px;
      z-index: 2;
      display: grid;
      gap: 14px;
      width: min(370px, calc(52% - 10px));
    }

    .school-float-card {
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 16px 18px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 24, 32, 0.08);
      box-shadow: 0 18px 42px rgba(17, 24, 32, 0.16);
      text-align: left;
    }

    .school-float-card strong,
    .school-float-card span {
      display: block;
    }

    .school-float-card strong {
      color: #111820;
      line-height: 1.25;
      margin-bottom: 5px;
    }

    .school-float-card span {
      color: #3f4d58;
      font-size: 14px;
      line-height: 1.4;
    }

    .school-bullet-stack {
      width: min(390px, calc(48% - 10px));
      gap: 0;
      padding: 22px 24px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(17, 24, 32, 0.1);
      box-shadow: 0 24px 54px rgba(17, 24, 32, 0.16);
      backdrop-filter: blur(8px);
    }

    .school-hero-bullets {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .school-hero-bullets li {
      position: relative;
      padding-left: 24px;
      color: #111820;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.01em;
    }

    .school-hero-bullets li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #007a3d;
      box-shadow: 0 0 0 4px rgba(0, 122, 61, 0.1);
    }

    .school-proof-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      align-items: center;
      margin-top: -8px;
    }

    .school-proof-item {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      text-align: left;
    }

    .school-proof-item strong,
    .school-proof-item span {
      display: block;
      line-height: 1.25;
    }

    .school-proof-item strong {
      color: #111820;
    }

    .school-proof-item span {
      color: #52606b;
      font-size: 13px;
    }

    .school-flow {
      display: grid;
      gap: 20px;
    }

    .school-flow-steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .school-flow-steps.is-compact {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .school-flow-step {
      position: relative;
      display: grid;
      gap: 12px;
      align-content: start;
      min-height: 270px;
      padding: 30px 18px 20px;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 12px;
      background: #ffffff;
      text-align: center;
      box-shadow: 0 14px 28px rgba(17, 24, 32, 0.05);
    }

    .school-flow-step .hotel-icon {
      width: 68px;
      height: 68px;
      margin: 2px auto 0;
    }

    .school-flow-image {
      width: 100%;
      height: 82px;
      object-fit: contain;
      border-radius: 10px;
      background: #f8fbf8;
      margin-top: 4px;
    }

    .school-flow-step:not(:last-child)::after {
      content: "\2192";
      position: absolute;
      right: -18px;
      top: 50%;
      transform: translateY(-50%);
      color: #007a3d;
      font-size: 28px;
    }

    .school-flow-step h3 {
      font-size: 17px;
      letter-spacing: 0;
      line-height: 1.22;
    }

    .school-flow-step p {
      color: #3f4d58;
      font-size: 14px;
      line-height: 1.48;
    }

    .school-environment-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
      gap: 18px;
      align-items: stretch;
    }

    .school-kit-panel,
    .school-environment-panel {
      border: 1px solid rgba(17, 24, 32, 0.09);
      border-radius: 14px;
      background: linear-gradient(135deg, #f7fbf8 0%, #ffffff 100%);
      box-shadow: 0 16px 32px rgba(17, 24, 32, 0.06);
    }

    .school-kit-panel {
      display: grid;
      place-items: center;
      overflow: hidden;
      min-height: 245px;
    }

    .school-kit-panel img {
      width: 100%;
      height: 100%;
      min-height: 245px;
      object-fit: cover;
      object-position: center;
    }

    .school-environment-panel {
      display: grid;
      gap: 18px;
      padding: 24px;
      text-align: center;
    }

    .school-environment-panel h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(24px, 2.4vw, 34px);
      letter-spacing: -0.05em;
    }

    .school-environment-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .school-environment-card {
      display: grid;
      gap: 10px;
      align-content: start;
      min-height: 168px;
      padding: 18px 14px;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid rgba(0, 122, 61, 0.12);
      text-align: center;
    }

    .school-environment-card .hotel-icon {
      margin: 0 auto;
    }

    .school-environment-card h3 {
      font-size: 17px;
      letter-spacing: -0.03em;
    }

    .school-environment-card p {
      color: #3f4d58;
      font-size: 13px;
      line-height: 1.45;
    }

    .school-audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .school-audience-grid.is-two-column {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .school-audience-card {
      --audience-color: #007a3d;
      display: grid;
      grid-template-columns: 155px minmax(0, 1fr);
      overflow: hidden;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(0, 122, 61, 0.08), #ffffff 74%);
      border: 1px solid rgba(17, 24, 32, 0.1);
      box-shadow: 0 16px 32px rgba(17, 24, 32, 0.06);
      text-align: left;
    }

    .school-audience-card[data-tone="blue"] {
      --audience-color: #185fae;
      background: linear-gradient(135deg, rgba(24, 95, 174, 0.09), #ffffff 74%);
    }

    .school-audience-card[data-tone="orange"] {
      --audience-color: #d6841b;
      background: linear-gradient(135deg, rgba(214, 132, 27, 0.12), #ffffff 74%);
    }

    .school-audience-card img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      object-fit: cover;
      object-position: center;
    }

    .school-audience-content {
      display: grid;
      gap: 14px;
      padding: 22px;
    }

    .school-audience-content h3 {
      color: var(--audience-color);
      font-size: 20px;
      letter-spacing: 0;
      line-height: 1.2;
    }

    .school-audience-content ul,
    .school-guidance-panel ul {
      display: grid;
      gap: 11px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .school-audience-content li,
    .school-guidance-panel li {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 9px;
      color: #25333f;
      line-height: 1.42;
      font-size: 14px;
    }

    .school-audience-content li::before,
    .school-guidance-panel li::before {
      content: "\2713";
      width: 18px;
      height: 18px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--audience-color, #007a3d);
      color: #ffffff;
      font-size: 11px;
      font-weight: 900;
      margin-top: 1px;
    }

    .school-guidance-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .school-guidance-panel {
      --audience-color: #007a3d;
      display: grid;
      gap: 20px;
      padding: 28px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 94% 75%, rgba(0, 122, 61, 0.12), transparent 24%),
        linear-gradient(135deg, #f5fbf7 0%, #ffffff 100%);
      border: 1px solid rgba(0, 122, 61, 0.1);
      text-align: left;
    }

    .school-guidance-panel[data-tone="red"] {
      --audience-color: #bf1f2f;
      background:
        radial-gradient(circle at 94% 75%, rgba(191, 31, 47, 0.12), transparent 24%),
        linear-gradient(135deg, #fff6f6 0%, #ffffff 100%);
      border-color: rgba(191, 31, 47, 0.12);
    }

    .school-guidance-panel h3 {
      color: var(--audience-color);
      font-size: 22px;
      letter-spacing: 0;
    }

    .camp-landing .school-guidance-panel h3 {
      max-width: 19ch;
      margin: 0 auto;
      text-align: center;
      text-wrap: balance;
    }

    .school-guidance-panel .school-panel-icon-list {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      align-items: start;
    }

    .school-guidance-panel .school-panel-icon-list li {
      grid-template-columns: 1fr;
      gap: 9px;
      justify-items: center;
      align-items: start;
      text-align: center;
      font-size: 13px;
      line-height: 1.28;
    }

    .school-guidance-panel .school-panel-icon-list li::before {
      content: none;
      display: none;
    }

    .school-panel-item-icon {
      width: 38px;
      height: 38px;
      color: var(--audience-color, #007a3d);
    }

    .school-disclaimer {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      color: #5b6873;
      text-align: center;
      font-weight: 700;
    }

    .school-disclaimer::before {
      content: "i";
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      border: 1px solid currentColor;
      font-size: 13px;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .school-final-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .school-testimonial {
      display: grid;
      align-content: center;
      gap: 18px;
      padding: 30px;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid rgba(17, 24, 32, 0.09);
      box-shadow: 0 16px 32px rgba(17, 24, 32, 0.06);
      text-align: left;
    }

    .school-testimonial blockquote {
      margin: 0;
      color: #16222d;
      font-size: 19px;
      line-height: 1.55;
      font-weight: 700;
    }

    .school-testimonial blockquote::before {
      content: "\201C";
      display: block;
      color: #007a3d;
      font-size: 74px;
      line-height: 0.7;
      font-family: Georgia, serif;
    }

    .school-testimonial strong,
    .school-testimonial span {
      display: block;
    }

    .school-testimonial span {
      color: #66737d;
      margin-top: 4px;
    }

    .school-testimonial-author {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
    }

    .school-testimonial-photo {
      width: 58px;
      height: 58px;
      border-radius: 999px;
      object-fit: cover;
      box-shadow: 0 10px 20px rgba(17, 24, 32, 0.12);
    }

    .school-demo-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
      gap: 20px;
      padding: 30px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 95% 15%, rgba(255, 255, 255, 0.14), transparent 24%),
        linear-gradient(135deg, #006d36 0%, #008d46 100%);
      color: #ffffff;
      box-shadow: 0 24px 48px rgba(0, 109, 54, 0.22);
      text-align: left;
    }

    .school-demo-card > div {
      align-self: end;
    }

    .school-demo-card h2 {
      color: inherit;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(25px, 2.55vw, 34px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .school-demo-card p {
      max-width: 58ch;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.55;
      font-weight: 700;
    }

    .school-demo-form {
      display: grid;
      grid-column: 2;
      grid-row: 1 / span 2;
      align-self: center;
      align-content: start;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.94);
    }

    .school-demo-form label {
      display: grid;
      gap: 6px;
      color: #1f2b35;
      font-size: 12px;
      font-weight: 900;
    }

    .school-demo-form input,
    .school-demo-form textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 8px;
      padding: 11px 12px;
      background: #ffffff;
      color: #111820;
      font: 800 12px/1.25 "Manrope", "Segoe UI", sans-serif;
    }

    .school-demo-form textarea {
      min-height: 86px;
      resize: vertical;
    }

    .school-demo-form button {
      grid-column: 1 / -1;
      border-radius: 8px;
      background: #007a3d;
      color: #ffffff;
      border-color: #007a3d;
      box-shadow: none;
    }

    .school-demo-badges {
      display: flex;
      flex-wrap: wrap;
      align-self: start;
      gap: 16px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 800;
    }

    .school-demo-badges li::before {
      content: "\2713";
      margin-right: 8px;
    }

    .school-agent-strip {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 14px 18px;
      border: 1px solid rgba(0, 122, 61, 0.22);
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(0, 122, 61, 0.08), #ffffff);
      color: #17242f;
    }

    .school-agent-strip span {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .school-agent-strip small {
      color: #007a3d;
      font-size: 11px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .school-agent-strip strong {
      font-size: 15px;
      font-weight: 950;
      overflow-wrap: anywhere;
    }

    .school-agent-strip em {
      color: #52606b;
      font-size: 12px;
      font-style: normal;
      font-weight: 800;
    }

    .school-agent-hero-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      width: min(100%, 560px);
      padding: 14px;
      border: 1px solid rgba(0, 122, 61, 0.22);
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 18px 36px rgba(16, 24, 32, 0.08);
    }

    .school-agent-avatar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: #007a3d;
      color: #ffffff;
      font-size: 16px;
      font-weight: 950;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .school-agent-hero-card span {
      min-width: 0;
      display: grid;
      gap: 3px;
    }

    .school-agent-hero-card small {
      color: #007a3d;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .school-agent-hero-card strong {
      color: #101820;
      font-size: 15px;
      font-weight: 950;
      overflow-wrap: anywhere;
    }

    .school-agent-hero-card em {
      color: #52606b;
      font-size: 12px;
      font-style: normal;
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .camp-landing {
      --camp-green: #007a3d;
      --camp-green-dark: #005f32;
      --camp-ink: #101820;
      --camp-muted: #52616d;
      gap: clamp(20px, 2vw, 30px);
      grid-template-columns: minmax(0, 1fr);
      padding: 20px clamp(18px, 2.4vw, 34px) 0;
      overflow-x: clip;
    }

    .camp-landing .school-hero {
      grid-template-columns: minmax(390px, 0.74fr) minmax(560px, 1.26fr);
      gap: clamp(22px, 2.5vw, 38px);
      align-items: stretch;
      min-height: auto;
      padding: clamp(22px, 2.5vw, 38px);
      border: 1px solid rgba(0, 122, 61, 0.12);
      border-radius: 30px;
      background:
        radial-gradient(circle at 12% 20%, rgba(0, 122, 61, 0.08), transparent 30%),
        linear-gradient(135deg, #f2fbf6 0%, #ffffff 48%, #f7fbf8 100%);
      box-shadow: 0 20px 44px rgba(17, 24, 32, 0.07);
      overflow: hidden;
    }

    .camp-landing .school-hero,
    .camp-landing .school-hero-copy,
    .camp-landing .school-hero-media {
      min-width: 0;
    }

    .camp-landing .school-hero-copy {
      align-content: center;
      gap: clamp(16px, 1.8vw, 24px);
      max-width: 690px;
    }

    .camp-landing .school-hero h1 {
      max-width: 12.6ch;
      font-size: clamp(42px, 3.7vw, 64px);
      line-height: 1.04;
    }

    .camp-landing .school-hero-copy .lead {
      max-width: 52ch;
      font-size: clamp(16px, 1.05vw, 19px);
      line-height: 1.58;
    }

    .camp-landing .school-actions {
      gap: 14px;
    }

    .camp-landing .school-actions .button {
      min-width: 220px;
      min-height: 54px;
      padding: 14px 22px;
    }

    .camp-landing .camp-video-trigger {
      cursor: pointer;
      justify-content: center;
      gap: 10px;
    }

    .camp-landing .camp-video-trigger .bizinfo-play-mark {
      background: rgba(0, 122, 61, 0.1);
    }

    .camp-landing .school-hero-media {
      height: clamp(620px, 42vw, 760px);
      min-height: clamp(620px, 42vw, 760px);
      border-radius: 24px;
      background: #edf7f1;
      box-shadow: 0 18px 42px rgba(17, 24, 32, 0.12);
    }

    .camp-landing .school-hero-media::before {
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.34) 12%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.36) 100%);
    }

    .camp-landing .school-hero-media img {
      height: 100%;
      min-height: 0;
      object-position: center 58%;
    }

    .camp-bullet-stack {
      top: auto;
      right: 18px;
      bottom: 18px;
      width: min(315px, calc(50% - 16px));
      padding: 14px 16px;
      border-radius: 16px;
    }

    .camp-bullet-stack .school-hero-bullets {
      gap: 10px;
    }

    .camp-bullet-stack .school-hero-bullets li {
      padding-left: 20px;
      font-size: 14px;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .camp-icon {
      display: block;
      object-fit: contain;
    }

    .camp-landing .hotel-benefit-card .camp-icon,
    .camp-landing .school-flow-step .camp-icon {
      margin-left: auto;
      margin-right: auto;
    }

    .camp-landing .school-flow-step .camp-icon {
      width: 70px;
      height: 70px;
    }

    .camp-landing .school-audience-card img {
      object-position: center;
    }

    .camp-landing .school-proof-strip {
      max-width: 1320px;
      width: 100%;
      margin: 0 auto;
      padding: 16px 20px;
      border: 1px solid rgba(17, 24, 32, 0.08);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 28px rgba(17, 24, 32, 0.05);
    }

    .camp-landing .school-proof-item {
      grid-template-columns: 38px minmax(0, 1fr);
      padding: 6px 10px;
    }

    .camp-landing .school-proof-item .camp-icon {
      width: 34px;
      height: 34px;
    }

    .camp-landing .school-proof-item strong {
      font-size: 15px;
    }

    .camp-landing .hotel-metrics {
      align-items: stretch;
      max-width: 1320px;
      margin: 0 auto;
      padding: 14px 18px;
      border-radius: 18px;
      background: #ffffff;
      border: 1px solid rgba(17, 24, 32, 0.08);
      box-shadow: 0 14px 30px rgba(17, 24, 32, 0.05);
    }

    .camp-landing .hotel-metric {
      grid-template-columns: 42px minmax(0, 1fr);
      justify-content: start;
      gap: 14px;
      align-items: center;
      min-height: 92px;
      padding: 8px 18px;
    }

    .camp-landing .hotel-metric .camp-icon {
      width: 38px;
      height: 38px;
      justify-self: center;
    }

    .camp-landing .hotel-metric div {
      display: grid;
      align-content: center;
      min-height: auto;
    }

    .camp-landing .hotel-metric strong {
      display: block;
      min-height: 0;
      max-width: none;
      font-size: clamp(18px, 1.45vw, 23px);
      line-height: 1.14;
      letter-spacing: 0;
      margin-bottom: 0;
      text-wrap: balance;
    }

    .camp-landing .hotel-metric span {
      display: block;
      margin-top: 5px;
      color: var(--camp-muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .camp-benefit-system {
      position: relative;
      display: grid;
      grid-template-columns: minmax(220px, 0.9fr) minmax(270px, 1.05fr) minmax(220px, 0.9fr);
      grid-template-areas:
        "benefit-1 hub benefit-2"
        "benefit-3 hub benefit-4";
      gap: 18px 22px;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
      padding: 24px;
      border: 1px solid rgba(0, 122, 61, 0.12);
      border-radius: 24px;
      background:
        radial-gradient(circle at 50% 50%, rgba(0, 122, 61, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 248, 241, 0.92));
      box-shadow: 0 18px 38px rgba(17, 24, 32, 0.07);
      overflow: hidden;
    }

    .camp-benefit-system::before {
      content: "";
      position: absolute;
      inset: 48px 76px;
      border: 1px dashed rgba(0, 122, 61, 0.22);
      border-radius: 999px;
      pointer-events: none;
    }

    .camp-benefit-hub,
    .camp-benefit-card {
      position: relative;
      z-index: 1;
    }

    .camp-benefit-hub {
      grid-area: hub;
      display: grid;
      gap: 12px;
      place-items: center;
      align-content: center;
      min-height: 300px;
      padding: 28px 26px;
      border-radius: 26px;
      background:
        radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(150deg, #006d36, #008d46);
      color: #ffffff;
      text-align: center;
      box-shadow: 0 20px 42px rgba(0, 109, 54, 0.2);
    }

    .camp-benefit-hub .camp-icon {
      width: 68px;
      height: 68px;
      padding: 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      filter: brightness(0) invert(1);
    }

    .camp-benefit-kicker {
      color: rgba(255, 255, 255, 0.82);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .camp-benefit-hub h3 {
      max-width: 15ch;
      color: inherit;
      font-size: clamp(25px, 2.25vw, 34px);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }

    .camp-benefit-hub p {
      max-width: 28ch;
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      line-height: 1.42;
      font-weight: 750;
    }

    .camp-benefit-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      max-width: 230px;
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
    }

    .camp-benefit-tags li {
      padding: 7px 10px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.94);
      font-size: 12px;
      font-weight: 850;
      line-height: 1;
    }

    .camp-benefit-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 15px;
      align-items: start;
      padding: 18px;
      border: 1px solid rgba(17, 24, 32, 0.08);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 12px 26px rgba(17, 24, 32, 0.055);
      text-align: left;
    }

    .camp-benefit-card[data-index="1"] {
      grid-area: benefit-1;
    }

    .camp-benefit-card[data-index="2"] {
      grid-area: benefit-2;
    }

    .camp-benefit-card[data-index="3"] {
      grid-area: benefit-3;
    }

    .camp-benefit-card[data-index="4"] {
      grid-area: benefit-4;
    }

    .camp-benefit-card .camp-icon {
      width: 54px;
      height: 54px;
      padding: 11px;
      border-radius: 16px;
      background: rgba(0, 122, 61, 0.09);
    }

    .camp-benefit-card h3 {
      color: #10212d;
      font-size: 18px;
      line-height: 1.16;
      letter-spacing: 0;
    }

    .camp-benefit-card p {
      margin-top: 8px;
      color: #4b5b67;
      font-size: 14px;
      line-height: 1.5;
    }

    .camp-landing .school-flow {
      max-width: 1320px;
      margin: 0 auto;
    }

    .camp-landing .school-flow-steps {
      gap: 14px;
    }

    .camp-landing .school-flow-step {
      min-height: 216px;
      padding: 26px 16px 18px;
      border-radius: 14px;
      box-shadow: 0 10px 22px rgba(17, 24, 32, 0.045);
    }

    .camp-landing .school-flow-step h3 {
      font-size: 16px;
    }

    .camp-landing .school-flow-step p {
      font-size: 13px;
      line-height: 1.42;
    }

    .camp-audience-stage {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
      max-width: 1320px;
      margin: 0 auto;
    }

    .camp-audience-panel {
      --audience-color: #007a3d;
      display: grid;
      overflow: hidden;
      border-radius: 18px;
      background: #ffffff;
      border: 1px solid rgba(17, 24, 32, 0.1);
      box-shadow: 0 14px 30px rgba(17, 24, 32, 0.06);
      text-align: left;
    }

    .camp-audience-panel[data-tone="blue"] {
      --audience-color: #185fae;
    }

    .camp-audience-panel[data-tone="orange"] {
      --audience-color: #c9821d;
    }

    .camp-audience-image {
      position: relative;
      min-height: 230px;
      overflow: hidden;
      background: rgba(0, 122, 61, 0.08);
    }

    .camp-audience-image::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 38%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 92%);
      pointer-events: none;
    }

    .camp-audience-image img {
      width: 100%;
      height: 100%;
      min-height: 230px;
      object-fit: cover;
      object-position: center;
    }

    .camp-audience-content {
      display: grid;
      gap: 16px;
      padding: 22px;
      background:
        radial-gradient(circle at 96% 0%, color-mix(in srgb, var(--audience-color) 15%, transparent), transparent 30%),
        #ffffff;
    }

    .camp-audience-content h3 {
      color: var(--audience-color);
      font-size: 24px;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .camp-audience-content ul {
      display: grid;
      gap: 11px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .camp-audience-content li {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      color: #25333f;
      font-size: 14px;
      line-height: 1.42;
    }

    .camp-audience-content li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 0.45em;
      border-radius: 999px;
      background: var(--audience-color);
      box-shadow: 0 0 0 5px color-mix(in srgb, var(--audience-color) 12%, transparent);
    }

    .camp-landing #contacto-comercial {
      scroll-margin-top: 128px;
    }

    .camp-video-dialog {
      width: min(980px, calc(100vw - 32px));
      padding: 0;
      border: 0;
      border-radius: 14px;
      background: #06130d;
      color: #ffffff;
      overflow: hidden;
      box-shadow: 0 34px 86px rgba(0, 24, 12, 0.42);
    }

    .camp-video-dialog[open] {
      position: fixed;
      inset: 50% auto auto 50%;
      margin: 0;
      transform: translate(-50%, -50%);
    }

    .camp-video-dialog::backdrop {
      background: rgba(6, 19, 13, 0.72);
      backdrop-filter: blur(4px);
    }

    .camp-video-shell {
      position: relative;
      display: grid;
      background: #06130d;
    }

    .camp-video-shell video {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: min(78dvh, 720px);
      background: #06130d;
    }

    .camp-video-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 40px;
      min-width: 40px;
      max-width: 40px;
      min-height: 40px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.52);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.94);
      color: #0b1720;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
      font-size: 25px;
      line-height: 1;
      cursor: pointer;
    }

    .camp-video-close:hover {
      transform: none;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    }

    .camp-panel-item-icon {
      width: 42px;
      height: 42px;
    }

    .camp-landing .hotel-section-heading {
      margin-top: 2px;
    }

    .camp-landing .school-final-grid {
      max-width: 1320px;
      margin: 0 auto;
      grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
      gap: 24px;
      padding: clamp(24px, 2.4vw, 34px);
      border-radius: 24px;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #006d36 0%, #008d46 100%);
      box-shadow: 0 24px 48px rgba(0, 109, 54, 0.2);
    }

    .camp-landing .school-testimonial {
      align-content: center;
      padding: 8px 10px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      color: #ffffff;
    }

    .camp-landing .school-testimonial blockquote {
      color: #ffffff;
      font-size: clamp(19px, 1.55vw, 25px);
      line-height: 1.42;
    }

    .camp-landing .school-testimonial blockquote::before {
      color: rgba(255, 255, 255, 0.72);
      font-size: 50px;
    }

    .camp-landing .school-testimonial span {
      color: rgba(255, 255, 255, 0.72);
    }

    .camp-landing .school-testimonial-photo {
      padding: 0;
      background: transparent;
      box-shadow: none;
      object-fit: contain;
    }

    .camp-landing .school-demo-card {
      grid-template-columns: minmax(0, 1fr) !important;
      align-content: start;
      gap: 16px;
      padding: clamp(18px, 1.8vw, 24px);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.97);
      color: var(--camp-ink);
      box-shadow: 0 16px 34px rgba(17, 24, 32, 0.12);
    }

    .camp-landing .school-demo-card > div,
    .camp-landing .school-demo-badges {
      align-self: start;
    }

    .camp-landing .school-demo-card h2 {
      max-width: none;
      color: var(--camp-ink);
      font-size: clamp(25px, 2.05vw, 34px);
    }

    .camp-landing .school-demo-card p {
      color: #40515d;
      font-weight: 750;
    }

    .camp-landing .school-demo-form {
      grid-column: 1 / -1 !important;
      grid-row: auto !important;
      width: 100%;
      padding: 0;
      background: transparent;
    }

    .camp-landing .school-demo-badges {
      color: var(--camp-green-dark);
    }

    .school-demo-form .camp-form-wide {
      grid-column: 1 / -1;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .business-landing {
      display: grid;
      gap: 28px;
      max-width: 1920px;
      padding-top: 28px;
    }

    .business-hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
      gap: 0;
      align-items: start;
      min-height: 760px;
      margin: 0;
      padding: 72px 36px 48px;
      overflow: hidden;
      isolation: isolate;
      background: #ffffff;
    }

    .business-hero .school-hero-copy {
      position: relative;
      z-index: 3;
      max-width: 700px;
      justify-items: start;
      text-align: left;
      gap: 32px;
    }

    .business-hero .school-hero h1,
    .business-hero h1 {
      max-width: 17.5ch;
      font-size: clamp(48px, 3.55vw, 68px);
      line-height: 1.12;
      letter-spacing: -0.055em;
    }

    .business-hero .lead {
      max-width: 62ch;
      font-size: clamp(17px, 1.12vw, 22px);
      line-height: 1.78;
    }

    .business-hero .school-actions {
      gap: 28px;
      margin-top: 14px;
    }

    .business-hero .school-actions .button {
      min-width: 255px;
      min-height: 64px;
      border-radius: 8px;
      font-size: 17px;
    }

    .business-hero .school-actions .button:not(.secondary) {
      background: #007a3d;
      border-color: #007a3d;
      color: #ffffff;
      box-shadow: 0 18px 34px rgba(0, 122, 61, 0.22);
    }

    .business-hero .school-actions .button:not(.secondary)::after {
      content: "\2192";
      font-size: 30px;
      line-height: 1;
      margin-left: 8px;
    }

    .business-hero .school-actions .button.secondary {
      background: rgba(255, 255, 255, 0.86);
      border-color: rgba(0, 122, 61, 0.42);
      color: #007a3d;
    }

    .business-hero .school-actions .button.secondary::before {
      content: none;
    }

    .business-button-icon {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      flex: 0 0 auto;
    }

    .business-hero-media {
      position: absolute;
      inset: 0 0 0 37%;
      z-index: 1;
      min-height: auto;
      border-radius: 0 38px 38px 0;
      overflow: hidden;
      background: #f4f1e8;
    }

    .business-hero-media::before {
      background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 11%, rgba(255, 255, 255, 0.5) 28%, rgba(255, 255, 255, 0) 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #ffffff 100%);
    }

    .business-hero-media img {
      min-height: 100%;
      height: 100%;
      border-radius: 0;
      object-fit: cover;
      object-position: center;
    }

    .business-floating-stack {
      top: 52px;
      right: 36px;
      width: min(390px, 22vw);
      gap: 0;
      padding: 22px 24px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(17, 24, 32, 0.1);
      box-shadow: 0 24px 54px rgba(17, 24, 32, 0.16);
      backdrop-filter: blur(8px);
    }

    .business-hero-bullets {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .business-hero-bullets li {
      position: relative;
      padding-left: 24px;
      color: #111820;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -0.01em;
    }

    .business-hero-bullets li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #007a3d;
      box-shadow: 0 0 0 4px rgba(0, 122, 61, 0.1);
    }

    .business-proof-strip {
      width: 100%;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      margin-top: 28px;
    }

    .business-proof-strip .school-proof-item {
      grid-template-columns: 38px minmax(0, 1fr);
    }

    .business-metrics {
      row-gap: 12px;
    }

    .business-metric-note {
      grid-column: 1 / -1;
      margin: 0;
      color: #66737d;
      font-size: 13px;
      text-align: center;
    }

    .business-flow-steps {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .business-flow-step {
      min-height: 210px;
      grid-template-columns: 1fr 120px;
      align-items: center;
      text-align: left;
    }

    .business-flow-step .hotel-icon {
      width: 84px;
      height: 84px;
      justify-self: center;
    }

    .business-flow-image {
      grid-row: 1 / span 3;
      grid-column: 2;
      width: 120px;
      height: 96px;
      object-fit: contain;
      justify-self: center;
      border-radius: 10px;
      background: linear-gradient(135deg, #f7fbf9 0%, #ffffff 100%);
    }

    .business-flow-step h3,
    .business-flow-step p {
      grid-column: 1;
    }

    .business-flow-step svg {
      grid-row: 1 / span 3;
      grid-column: 2;
    }

    .business-audience-card {
      grid-template-columns: minmax(0, 1fr) 155px;
    }

    .business-audience-card img {
      grid-column: 2;
      grid-row: 1;
    }

    .business-audience-card .school-audience-content {
      grid-column: 1;
      grid-row: 1;
    }

    .business-kit-note {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 16px 22px;
      border-radius: 12px;
      background: rgba(0, 122, 61, 0.08);
      color: #24323d;
      font-weight: 700;
      line-height: 1.5;
      text-align: left;
    }

    .business-privacy-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: inset 0 0 0 1px rgba(17, 24, 32, 0.08);
      overflow: hidden;
    }

    .business-privacy-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 26px 22px;
      border-right: 1px solid rgba(17, 24, 32, 0.08);
      text-align: left;
    }

    .business-privacy-card:last-child {
      border-right: none;
      background: linear-gradient(135deg, rgba(0, 122, 61, 0.11), #ffffff);
    }

    .business-privacy-card strong,
    .business-privacy-card span {
      display: block;
    }

    .business-privacy-card strong {
      color: #111820;
      margin-bottom: 5px;
      line-height: 1.25;
    }

    .business-privacy-card span {
      color: #4f5d68;
      font-size: 14px;
      line-height: 1.45;
    }

    .business-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.94);
    }

    .business-form input,
    .business-form textarea {
      width: 100%;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 8px;
      padding: 12px 13px;
      background: #ffffff;
      color: #111820;
      font: inherit;
    }

    .business-form textarea {
      min-height: 86px;
      resize: vertical;
    }

    .business-form .business-form-wide,
    .business-form button {
      grid-column: 1 / -1;
    }

    .business-form button {
      border-radius: 8px;
      background: #ffffff;
      color: #007a3d;
      border-color: #ffffff;
      box-shadow: none;
    }

    .business-infographic {
      --bizinfo-green: #007a3d;
      --bizinfo-green-dark: #005f31;
      --bizinfo-mint: #eef8f2;
      --bizinfo-ink: #101820;
      --bizinfo-text: #26323d;
      --bizinfo-muted: #5c6872;
      --bizinfo-line: rgba(16, 24, 32, 0.12);
      --bizinfo-blue: #155f9f;
      --bizinfo-warm: #f4f8f6;
      --bizinfo-shadow: 0 16px 34px rgba(16, 24, 32, 0.08);
      display: grid;
      gap: 28px;
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 26px 34px 0;
      color: var(--bizinfo-text);
      overflow-x: visible;
      box-sizing: border-box;
    }

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

    .bizinfo-flow,
    .bizinfo-bridge,
    .bizinfo-final-cta {
      scroll-margin-top: 116px;
    }

    body.page-sector_solution:has(.business-infographic) .assistant-nudge {
      display: none;
    }

    body.page-sector_solution:has(.business-infographic) {
      overflow-x: clip;
    }

    @media (max-width: 1400px) and (min-width: 1081px) {
      body.page-sector_solution:has(.business-infographic) .header-shell {
        gap: 18px;
        padding: 18px 26px;
      }

      body.page-sector_solution:has(.business-infographic) .brand img {
        width: 198px;
      }

      body.page-sector_solution:has(.business-infographic) .site-nav-panel {
        gap: 16px;
      }

      body.page-sector_solution:has(.business-infographic) .nav-links {
        gap: 14px;
      }

      body.page-sector_solution:has(.business-infographic) .site-header .nav-actions {
        gap: 10px;
      }

      body.page-sector_solution:has(.business-infographic) .site-header .nav-actions .button {
        min-height: 48px;
        padding: 12px 16px;
      }
    }

    @media (max-width: 1240px) and (min-width: 1081px) {
      body.page-sector_solution:has(.business-infographic) .header-shell {
        gap: 14px;
        padding: 16px 24px;
      }

      body.page-sector_solution:has(.business-infographic) .brand img {
        width: 172px;
      }

      body.page-sector_solution:has(.business-infographic) .site-nav-panel {
        gap: 12px;
      }

      body.page-sector_solution:has(.business-infographic) .nav-links {
        gap: 10px;
      }

      body.page-sector_solution:has(.business-infographic) .nav-link {
        font-size: 12.5px;
      }

      body.page-sector_solution:has(.business-infographic) .site-header .nav-actions .nav-login {
        display: none;
      }

      body.page-sector_solution:has(.business-infographic) .site-header .nav-actions .button {
        padding-right: 15px;
        padding-left: 15px;
      }
    }

    .business-infographic svg {
      display: block;
    }

    .business-infographic img.bizinfo-icon,
    .business-infographic img.bizinfo-quote-icon {
      display: block;
      object-fit: contain;
    }

    .bizinfo-icon {
      width: 58px;
      height: 58px;
      color: var(--bizinfo-green);
      fill: none;
      stroke: currentColor;
      flex: 0 0 auto;
    }

    .bizinfo-icon-shell {
      display: grid;
      place-items: center;
      width: 66px;
      height: 66px;
      border: 1px solid rgba(0, 122, 61, 0.18);
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(16, 24, 32, 0.07);
      color: var(--bizinfo-green);
      flex: 0 0 auto;
    }

    .bizinfo-icon-shell .bizinfo-icon {
      width: 42px;
      height: 42px;
    }

    .bizinfo-hero {
      position: relative;
      height: clamp(500px, 35vw, 560px);
      min-height: 0;
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
      gap: clamp(22px, 3vw, 50px);
      align-items: stretch;
      overflow: visible;
      isolation: isolate;
      background: linear-gradient(90deg, #ffffff 0%, #ffffff 43%, rgba(238, 248, 242, 0.76) 100%);
    }

    .bizinfo-hero::before {
      content: "";
      position: absolute;
      top: 0;
      right: calc(100% - 1px);
      bottom: 0;
      width: 100vw;
      z-index: 0;
      background: #ffffff;
      pointer-events: none;
    }

    .bizinfo-hero-copy {
      position: relative;
      z-index: 2;
      display: grid;
      align-content: center;
      justify-items: start;
      justify-self: start;
      gap: 18px;
      width: min(100%, 640px);
      max-width: 640px;
      padding: clamp(42px, 4vw, 60px) 0 clamp(28px, 3vw, 44px);
      text-align: left;
    }

    .bizinfo-hero h1 {
      max-width: 12.8em;
      margin: 0;
      color: var(--bizinfo-ink);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(42px, 3.6vw, 56px);
      line-height: 1.06;
      letter-spacing: 0;
    }

    .bizinfo-hero h1 span,
    .bizinfo-hero h1 strong {
      display: block;
      font: inherit;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .bizinfo-hero h1 strong {
      color: var(--bizinfo-green);
      font-weight: 900;
    }

    .bizinfo-hero-copy .lead {
      max-width: 34em;
      margin: 0;
      color: #26323d;
      font-size: 16.5px;
      line-height: 1.6;
    }

    .bizinfo-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: flex-start;
      margin-top: 4px;
    }

    .bizinfo-actions .button {
      min-width: 194px;
      min-height: 52px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 900;
    }

    .bizinfo-actions .button:not(.secondary) {
      background: var(--bizinfo-green);
      border-color: var(--bizinfo-green);
      color: #ffffff;
      box-shadow: 0 16px 30px rgba(0, 122, 61, 0.22);
    }

    .bizinfo-actions .button.secondary {
      background: #ffffff;
      border-color: rgba(0, 122, 61, 0.34);
      color: var(--bizinfo-green);
      box-shadow: none;
    }

    .bizinfo-video-trigger {
      cursor: pointer;
    }

    .bizinfo-play-mark {
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: rgba(0, 122, 61, 0.1);
      color: currentColor;
      flex: 0 0 auto;
    }

    .bizinfo-play-mark::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 2px;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid currentColor;
    }

    .bizinfo-action-icon {
      font-size: 24px;
      line-height: 1;
    }

    .bizinfo-video-dialog {
      width: min(960px, calc(100vw - 32px));
      padding: 0;
      border: 0;
      border-radius: 14px;
      background: #06130d;
      color: #ffffff;
      overflow: hidden;
      box-shadow: 0 34px 86px rgba(0, 24, 12, 0.42);
    }

    .bizinfo-video-dialog::backdrop {
      background: rgba(6, 19, 13, 0.72);
      backdrop-filter: blur(4px);
    }

    .bizinfo-video-shell {
      position: relative;
      display: grid;
      background: #06130d;
    }

    .bizinfo-video-shell video {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: min(72dvh, 680px);
      background: #06130d;
    }

    .bizinfo-video-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 40px;
      min-width: 40px;
      max-width: 40px;
      min-height: 40px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.52);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.94);
      color: #0b1720;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
      font-size: 25px;
      line-height: 1;
      cursor: pointer;
    }

    .bizinfo-video-close:hover {
      transform: none;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    }

    .bizinfo-video-caption {
      display: grid;
      gap: 4px;
      padding: 16px 18px 18px;
      background: linear-gradient(90deg, rgba(0, 122, 61, 0.28), rgba(0, 66, 34, 0.52));
    }

    .bizinfo-video-caption p {
      margin: 0;
      color: #ffffff;
      font-size: 17px;
      font-weight: 900;
      line-height: 1.35;
    }

    .bizinfo-video-caption span {
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      font-weight: 700;
    }

    .bizinfo-hero-tag {
      display: inline-grid;
      grid-template-columns: 24px minmax(0, 1fr);
      gap: 9px;
      align-items: center;
      width: fit-content;
      margin: 4px 0 0;
      color: var(--bizinfo-green);
      font-size: 14px;
      font-weight: 850;
    }

    .bizinfo-hero-tag .bizinfo-icon {
      width: 22px;
      height: 22px;
    }

    .bizinfo-hero-media {
      position: relative;
      align-self: stretch;
      z-index: 1;
      margin: 0;
      overflow: hidden;
      background: #f5f8f6;
    }

    .bizinfo-hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.76) 10%, rgba(255, 255, 255, 0.22) 25%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 84%, #ffffff 100%);
      pointer-events: none;
    }

    .bizinfo-hero-media img {
      width: 100%;
      height: 100%;
      min-height: 460px;
      display: block;
      object-fit: cover;
      object-position: center right;
    }

    .bizinfo-card-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .bizinfo-card {
      display: grid;
      grid-template-columns: 66px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      min-width: 0;
      min-height: 134px;
      padding: 20px;
      border: 1px solid var(--bizinfo-line);
      border-radius: 8px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.86) 0%, rgba(246, 252, 249, 0.78) 100%);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 28px rgba(16, 24, 32, 0.045);
      text-align: left;
    }

    .bizinfo-card h3,
    .bizinfo-gain-card h3,
    .bizinfo-benefit h3,
    .bizinfo-step h3,
    .bizinfo-bridge-content h3 {
      margin: 0;
      color: var(--bizinfo-ink);
      font-size: 17px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .bizinfo-card p,
    .bizinfo-gain-card p,
    .bizinfo-benefit p,
    .bizinfo-step p,
    .bizinfo-bridge-content li {
      margin: 0;
      color: var(--bizinfo-muted);
      font-size: 13.2px;
      line-height: 1.55;
    }

    .bizinfo-section-heading {
      display: grid;
      gap: 10px;
      max-width: 640px;
      text-align: left;
    }

    .bizinfo-section-heading::before {
      content: "";
      width: 72px;
      height: 5px;
      border-radius: 999px;
      background: var(--bizinfo-green);
    }

    .bizinfo-section-heading h2 {
      margin: 0;
      color: var(--bizinfo-ink);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 36px;
      line-height: 1.1;
      letter-spacing: 0;
    }

    .bizinfo-gains {
      display: grid;
      grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.45fr);
      gap: 22px;
      align-items: stretch;
      width: min(100%, 1280px);
      margin: 0 auto;
    }

    .bizinfo-gain-intro {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 16px;
      min-width: 0;
    }

    .bizinfo-gain-figure {
      position: relative;
      min-height: 300px;
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
      background: #f5f8f6;
    }

    .bizinfo-gain-figure > img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .bizinfo-gain-badge {
      position: absolute;
      left: 12px;
      bottom: 10px;
      display: grid;
      grid-template-columns: 26px minmax(0, max-content);
      gap: 9px;
      align-items: center;
      width: fit-content;
      max-width: min(280px, calc(100% - 24px));
      padding: 8px 11px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--bizinfo-shadow);
      color: var(--bizinfo-ink);
      font-size: 11.5px;
      font-weight: 850;
      line-height: 1.2;
    }

    .bizinfo-gain-badge .bizinfo-icon {
      width: 26px;
      height: 26px;
      min-height: 0;
      display: block;
      object-fit: contain;
      color: var(--bizinfo-green);
    }

    .bizinfo-gain-main {
      display: grid;
      gap: 18px;
      min-width: 0;
    }

    .bizinfo-featured-gains {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
      min-width: 0;
      padding: 44px 14px 14px;
      overflow: hidden;
      border-radius: 10px;
      background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #005c32 0%, #007a3d 46%, #0b8b52 100%);
      box-shadow: 0 24px 54px rgba(0, 81, 41, 0.18);
    }

    .bizinfo-featured-gains::before {
      content: "Impacto operativo";
      position: absolute;
      top: 14px;
      left: 16px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.13);
      color: #ffffff;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .bizinfo-featured-gains::after {
      content: "";
      position: absolute;
      right: -110px;
      top: -120px;
      width: 320px;
      height: 320px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      pointer-events: none;
    }

    .bizinfo-gain-card {
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr);
      grid-template-rows: auto auto minmax(54px, 1fr) auto;
      gap: 12px 18px;
      min-width: 0;
      min-height: 224px;
      padding: 24px;
      border: 1px solid rgba(0, 122, 61, 0.22);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 252, 249, 0.72) 48%, rgba(235, 248, 241, 0.8) 100%);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      box-shadow: 0 14px 32px rgba(16, 24, 32, 0.06);
      text-align: left;
    }

    .bizinfo-gain-card.has-chart {
      grid-template-rows: auto auto minmax(124px, 1fr) auto;
    }

    .bizinfo-featured-gains .bizinfo-gain-card {
      position: relative;
      z-index: 1;
      min-height: 250px;
      border: 0;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: none;
      color: #ffffff;
    }

    .bizinfo-featured-gains .bizinfo-gain-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: inherit;
      pointer-events: none;
    }

    .bizinfo-featured-gains .bizinfo-gain-card h3 {
      color: #ffffff;
      font-size: 23px;
      line-height: 1.16;
    }

    .bizinfo-featured-gains .bizinfo-gain-card p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      line-height: 1.45;
    }

    .bizinfo-featured-gains .bizinfo-gain-card .bizinfo-icon-shell {
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.14);
      box-shadow: 0 18px 36px rgba(0, 44, 23, 0.22);
    }

    .bizinfo-featured-gains .bizinfo-gain-card .bizinfo-icon {
      filter: brightness(0) invert(1);
    }

    .bizinfo-featured-gains .bizinfo-gain-card:nth-child(2) {
      background: rgba(255, 255, 255, 0.96);
      color: var(--bizinfo-ink);
    }

    .bizinfo-featured-gains .bizinfo-gain-card:nth-child(2)::before {
      border-color: rgba(255, 255, 255, 0.7);
    }

    .bizinfo-featured-gains .bizinfo-gain-card:nth-child(2) h3 {
      color: var(--bizinfo-ink);
    }

    .bizinfo-featured-gains .bizinfo-gain-card:nth-child(2) p {
      color: var(--bizinfo-muted);
    }

    .bizinfo-featured-gains .bizinfo-gain-card:nth-child(2) .bizinfo-icon-shell {
      border-color: rgba(0, 122, 61, 0.16);
      background: #ffffff;
      box-shadow: 0 18px 36px rgba(16, 24, 32, 0.08);
    }

    .bizinfo-featured-gains .bizinfo-gain-card:nth-child(2) .bizinfo-icon {
      filter: none;
    }

    .bizinfo-gain-card .bizinfo-icon-shell {
      grid-row: 1 / span 4;
      align-self: start;
    }

    .bizinfo-gain-card h3,
    .bizinfo-gain-card p,
    .bizinfo-card-tag {
      grid-column: 2;
    }

    .bizinfo-gain-card h3 {
      font-size: 19px;
    }

    .bizinfo-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: #ffffff;
      color: var(--bizinfo-ink);
      box-shadow: 0 9px 22px rgba(16, 24, 32, 0.08);
      font-size: 12px;
      font-weight: 850;
    }

    .bizinfo-card-tag::before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--bizinfo-green) 0 25%, transparent 25% 38%, var(--bizinfo-green) 38% 62%, transparent 62% 75%, var(--bizinfo-green) 75%);
    }

    .bizinfo-featured-gains .bizinfo-card-tag {
      background: rgba(255, 255, 255, 0.94);
      color: var(--bizinfo-ink);
      box-shadow: 0 14px 30px rgba(0, 44, 23, 0.18);
    }

    .bizinfo-saving-visual {
      grid-column: 2;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      align-self: end;
      min-width: 0;
    }

    .bizinfo-saving-pill {
      position: relative;
      display: grid;
      align-content: center;
      min-height: 54px;
      padding: 10px 10px 10px 14px;
      overflow: hidden;
      border: 1px solid rgba(0, 122, 61, 0.14);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.76);
      color: var(--bizinfo-ink);
      box-shadow: 0 8px 18px rgba(16, 24, 32, 0.045);
      font-size: 11.5px;
      font-weight: 850;
      line-height: 1.18;
    }

    .bizinfo-featured-gains .bizinfo-saving-pill {
      background: #ffffff;
      box-shadow: 0 12px 26px rgba(0, 81, 41, 0.09);
    }

    .bizinfo-saving-pill::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: var(--bizinfo-green);
    }

    .bizinfo-saving-pill::after {
      content: "";
      width: 18px;
      height: 18px;
      margin-top: 7px;
      border-radius: 999px;
      background:
        linear-gradient(135deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
        var(--bizinfo-green);
      opacity: 0.95;
    }

    .bizinfo-chart {
      grid-column: 2;
      grid-row: 3;
      width: 100%;
      max-width: 292px;
      height: 132px;
      align-self: end;
      justify-self: end;
    }

    .bizinfo-chart-grid {
      stroke: rgba(0, 122, 61, 0.12);
      stroke-width: 1;
    }

    .bizinfo-featured-gains .bizinfo-chart-grid {
      stroke: rgba(255, 255, 255, 0.2);
    }

    .bizinfo-chart-line {
      fill: none;
      stroke: var(--bizinfo-green);
      stroke-width: 6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .bizinfo-featured-gains .bizinfo-chart-line {
      stroke: #ffffff;
      filter: drop-shadow(0 8px 10px rgba(0, 31, 16, 0.2));
    }

    .bizinfo-chart-dot {
      fill: var(--bizinfo-green);
    }

    .bizinfo-featured-gains .bizinfo-chart-dot {
      fill: #ffffff;
    }

    .bizinfo-compact-benefits {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .bizinfo-benefit {
      display: grid;
      gap: 11px;
      align-content: start;
      min-width: 0;
      min-height: 164px;
      padding: 16px;
      border: 1px solid var(--bizinfo-line);
      border-radius: 8px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 252, 249, 0.76) 100%);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 28px rgba(16, 24, 32, 0.045);
      text-align: left;
    }

    .bizinfo-benefit .bizinfo-icon-shell {
      width: 54px;
      height: 54px;
    }

    .bizinfo-benefit .bizinfo-icon {
      width: 34px;
      height: 34px;
    }

    .bizinfo-benefit h3 {
      font-size: 15.5px;
      line-height: 1.22;
    }

    .bizinfo-benefit p {
      font-size: 12.5px;
      line-height: 1.45;
    }

    .bizinfo-flow {
      display: grid;
      gap: 18px;
    }

    .bizinfo-flow .bizinfo-section-heading {
      width: min(100%, 910px);
      max-width: 910px;
      margin: 0 auto;
    }

    .bizinfo-flow-steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 190px);
      justify-content: center;
      gap: 50px;
      align-items: start;
      width: min(100%, 910px);
      margin: 0 auto;
      padding: 0;
    }

    .bizinfo-flow-lines {
      position: absolute;
      top: 2px;
      left: 50%;
      z-index: 0;
      width: min(100%, 910px);
      height: 62px;
      overflow: visible;
      color: var(--bizinfo-green);
      pointer-events: none;
      transform: translateX(-50%);
    }

    .bizinfo-flow-lines > path {
      fill: none;
      stroke: currentColor;
      stroke-width: 3;
      stroke-linecap: round;
      vector-effect: non-scaling-stroke;
    }

    .bizinfo-step {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      justify-items: center;
      text-align: center;
    }

    .bizinfo-step:nth-of-type(4) {
      transform: none;
    }

    .bizinfo-step:not(:last-child)::after {
      content: none;
    }

    .bizinfo-step:not(:last-child)::before {
      content: none;
    }

    .bizinfo-step-number {
      position: relative;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 999px;
      background: var(--bizinfo-green);
      color: #ffffff;
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 12px 24px rgba(0, 122, 61, 0.24);
    }

    .bizinfo-step-media {
      display: grid;
      place-items: center;
      width: 100%;
      min-height: 132px;
    }

    .bizinfo-step-media img {
      width: 100%;
      max-width: 188px;
      height: 132px;
      display: block;
      object-fit: contain;
      border-radius: 8px;
      filter: drop-shadow(0 16px 22px rgba(16, 24, 32, 0.08));
      -webkit-mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
      mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }

    .bizinfo-step:nth-of-type(1) .bizinfo-step-media img {
      width: 148px;
      max-width: 148px;
      height: 148px;
      object-fit: cover;
      border-radius: 999px;
      -webkit-mask-image: none;
      mask-image: none;
    }

    .bizinfo-step:nth-of-type(2) .bizinfo-step-media img {
      max-width: 126px;
      height: 144px;
    }

    .bizinfo-step:nth-of-type(3) .bizinfo-step-media img {
      max-width: 224px;
      height: 142px;
    }

    .bizinfo-step-media .bizinfo-icon-shell {
      width: 96px;
      height: 96px;
    }

    .bizinfo-step-media .bizinfo-icon {
      width: 58px;
      height: 58px;
    }

    .bizinfo-step h3 {
      font-size: 16px;
    }

    .bizinfo-step p {
      max-width: 22em;
    }

    .bizinfo-prescription-visual {
      position: relative;
      width: 156px;
      height: 132px;
      color: var(--bizinfo-green);
    }

    .bizinfo-rx-sheet,
    .bizinfo-rx-shield {
      position: absolute;
      display: grid;
      place-items: center;
      background: #ffffff;
      box-shadow: 0 16px 28px rgba(16, 24, 32, 0.08);
    }

    .bizinfo-rx-sheet {
      left: 16px;
      top: 13px;
      width: 82px;
      height: 104px;
      border: 1px solid rgba(0, 122, 61, 0.14);
      border-radius: 6px;
      transform: rotate(-6deg);
    }

    .bizinfo-rx-sheet .bizinfo-icon {
      width: 58px;
      height: 58px;
    }

    .bizinfo-rx-shield {
      right: 10px;
      bottom: 18px;
      width: 82px;
      height: 82px;
      border: 1px solid rgba(0, 122, 61, 0.18);
      border-radius: 999px;
    }

    .bizinfo-rx-shield .bizinfo-icon {
      width: 48px;
      height: 48px;
    }

    .bizinfo-bridge {
      display: grid;
      gap: 16px;
    }

    .bizinfo-bridge-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
      gap: 14px;
      align-items: stretch;
    }

    .bizinfo-bridge-card {
      display: grid;
      grid-template-columns: minmax(220px, 0.92fr) minmax(250px, 1.08fr);
      min-width: 0;
      min-height: 226px;
      overflow: hidden;
      border: 1px solid rgba(0, 122, 61, 0.2);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 14px 32px rgba(16, 24, 32, 0.055);
    }

    .bizinfo-bridge-card.is-home {
      grid-template-columns: minmax(250px, 1.08fr) minmax(220px, 0.92fr);
    }

    .bizinfo-bridge-image {
      min-height: 226px;
      margin: 0;
      overflow: hidden;
      background: #f5f8f6;
    }

    .bizinfo-bridge-image img {
      width: 100%;
      height: 100%;
      min-height: 226px;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .bizinfo-bridge-content {
      position: relative;
      display: grid;
      gap: 12px;
      align-content: center;
      padding: 24px 24px 24px 46px;
      text-align: left;
    }

    .bizinfo-bridge-title {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      align-items: center;
      min-height: 62px;
      color: var(--bizinfo-green);
    }

    .bizinfo-bridge-title .bizinfo-icon-shell {
      position: absolute;
      left: -46px;
      top: 50%;
      z-index: 1;
      width: 62px;
      height: 62px;
      transform: translate(-50%, -50%);
    }

    .bizinfo-bridge-title .bizinfo-icon {
      width: 42px;
      height: 42px;
    }

    .bizinfo-bridge-content h3 {
      color: var(--bizinfo-green);
      font-size: 20px;
    }

    .bizinfo-bridge-content ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .bizinfo-bridge-content li {
      position: relative;
      padding-left: 28px;
      color: var(--bizinfo-text);
    }

    .bizinfo-bridge-content li::before,
    .bizinfo-cta-items li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.2em;
      width: 18px;
      height: 18px;
      border-radius: 999px;
    }

    .bizinfo-bridge-content li::before {
      content: "\2713";
      display: grid;
      place-items: center;
      background: var(--bizinfo-green);
      color: #ffffff;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 6px 14px rgba(0, 122, 61, 0.18);
    }

    .bizinfo-bridge-arrow {
      display: grid;
      place-items: center;
      align-self: center;
      width: 62px;
      height: 62px;
      border-radius: 999px;
      background: #ffffff;
      color: var(--bizinfo-green);
      box-shadow: var(--bizinfo-shadow);
      z-index: 1;
    }

    .bizinfo-bridge-arrow .bizinfo-icon {
      width: 34px;
      height: 34px;
    }

    .bizinfo-conversion-grid {
      display: grid;
      grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
      gap: 16px;
      align-items: stretch;
      min-width: 0;
    }

    .bizinfo-testimonial {
      display: grid;
      grid-template-columns: 60px 86px minmax(0, 1fr) 60px;
      gap: 18px;
      align-items: center;
      min-width: 0;
      padding: 18px 30px;
      border: 1px solid rgba(0, 122, 61, 0.18);
      border-radius: 8px;
      background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
      box-shadow: 0 14px 30px rgba(16, 24, 32, 0.045);
    }

    .bizinfo-conversion-grid .bizinfo-testimonial {
      position: relative;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 14px 18px;
      align-content: center;
      align-items: center;
      min-height: 100%;
      padding: 24px;
      overflow: hidden;
    }

    .bizinfo-testimonial-photo {
      width: 78px;
      height: 78px;
      border-radius: 999px;
      object-fit: cover;
      box-shadow: 0 10px 24px rgba(16, 24, 32, 0.1);
    }

    .bizinfo-conversion-grid .bizinfo-testimonial-photo {
      position: relative;
      z-index: 1;
      grid-column: 1;
      grid-row: 1;
      width: 64px;
      height: 64px;
    }

    .bizinfo-conversion-grid .bizinfo-testimonial > div {
      position: relative;
      z-index: 1;
      grid-column: 2;
      min-width: 0;
    }

    .bizinfo-testimonial blockquote {
      margin: 0;
      color: var(--bizinfo-ink);
      font-size: 16px;
      line-height: 1.55;
      font-weight: 750;
    }

    .bizinfo-conversion-grid .bizinfo-testimonial blockquote {
      font-size: 14.5px;
      line-height: 1.45;
    }

    .bizinfo-testimonial-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 12px;
      margin-top: 10px;
      color: var(--bizinfo-muted);
      font-size: 13px;
    }

    .bizinfo-conversion-grid .bizinfo-testimonial-meta {
      gap: 5px 10px;
      font-size: 12.5px;
    }

    .bizinfo-testimonial strong {
      color: var(--bizinfo-green);
    }

    .bizinfo-quote-icon {
      width: 56px;
      height: 56px;
      color: var(--bizinfo-green);
      opacity: 0.88;
    }

    .bizinfo-conversion-grid .bizinfo-quote-icon {
      position: absolute;
      left: 18px;
      top: 18px;
      z-index: 0;
      width: 44px;
      height: 44px;
      opacity: 0.14;
    }

    .bizinfo-quote-icon.is-closing {
      justify-self: end;
      transform: rotate(180deg);
    }

    .bizinfo-conversion-grid .bizinfo-quote-icon.is-closing {
      right: 18px;
      bottom: 18px;
      left: auto;
      top: auto;
      opacity: 0.18;
    }

    .bizinfo-final-cta {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      min-width: 0;
      padding: 22px 30px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(0, 95, 49, 0.94), rgba(0, 122, 61, 0.98)),
        var(--bizinfo-green);
      color: #ffffff;
      box-shadow: 0 18px 38px rgba(0, 95, 49, 0.2);
    }

    .bizinfo-conversion-grid .bizinfo-final-cta {
      grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.94fr);
      align-items: stretch;
      min-height: 100%;
      padding: 22px;
    }

    .bizinfo-cta-copy {
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      min-width: 0;
      max-width: 980px;
    }

    .bizinfo-cta-icon {
      display: grid;
      place-items: center;
      width: 68px;
      height: 68px;
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
    }

    .bizinfo-cta-icon .bizinfo-icon {
      width: 44px;
      height: 44px;
      filter: brightness(0) invert(1);
    }

    .bizinfo-final-cta h2 {
      max-width: 18em;
      margin: 0;
      color: #ffffff;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 28px;
      line-height: 1.12;
      letter-spacing: 0;
    }

    .bizinfo-conversion-grid .bizinfo-final-cta h2 {
      font-size: 25px;
    }

    .bizinfo-final-cta p {
      max-width: 42em;
      margin: 9px 0 0;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.45;
      font-size: 14px;
    }

    .bizinfo-conversion-grid .bizinfo-final-cta p {
      max-width: 34em;
    }

    .bizinfo-cta-items {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
      margin: 12px 0 0;
      padding: 12px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.22);
      list-style: none;
    }

    .bizinfo-conversion-grid .bizinfo-cta-items {
      gap: 8px 14px;
    }

    .bizinfo-cta-items li {
      position: relative;
      padding-left: 25px;
      color: #ffffff;
      font-weight: 850;
    }

    .bizinfo-conversion-grid .bizinfo-cta-items li {
      font-size: 13.5px;
    }

    .bizinfo-cta-items li::before {
      content: "\2713";
      display: grid;
      place-items: center;
      background: #ffffff;
      color: var(--bizinfo-green);
      font-size: 11px;
      font-weight: 950;
      line-height: 1;
      box-shadow: 0 5px 12px rgba(0, 44, 22, 0.18);
    }

    .bizinfo-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      min-width: 0;
    }

    .bizinfo-contact-card {
      align-self: stretch;
      padding: 16px;
      border: 1px solid rgba(0, 122, 61, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.98);
      color: var(--bizinfo-ink);
      box-shadow: 0 20px 42px rgba(0, 34, 17, 0.18);
    }

    .bizinfo-contact-head {
      display: grid;
      gap: 3px;
      padding-bottom: 4px;
    }

    .bizinfo-contact-head strong {
      color: var(--bizinfo-green);
      font-size: 17px;
      font-weight: 900;
    }

    .bizinfo-contact-head span {
      color: var(--bizinfo-muted);
      font-size: 12.5px;
      line-height: 1.35;
    }

    .bizinfo-form label {
      display: grid;
      gap: 6px;
      min-width: 0;
    }

    .bizinfo-form .bizinfo-form-wide {
      grid-column: 1 / -1;
    }

    .bizinfo-form input,
    .bizinfo-form textarea {
      width: 100%;
      min-height: 40px;
      border: 1px solid rgba(0, 122, 61, 0.18);
      border-radius: 8px;
      padding: 9px 12px;
      background: #ffffff;
      color: var(--bizinfo-ink);
      font: inherit;
      font-size: 14px;
      box-shadow: none;
    }

    .bizinfo-form textarea {
      min-height: 54px;
      resize: vertical;
    }

    .bizinfo-form input:focus,
    .bizinfo-form textarea:focus {
      outline: 3px solid rgba(0, 122, 61, 0.14);
      outline-offset: 2px;
    }

    .bizinfo-field-error {
      color: #9f1239;
      font-size: 12px;
      font-weight: 750;
    }

    .bizinfo-form button {
      grid-column: 1 / -1;
      min-height: 42px;
      border: 1px solid var(--bizinfo-green);
      border-radius: 8px;
      background: var(--bizinfo-green);
      color: #ffffff;
      font-weight: 900;
      box-shadow: none;
    }

    @media (max-width: 1240px) {
      .business-infographic {
        padding-left: 28px;
        padding-right: 28px;
      }

      .bizinfo-hero {
        grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
        gap: 30px;
        height: 430px;
      }

      .bizinfo-hero-copy {
        max-width: 590px;
      }

      .bizinfo-hero h1 {
        font-size: clamp(38px, 3.55vw, 48px);
      }

      .bizinfo-hero-media img {
        min-height: 430px;
      }

      .bizinfo-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .bizinfo-compact-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .bizinfo-gains,
      .bizinfo-final-cta {
        grid-template-columns: 1fr;
      }

      .bizinfo-contact-card {
        width: 100%;
      }

      .bizinfo-bridge-grid {
        grid-template-columns: 1fr;
      }

      .bizinfo-bridge-arrow {
        justify-self: center;
      }
    }

    @media (max-width: 1120px) {
      .bizinfo-flow .bizinfo-section-heading {
        width: min(100%, 820px);
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
      }

      .bizinfo-flow-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 22px;
        width: min(100%, 820px);
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
      }

      .bizinfo-flow-lines {
        display: none;
      }
    }

    @media (max-width: 920px) {
      .bizinfo-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        height: auto;
        min-height: auto;
        background: #ffffff;
      }

      .bizinfo-hero-copy {
        justify-items: center;
        justify-self: center;
        max-width: 100%;
        padding: 28px 0 0;
        text-align: center;
      }

      .bizinfo-actions {
        justify-content: center;
      }

      .bizinfo-hero h1 {
        max-width: 100%;
        font-size: 40px;
      }

      .bizinfo-hero h1 span,
      .bizinfo-hero h1 strong {
        white-space: normal;
      }

      .bizinfo-hero-media {
        min-height: 360px;
        border-radius: 8px;
      }

      .bizinfo-hero-media::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, #ffffff 100%);
      }

      .bizinfo-hero-media img {
        min-height: 360px;
      }

      .bizinfo-featured-gains,
      .bizinfo-bridge-card,
      .bizinfo-bridge-card.is-home,
      .bizinfo-testimonial,
      .bizinfo-form {
        grid-template-columns: 1fr;
      }

      .bizinfo-conversion-grid {
        grid-template-columns: 1fr;
      }

      .bizinfo-bridge-content {
        padding-left: 24px;
      }

      .bizinfo-bridge-title {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
      }

      .bizinfo-bridge-title .bizinfo-icon-shell {
        position: static;
        width: 52px;
        height: 52px;
        transform: none;
      }

      .bizinfo-bridge-title .bizinfo-icon {
        width: 36px;
        height: 36px;
      }

      .bizinfo-gain-card {
        grid-template-columns: 70px minmax(0, 1fr);
      }

      .bizinfo-chart {
        grid-column: 1 / -1;
        justify-self: stretch;
        max-width: none;
      }

      .bizinfo-flow-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 22px;
        width: 100%;
        padding: 0;
      }

      .bizinfo-flow-lines,
      .bizinfo-step:not(:last-child)::before,
      .bizinfo-step:not(:last-child)::after {
        display: none;
      }

      .bizinfo-step {
        min-height: 0;
        padding: 16px;
        border: 1px solid rgba(0, 122, 61, 0.14);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(16, 24, 32, 0.045);
        transform: none;
      }

      .bizinfo-testimonial {
        justify-items: start;
        text-align: left;
      }

      .bizinfo-conversion-grid .bizinfo-testimonial-photo,
      .bizinfo-conversion-grid .bizinfo-testimonial > div {
        grid-column: auto;
        grid-row: auto;
      }

      .bizinfo-conversion-grid .bizinfo-quote-icon {
        position: static;
        opacity: 0.88;
      }

      .bizinfo-conversion-grid .bizinfo-quote-icon.is-closing {
        justify-self: end;
        opacity: 0.88;
      }

    }

    @media (max-width: 620px) {
      .business-infographic {
        gap: 22px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
      }

      .business-infographic section,
      .bizinfo-hero,
      .bizinfo-card-grid,
      .bizinfo-gains,
      .bizinfo-gain-main,
      .bizinfo-featured-gains,
      .bizinfo-compact-benefits,
      .bizinfo-flow,
      .bizinfo-bridge,
      .bizinfo-final-cta {
        width: 100%;
        min-width: 0;
        max-width: 100%;
      }

      .business-infographic p,
      .business-infographic h1,
      .business-infographic h2,
      .business-infographic h3 {
        overflow-wrap: anywhere;
      }

      .bizinfo-hero-copy {
        gap: 16px;
        min-width: 0;
        max-width: 100%;
        padding-top: 24px;
      }

      .bizinfo-hero h1 {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        font-size: clamp(28px, 7.2vw, 31px);
        line-height: 1.08;
      }

      .bizinfo-hero h1 span,
      .bizinfo-hero h1 strong {
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: break-word;
      }

      .bizinfo-hero-copy .lead {
        min-width: 0;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.58;
      }

      .bizinfo-actions {
        gap: 12px;
      }

      .bizinfo-actions .button {
        width: 100%;
      }

      .bizinfo-actions .button {
        min-width: 0;
        min-height: 50px;
      }

      .bizinfo-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .bizinfo-compact-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .bizinfo-card {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 148px;
        padding: 15px;
        gap: 10px;
        text-align: center;
      }

      .bizinfo-card .bizinfo-icon-shell,
      .bizinfo-benefit .bizinfo-icon-shell {
        width: 48px;
        height: 48px;
      }

      .bizinfo-card .bizinfo-icon,
      .bizinfo-benefit .bizinfo-icon {
        width: 35px;
        height: 35px;
      }

      .bizinfo-card h3,
      .bizinfo-benefit h3 {
        font-size: 14.5px;
      }

      .bizinfo-card p,
      .bizinfo-benefit p {
        font-size: 12px;
        line-height: 1.42;
      }

      .bizinfo-gain-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px;
      }

      .bizinfo-gain-card .bizinfo-icon-shell {
        grid-row: auto;
      }

      .bizinfo-gain-card h3,
      .bizinfo-gain-card p,
      .bizinfo-card-tag,
      .bizinfo-saving-visual,
      .bizinfo-chart {
        grid-column: 1;
      }

      .bizinfo-saving-visual {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .bizinfo-saving-pill {
        min-height: 48px;
        padding: 8px 8px 8px 11px;
        font-size: 10.5px;
      }

      .bizinfo-section-heading h2,
      .bizinfo-final-cta h2 {
        font-size: 27px;
      }

      .bizinfo-hero-media,
      .bizinfo-hero-media img {
        min-height: 300px;
      }

      .bizinfo-gain-figure,
      .bizinfo-gain-figure > img {
        min-height: 220px;
      }

      .bizinfo-benefit {
        min-height: 0;
        padding: 15px;
        gap: 10px;
      }

      .bizinfo-flow,
      .bizinfo-bridge,
      .bizinfo-final-cta {
        scroll-margin-top: 94px;
      }

      .bizinfo-flow-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: min(100%, 540px);
        max-width: 540px;
        margin: 0 auto;
        padding: 0;
        overflow: visible;
      }

      .bizinfo-step {
        display: grid;
        grid-template-columns: 44px 86px minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 4px 10px;
        align-items: center;
        justify-items: start;
        min-height: 0;
        padding: 12px;
        text-align: left;
      }

      .bizinfo-step-number {
        grid-row: 1 / span 2;
        width: 42px;
        height: 42px;
        font-size: 21px;
      }

      .bizinfo-step-media {
        grid-row: 1 / span 2;
        width: 86px;
        min-height: 72px;
        height: 72px;
      }

      .bizinfo-step-media img {
        width: 86px;
        max-width: 86px;
        min-height: 72px;
        height: 72px;
        object-fit: contain;
      }

      .bizinfo-step:nth-of-type(1) .bizinfo-step-media img {
        width: 72px;
        max-width: 72px;
        min-height: 72px;
        height: 72px;
        object-fit: cover;
      }

      .bizinfo-step:nth-of-type(2) .bizinfo-step-media img,
      .bizinfo-step:nth-of-type(3) .bizinfo-step-media img {
        width: 86px;
        max-width: 86px;
        min-height: 72px;
        height: 72px;
      }

      .bizinfo-step-media .bizinfo-icon-shell {
        width: 66px;
        height: 66px;
      }

      .bizinfo-step-media .bizinfo-icon {
        width: 40px;
        height: 40px;
      }

      .bizinfo-prescription-visual {
        width: 86px;
        height: 72px;
      }

      .bizinfo-rx-sheet {
        left: 16px;
        top: 7px;
        width: 40px;
        height: 58px;
      }

      .bizinfo-rx-sheet .bizinfo-icon {
        width: 31px;
        height: 31px;
      }

      .bizinfo-rx-shield {
        right: 13px;
        bottom: 9px;
        width: 46px;
        height: 46px;
      }

      .bizinfo-rx-shield .bizinfo-icon {
        width: 28px;
        height: 28px;
      }

      .bizinfo-step h3 {
        font-size: 14.5px;
        line-height: 1.22;
      }

      .bizinfo-step p {
        max-width: none;
        font-size: 12px;
        line-height: 1.38;
      }

      .bizinfo-bridge-image,
      .bizinfo-bridge-image img {
        min-height: 172px;
      }

      .bizinfo-bridge-arrow {
        width: 54px;
        height: 54px;
        transform: rotate(90deg);
      }

      .bizinfo-final-cta,
      .bizinfo-testimonial,
      .bizinfo-bridge-content {
        padding: 20px;
      }

      .bizinfo-final-cta {
        gap: 20px;
      }

      .bizinfo-testimonial {
        justify-items: center;
        text-align: center;
      }

      .bizinfo-quote-icon {
        display: none;
      }

      .bizinfo-testimonial blockquote {
        font-size: 15px;
      }

      .bizinfo-form .bizinfo-form-wide,
      .bizinfo-form button {
        grid-column: auto;
      }

      body.page-sector_solution .assistant-widget {
        right: 10px;
        bottom: 10px;
        left: auto;
      }

      body.page-sector_solution .assistant-widget .assistant-toggle {
        width: 50px;
        height: 50px;
      }

      body.page-sector_solution .assistant-widget .assistant-toggle img {
        width: 24px;
        height: 24px;
      }
    }

    .residences-landing {
      --res-green: #006d36;
      --res-green-dark: #004f2b;
      --res-navy: #111a34;
      --res-text: #26344d;
      --res-muted: #536176;
      --res-border: rgba(17, 24, 32, 0.11);
      --res-shadow: 0 16px 34px rgba(17, 24, 32, 0.08);
      max-width: 1920px;
      margin: 0 auto;
      padding: 28px 36px 0;
      display: grid;
      gap: 36px;
      color: var(--res-text);
      overflow-x: clip;
    }

    .residences-icon {
      display: block;
      width: 44px;
      height: 44px;
      color: var(--res-green);
      fill: none;
      stroke: currentColor;
      flex: 0 0 auto;
    }

    .residences-icon-shell {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border-radius: 999px;
      background: #eef8f2;
      color: var(--res-green);
      flex: 0 0 auto;
    }

    .residences-icon-shell .residences-icon {
      width: 28px;
      height: 28px;
    }

    .residences-hero {
      display: grid;
      grid-template-columns: minmax(390px, 0.96fr) minmax(460px, 1.04fr) minmax(250px, 0.46fr);
      gap: 26px;
      align-items: center;
      min-height: 560px;
    }

    .residences-hero-copy {
      display: grid;
      gap: 22px;
      width: 100%;
      min-width: 0;
      text-align: left;
    }

    .residences-eyebrow {
      width: fit-content;
      padding: 8px 13px;
      border-radius: 999px;
      background: #e8f4ed;
      color: var(--res-green-dark);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .residences-hero h1 {
      max-width: 15.8ch;
      width: 100%;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 48px;
      line-height: 1.08;
      letter-spacing: 0;
      color: var(--res-navy);
    }

    .residences-hero h1 span {
      color: var(--res-green);
    }

    .residences-hero .lead {
      max-width: 58ch;
      width: 100%;
      color: #24334f;
      font-size: 17px;
      line-height: 1.7;
    }

    .residences-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      width: 100%;
    }

    .residences-actions .button {
      min-width: 230px;
      border-radius: 8px;
      background: var(--res-green);
      color: #ffffff;
      border-color: var(--res-green);
      box-shadow: 0 16px 34px rgba(0, 109, 54, 0.2);
    }

    .residences-actions .button.secondary {
      min-width: 190px;
      background: #ffffff;
      color: var(--res-green);
      border-color: rgba(0, 109, 54, 0.32);
      box-shadow: none;
    }

    .residences-hero-media {
      min-width: 0;
    }

    .residences-hero-media img {
      width: 100%;
      height: 540px;
      border-radius: 8px;
      object-fit: cover;
      object-position: center;
      box-shadow: 0 22px 54px rgba(17, 24, 32, 0.13);
    }

    .residences-hero-stack {
      display: grid;
      gap: 14px;
    }

    .residences-hero-card {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      min-height: 116px;
      padding: 18px;
      border: 1px solid var(--res-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: var(--res-shadow);
      text-align: left;
    }

    .residences-hero-card strong,
    .residences-hero-card span {
      display: block;
    }

    .residences-hero-card strong {
      margin-bottom: 5px;
      color: var(--res-navy);
      font-size: 15px;
      line-height: 1.25;
    }

    .residences-hero-card span {
      color: var(--res-muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .residences-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      padding: 18px 0;
      border-top: 1px solid rgba(17, 24, 32, 0.09);
      border-bottom: 1px solid rgba(17, 24, 32, 0.09);
    }

    .residences-metric {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      min-height: 76px;
      padding: 0 22px;
      border-right: 1px solid rgba(17, 24, 32, 0.09);
      text-align: left;
    }

    .residences-metric:first-child {
      padding-left: 0;
    }

    .residences-metric:last-child {
      border-right: none;
      padding-right: 0;
    }

    .residences-metric .residences-icon {
      width: 38px;
      height: 38px;
    }

    .residences-metric strong,
    .residences-metric span {
      display: block;
    }

    .residences-metric strong {
      color: var(--res-navy);
      font-size: 28px;
      line-height: 1;
      letter-spacing: 0;
      margin-bottom: 4px;
    }

    .residences-metric span {
      color: var(--res-muted);
      font-size: 13px;
      font-weight: 750;
      line-height: 1.25;
    }

    .residences-section-heading {
      display: grid;
      justify-items: center;
      gap: 8px;
      text-align: center;
    }

    .residences-section-heading h2 {
      max-width: 920px;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 32px;
      line-height: 1.16;
      letter-spacing: 0;
      color: var(--res-navy);
    }

    .residences-offer-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .residences-offer-card {
      position: relative;
      display: grid;
      grid-template-rows: 190px minmax(0, 1fr);
      overflow: hidden;
      border: 1px solid var(--res-border);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: var(--res-shadow);
      text-align: left;
    }

    .residences-offer-card img,
    .residences-step img,
    .residences-implementation-image,
    .residences-cta-portrait {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .residences-offer-card .residences-icon-shell {
      position: absolute;
      left: 18px;
      top: 166px;
      width: 52px;
      height: 52px;
      border: 1px solid rgba(0, 109, 54, 0.15);
      background: #ffffff;
      box-shadow: 0 12px 22px rgba(17, 24, 32, 0.12);
    }

    .residences-offer-body {
      display: grid;
      gap: 8px;
      align-content: start;
      padding: 38px 20px 22px;
    }

    .residences-offer-body h3,
    .residences-step h3,
    .residences-gain h3,
    .residences-implementation-item h3 {
      color: var(--res-navy);
      font-size: 18px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .residences-offer-body p,
    .residences-step p,
    .residences-implementation-item p {
      color: var(--res-muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .residences-flow {
      display: grid;
      gap: 18px;
    }

    .residences-step-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .residences-step {
      position: relative;
      display: grid;
      grid-template-rows: 142px minmax(0, 1fr);
      border: 1px solid var(--res-border);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
      text-align: left;
    }

    .residences-step:not(:last-child)::after {
      content: "\2192";
      position: absolute;
      top: 50%;
      right: -18px;
      z-index: 2;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: #ffffff;
      color: var(--res-green);
      font-size: 24px;
      line-height: 22px;
      text-align: center;
      transform: translateY(-50%);
    }

    .residences-step img {
      border-radius: 8px 8px 0 0;
    }

    .residences-step-number {
      position: absolute;
      top: 10px;
      left: 10px;
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: var(--res-green);
      color: #ffffff;
      font-weight: 900;
      box-shadow: 0 10px 20px rgba(0, 109, 54, 0.24);
    }

    .residences-step-body {
      display: grid;
      gap: 8px;
      align-content: start;
      padding: 16px;
    }

    .residences-gains {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .residences-gain {
      --gain-accent: var(--res-green);
      --gain-accent-dark: var(--res-green-dark);
      --gain-soft: #eef8f2;
      --gain-border: rgba(0, 109, 54, 0.2);
      position: relative;
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
      min-height: 186px;
      overflow: hidden;
      padding: 28px 24px 24px;
      border: 1px solid var(--gain-border);
      border-radius: 8px;
      background: linear-gradient(135deg, var(--gain-soft) 0%, #ffffff 46%, #ffffff 100%);
      box-shadow: 0 18px 36px rgba(17, 24, 32, 0.07);
      text-align: left;
    }

    .residences-gain::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 6px;
      background: var(--gain-accent);
    }

    .residences-gain:nth-child(2) {
      --gain-accent: #0a78a8;
      --gain-accent-dark: #075d84;
      --gain-soft: #edf8ff;
      --gain-border: rgba(10, 120, 168, 0.22);
    }

    .residences-gain:nth-child(3) {
      --gain-accent: #b66a12;
      --gain-accent-dark: #87500d;
      --gain-soft: #fff6e8;
      --gain-border: rgba(182, 106, 18, 0.24);
    }

    .residences-gain .residences-icon-shell {
      background: #ffffff;
      color: var(--gain-accent);
      box-shadow: 0 10px 22px rgba(17, 24, 32, 0.1);
    }

    .residences-gain h3 {
      color: var(--gain-accent-dark);
    }

    .residences-check-list {
      display: grid;
      gap: 9px;
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
    }

    .residences-check-list li {
      position: relative;
      padding-left: 24px;
      color: #314056;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 650;
    }

    .residences-check-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gain-accent, var(--res-green));
      font-weight: 900;
    }

    .residences-implementation {
      display: grid;
      grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
      gap: 28px;
      align-items: stretch;
    }

    .residences-implementation-image {
      min-height: 360px;
      border-radius: 8px;
      box-shadow: var(--res-shadow);
    }

    .residences-implementation-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid var(--res-border);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(0, 109, 54, 0.045), #ffffff 48%);
      overflow: hidden;
    }

    .residences-implementation-item {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
      padding: 24px 26px;
      border-right: 1px solid rgba(17, 24, 32, 0.08);
      border-bottom: 1px solid rgba(17, 24, 32, 0.08);
      background: rgba(255, 255, 255, 0.72);
      text-align: left;
    }

    .residences-implementation-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .residences-implementation-points li {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 10px;
      border: 1px solid rgba(0, 109, 54, 0.14);
      border-radius: 999px;
      background: #eef8f2;
      color: var(--res-green-dark);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
    }

    .residences-implementation-item:nth-child(2n) {
      border-right: none;
    }

    .residences-implementation-item:nth-last-child(-n + 2) {
      border-bottom: none;
    }

    .residences-warning {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 22px 28px;
      border: 1px solid rgba(216, 157, 44, 0.28);
      border-radius: 8px;
      background: #fff8ea;
      text-align: left;
    }

    .residences-warning .residences-icon {
      width: 46px;
      height: 46px;
      color: #d89d2c;
    }

    .residences-warning h2 {
      color: var(--res-navy);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 20px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .residences-warning p {
      margin-top: 4px;
      color: #5a4a2e;
      line-height: 1.5;
    }

    .residences-trust {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
      gap: 24px;
      align-items: stretch;
    }

    .residences-trust-panel,
    .residences-testimonial {
      border: 1px solid var(--res-border);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(17, 24, 32, 0.055);
    }

    .residences-trust-panel {
      display: grid;
      gap: 22px;
      align-content: center;
      padding: 28px;
      text-align: left;
    }

    .residences-trust-panel h2 {
      color: var(--res-navy);
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 24px;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .residences-trust-list {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .residences-trust-list li {
      display: grid;
      justify-items: center;
      gap: 8px;
      min-height: 104px;
      padding: 14px 8px;
      border: 1px solid rgba(0, 109, 54, 0.12);
      border-radius: 8px;
      color: var(--res-green);
      text-align: center;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.25;
    }

    .residences-trust-list .residences-icon {
      width: 40px;
      height: 40px;
    }

    .residences-testimonial {
      display: grid;
      grid-template-columns: 88px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 26px;
      text-align: left;
    }

    .residences-testimonial img {
      width: 88px;
      height: 88px;
      border-radius: 999px;
      object-fit: cover;
    }

    .residences-testimonial blockquote {
      position: relative;
      margin: 0 0 12px;
      color: #23314c;
      font-size: 16px;
      line-height: 1.55;
    }

    .residences-testimonial blockquote::before {
      content: "\201C";
      color: var(--res-green);
      font-size: 36px;
      line-height: 0;
      vertical-align: -12px;
    }

    .residences-testimonial strong,
    .residences-testimonial span {
      display: block;
    }

    .residences-testimonial strong {
      color: var(--res-navy);
      margin-bottom: 3px;
    }

    .residences-testimonial span {
      color: var(--res-muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .residences-cta {
      display: grid;
      grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
      gap: 28px;
      align-items: stretch;
      padding: 30px;
      border-radius: 8px;
      background: linear-gradient(135deg, #006d36 0%, #004f2b 100%);
      color: #ffffff;
      overflow: hidden;
    }

    .residences-cta-copy {
      display: grid;
      grid-template-columns: 138px minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      text-align: left;
    }

    .residences-cta-portrait {
      height: 190px;
      border-radius: 8px;
      object-position: center top;
    }

    .residences-cta h2 {
      color: #ffffff;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: 30px;
      line-height: 1.14;
      letter-spacing: 0;
    }

    .residences-cta p {
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.5;
    }

    .residences-demo-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      align-self: center;
    }

    .residences-demo-form label {
      display: grid;
      gap: 0;
    }

    .residences-demo-form input,
    .residences-demo-form select,
    .residences-demo-form textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: 8px;
      padding: 13px 14px;
      background: #ffffff;
      color: var(--res-navy);
      font: inherit;
    }

    .residences-demo-form textarea {
      min-height: 82px;
      resize: vertical;
    }

    .residences-demo-form .residences-form-wide,
    .residences-demo-form button {
      grid-column: 1 / -1;
    }

    .residences-demo-form button {
      min-height: 50px;
      border-radius: 8px;
      background: #ffffff;
      color: var(--res-green);
      border-color: #ffffff;
      font-weight: 900;
      box-shadow: none;
    }

    .residences-cta-badges {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      line-height: 1.35;
    }

    .residences-cta-badges li {
      position: relative;
      padding-left: 20px;
    }

    .residences-cta-badges li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: #ffffff;
      font-weight: 900;
    }

    @media (max-width: 1380px) {
      .residences-hero {
        grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
      }

      .residences-hero-stack {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .residences-hero-card {
        min-height: 132px;
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1180px) {
      .residences-hero,
      .residences-implementation,
      .residences-trust,
      .residences-cta {
        grid-template-columns: 1fr;
      }

      .residences-hero {
        min-height: auto;
      }

      .residences-hero-copy {
        justify-items: center;
        text-align: center;
      }

      .residences-hero h1 {
        max-width: 780px;
        font-size: 42px;
      }

      .residences-hero .lead {
        max-width: 760px;
      }

      .residences-actions {
        justify-content: center;
      }

      .residences-hero-media img {
        height: 520px;
      }

      .residences-hero-stack,
      .residences-offer-grid,
      .residences-step-grid,
      .residences-gains,
      .residences-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .residences-step:not(:last-child)::after {
        display: none;
      }

      .residences-metric:nth-child(2n) {
        border-right: none;
      }

      .residences-metric:nth-child(n + 3) {
        padding-top: 18px;
        border-top: 1px solid rgba(17, 24, 32, 0.09);
      }

      .residences-metric:first-child {
        padding-left: 22px;
      }

      .residences-metric:last-child {
        padding-right: 22px;
      }

      .residences-trust-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .residences-landing {
        width: 100vw;
        max-width: 100vw;
        padding-left: 24px;
        padding-right: 24px;
        gap: 30px;
      }

      .residences-hero h1 {
        width: 100%;
        max-width: 10.8em;
        font-size: 32px;
      }

      .residences-hero .lead {
        font-size: 16px;
        max-width: 20.5em;
        margin-inline: auto;
      }

      .residences-actions,
      .residences-actions .button {
        width: 100%;
        min-width: 0;
      }

      .residences-hero-media img {
        height: 390px;
      }

      .residences-hero-stack,
      .residences-offer-grid,
      .residences-step-grid,
      .residences-gains,
      .residences-metrics,
      .residences-implementation-list,
      .residences-demo-form,
      .residences-trust-list {
        grid-template-columns: 1fr;
      }

      .residences-section-heading h2 {
        width: 100%;
        max-width: 12em;
        font-size: 28px;
      }

      .residences-metric,
      .residences-metric:first-child,
      .residences-metric:last-child {
        padding: 16px 0;
        border-right: none;
        border-top: 1px solid rgba(17, 24, 32, 0.09);
      }

      .residences-metric:first-child {
        border-top: none;
      }

      .residences-implementation-item,
      .residences-implementation-item:nth-child(2n),
      .residences-implementation-item:nth-last-child(-n + 2) {
        border-right: none;
        border-bottom: 1px solid rgba(17, 24, 32, 0.08);
      }

      .residences-implementation-item:last-child {
        border-bottom: none;
      }

      .residences-warning,
      .residences-testimonial,
      .residences-cta-copy {
        grid-template-columns: 1fr;
      }

      .residences-warning,
      .residences-testimonial,
      .residences-cta-copy {
        text-align: left;
      }

      .residences-cta {
        padding: 22px;
      }

      .residences-cta h2 {
        font-size: 26px;
      }

      .residences-demo-form .residences-form-wide,
      .residences-demo-form button {
        grid-column: auto;
      }
    }

    @media (max-width: 520px) {
      .residences-landing {
        width: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        margin-left: 14px;
        margin-right: 42px;
        padding-left: 0;
        padding-right: 0;
      }

      .residences-hero h1 {
        max-width: 10.4em;
        font-size: 30px;
      }

      .residences-hero-media img {
        height: 320px;
      }

      .residences-offer-card {
        grid-template-rows: 170px minmax(0, 1fr);
      }

      .residences-offer-card .residences-icon-shell {
        top: 146px;
      }

      .residences-offer-body,
      .residences-step-body {
        padding-left: 18px;
        padding-right: 24px;
      }

      .residences-offer-body h3,
      .residences-offer-body p,
      .residences-step h3,
      .residences-step p {
        max-width: 18.5em;
        overflow-wrap: anywhere;
      }
    }

    .centers-landing {
      display: grid;
      gap: 28px;
      color: #14213a;
    }

    .centers-icon {
      width: 42px;
      height: 42px;
      color: #007a3d;
      fill: none;
      stroke: currentColor;
      flex: 0 0 auto;
    }

    .centers-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
      gap: 34px;
      align-items: center;
      min-height: 560px;
    }

    .centers-hero-copy {
      display: grid;
      gap: 22px;
      text-align: left;
    }

    .centers-eyebrow {
      width: fit-content;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(0, 122, 61, 0.09);
      color: #006d36;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
    }

    .centers-hero h1 {
      max-width: 13.5ch;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(42px, 4.6vw, 68px);
      line-height: 1.08;
      letter-spacing: 0;
      color: #111a34;
    }

    .centers-hero-copy .lead {
      max-width: 62ch;
      color: #34435c;
      font-size: clamp(16px, 1.2vw, 20px);
      line-height: 1.72;
    }

    .centers-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 2px;
    }

    .centers-actions .button {
      min-width: 230px;
      border-radius: 8px;
      background: #007a3d;
      color: #ffffff;
      border-color: #007a3d;
      box-shadow: 0 18px 36px rgba(0, 122, 61, 0.18);
    }

    .centers-actions .button.secondary {
      background: #ffffff;
      color: #007a3d;
      border-color: rgba(0, 122, 61, 0.36);
      box-shadow: none;
    }

    .centers-quick-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 20px;
      max-width: 560px;
    }

    .centers-quick-point {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      color: #1c2a42;
      font-weight: 800;
      line-height: 1.25;
    }

    .centers-quick-point .centers-icon {
      width: 28px;
      height: 28px;
    }

    .centers-hero-media {
      position: relative;
      min-height: 560px;
      border-radius: 24px;
      background: #f5f0e8;
      overflow: hidden;
      isolation: isolate;
      box-shadow: 0 20px 48px rgba(17, 24, 32, 0.1);
    }

    .centers-hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.28) 100%);
      pointer-events: none;
    }

    .centers-hero-media img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .centers-floating-stack {
      position: absolute;
      top: 32px;
      right: 22px;
      z-index: 2;
      display: grid;
      gap: 16px;
      width: min(340px, calc(100% - 44px));
    }

    .centers-float-card {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 18px 20px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 24, 32, 0.08);
      box-shadow: 0 18px 42px rgba(17, 24, 32, 0.16);
      text-align: left;
    }

    .centers-float-card strong,
    .centers-float-card span {
      display: block;
    }

    .centers-float-card strong {
      color: #111a34;
      line-height: 1.25;
      margin-bottom: 4px;
    }

    .centers-float-card span {
      color: #4b5a70;
      font-size: 14px;
      line-height: 1.4;
    }

    .centers-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .centers-metric {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      min-height: 122px;
      padding: 24px;
      border: 1px solid rgba(17, 24, 32, 0.11);
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 14px 30px rgba(17, 24, 32, 0.055);
      text-align: left;
    }

    .centers-metric .centers-icon {
      width: 54px;
      height: 54px;
    }

    .centers-metric strong,
    .centers-metric span {
      display: block;
    }

    .centers-metric strong {
      color: #111a34;
      font-size: clamp(26px, 2.4vw, 36px);
      line-height: 1;
      letter-spacing: 0;
      margin-bottom: 6px;
    }

    .centers-metric span {
      color: #435168;
      line-height: 1.45;
      font-weight: 600;
    }

    .centers-section-heading {
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
    }

    .centers-section-heading h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(28px, 2.8vw, 40px);
      line-height: 1.12;
      letter-spacing: 0;
      color: #111a34;
    }

    .centers-benefits,
    .centers-environments {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 18px;
    }

    .centers-card {
      display: grid;
      gap: 14px;
      align-content: start;
      min-height: 218px;
      padding: 24px 18px;
      border: 1px solid rgba(17, 24, 32, 0.1);
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 14px 30px rgba(17, 24, 32, 0.055);
      text-align: left;
    }

    .centers-card .centers-icon {
      width: 50px;
      height: 50px;
    }

    .centers-card h3 {
      color: #14213a;
      font-size: 17px;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .centers-card p {
      color: #4c5a70;
      font-size: 14px;
      line-height: 1.55;
    }

    .centers-flow {
      display: grid;
      gap: 18px;
    }

    .centers-flow-steps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 28px;
    }

    .centers-flow-step {
      position: relative;
      display: grid;
      grid-template-columns: 40px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      min-height: 80px;
      padding: 16px 18px;
      border: 1px solid rgba(17, 24, 32, 0.1);
      border-radius: 12px;
      background: #ffffff;
      text-align: left;
    }

    .centers-flow-step:not(:last-child)::after {
      content: "\2192";
      position: absolute;
      right: -24px;
      top: 50%;
      transform: translateY(-50%);
      color: #718096;
      font-size: 28px;
    }

    .centers-flow-step .centers-icon {
      width: 40px;
      height: 40px;
    }

    .centers-flow-step strong {
      color: #20304a;
      font-size: 14px;
      line-height: 1.35;
    }

    .centers-environments .centers-card {
      min-height: 236px;
      text-align: center;
      justify-items: center;
    }

    .centers-split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 24px;
    }

    .centers-care-panel,
    .centers-privacy-panel {
      display: grid;
      min-height: 300px;
      border: 1px solid rgba(0, 122, 61, 0.16);
      border-radius: 14px;
      background:
        radial-gradient(circle at 92% 16%, rgba(0, 122, 61, 0.1), transparent 28%),
        linear-gradient(135deg, #f4faf6 0%, #ffffff 100%);
      overflow: hidden;
      text-align: left;
    }

    .centers-care-panel {
      grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
      align-items: end;
      padding: 28px 0 0 28px;
    }

    .centers-care-copy,
    .centers-privacy-copy {
      display: grid;
      gap: 14px;
      align-content: start;
      padding-bottom: 28px;
    }

    .centers-care-panel h3,
    .centers-privacy-panel h3 {
      color: #111a34;
      font-size: clamp(24px, 2vw, 32px);
      line-height: 1.15;
    }

    .centers-check-list {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .centers-check-list li {
      position: relative;
      padding-left: 26px;
      color: #3e4c62;
      line-height: 1.45;
      font-weight: 650;
    }

    .centers-check-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: #007a3d;
      font-weight: 900;
    }

    .centers-care-image {
      width: 100%;
      height: 230px;
      object-fit: contain;
      align-self: end;
    }

    .centers-privacy-panel {
      grid-template-columns: minmax(0, 1fr) 170px;
      align-items: center;
      padding: 28px;
    }

    .centers-privacy-art {
      display: grid;
      place-items: center;
      width: 150px;
      height: 150px;
      border-radius: 999px;
      background: rgba(0, 122, 61, 0.1);
      justify-self: end;
    }

    .centers-privacy-art .centers-icon {
      width: 94px;
      height: 94px;
      color: #007a3d;
    }

    .centers-warning {
      display: grid;
      gap: 16px;
      padding: 24px 30px;
      border: 1px solid rgba(218, 37, 50, 0.2);
      border-radius: 14px;
      background:
        radial-gradient(circle at 8% 12%, rgba(218, 37, 50, 0.07), transparent 30%),
        linear-gradient(135deg, #fff6f6 0%, #ffffff 100%);
      color: #d72532;
      text-align: center;
    }

    .centers-warning h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      color: #d72532;
      font-size: clamp(24px, 2.5vw, 34px);
      line-height: 1.15;
      letter-spacing: 0;
    }

    .centers-warning p {
      max-width: 820px;
      margin: 0 auto;
      color: #5f2931;
      line-height: 1.55;
    }

    .centers-warning-list {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .centers-warning-list li {
      display: grid;
      gap: 8px;
      justify-items: center;
      align-content: start;
      padding: 0 8px;
      border-right: 1px solid rgba(218, 37, 50, 0.18);
      font-size: 13px;
      line-height: 1.25;
      font-weight: 800;
    }

    .centers-warning-list li:last-child {
      border-right: none;
    }

    .centers-warning-list .centers-icon {
      width: 46px;
      height: 46px;
      color: #d72532;
    }

    .centers-final-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
      gap: 28px;
      align-items: stretch;
    }

    .centers-testimonial,
    .centers-demo-card {
      border: 1px solid rgba(0, 122, 61, 0.14);
      border-radius: 14px;
      background:
        radial-gradient(circle at 8% 16%, rgba(0, 122, 61, 0.1), transparent 28%),
        #ffffff;
      box-shadow: 0 14px 30px rgba(17, 24, 32, 0.055);
    }

    .centers-testimonial {
      display: grid;
      align-content: center;
      gap: 22px;
      min-height: 360px;
      padding: 44px;
      text-align: left;
    }

    .centers-testimonial blockquote {
      position: relative;
      margin: 0;
      color: #23314c;
      font-size: clamp(19px, 1.6vw, 24px);
      font-style: italic;
      line-height: 1.58;
    }

    .centers-testimonial blockquote::before {
      content: "\201C";
      display: block;
      color: rgba(0, 122, 61, 0.45);
      font-size: 72px;
      line-height: 0.7;
      font-style: normal;
    }

    .centers-testimonial-author {
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
    }

    .centers-testimonial-author img {
      width: 74px;
      height: 74px;
      border-radius: 999px;
      object-fit: cover;
    }

    .centers-testimonial-author strong,
    .centers-testimonial-author span {
      display: block;
    }

    .centers-testimonial-author strong {
      color: #111a34;
      margin-bottom: 4px;
    }

    .centers-testimonial-author span {
      color: #4c5a70;
      line-height: 1.35;
    }

    .centers-testimonial-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      color: #007a3d;
      font-weight: 800;
    }

    .centers-testimonial-badge .centers-icon {
      width: 28px;
      height: 28px;
    }

    .centers-demo-card {
      display: grid;
      gap: 18px;
      padding: 32px 36px;
      text-align: left;
    }

    .centers-demo-card h2 {
      font-family: "Manrope", "Segoe UI", sans-serif;
      color: #111a34;
      font-size: clamp(26px, 2.4vw, 36px);
      line-height: 1.16;
      letter-spacing: 0;
    }

    .centers-demo-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .centers-demo-form label {
      display: grid;
      gap: 0;
    }

    .centers-demo-form input,
    .centers-demo-form select,
    .centers-demo-form textarea {
      width: 100%;
      border: 1px solid rgba(17, 24, 32, 0.12);
      border-radius: 8px;
      padding: 13px 14px;
      background: #ffffff;
      color: #111a34;
      font: inherit;
      min-height: 48px;
    }

    .centers-demo-form textarea {
      min-height: 88px;
      resize: vertical;
    }

    .centers-demo-form .centers-form-wide,
    .centers-demo-form button {
      grid-column: 1 / -1;
    }

    .centers-demo-form button {
      min-height: 50px;
      border-radius: 8px;
      background: #007a3d;
      color: #ffffff;
      border-color: #007a3d;
      box-shadow: none;
    }

    .centers-demo-badges {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #526074;
      font-size: 13px;
      line-height: 1.4;
    }

    .centers-demo-badges li::before {
      content: "\2713";
      margin-right: 6px;
      color: #007a3d;
    }

    @media (max-width: 1280px) {
      .centers-benefits,
      .centers-environments,
      .centers-warning-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .centers-warning-list li:nth-child(3n) {
        border-right: none;
      }
    }

    @media (max-width: 1120px) {
      .centers-hero,
      .centers-split,
      .centers-final-grid {
        grid-template-columns: 1fr;
      }

      .centers-hero {
        min-height: auto;
      }

      .centers-hero-copy {
        justify-items: center;
        text-align: center;
      }

      .centers-hero h1,
      .centers-hero-copy .lead {
        max-width: 760px;
      }

      .centers-actions {
        justify-content: center;
      }

      .centers-quick-points {
        max-width: 680px;
      }

      .centers-metrics,
      .centers-flow-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .centers-flow-step:not(:last-child)::after {
        content: "";
        display: none;
      }
    }

    @media (max-width: 760px) {
      .centers-landing {
        padding-left: 24px;
        padding-right: 24px;
      }

      .centers-hero-media,
      .centers-hero-media img {
        min-height: 430px;
      }

      .centers-floating-stack {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        margin: -104px 14px 0;
      }

      .centers-metrics,
      .centers-benefits,
      .centers-flow-steps,
      .centers-environments,
      .centers-warning-list,
      .centers-demo-form,
      .centers-care-panel,
      .centers-privacy-panel {
        grid-template-columns: 1fr;
      }

      .centers-warning-list li {
        border-right: none;
        border-bottom: 1px solid rgba(218, 37, 50, 0.14);
        padding: 12px 0;
      }

      .centers-warning-list li:last-child {
        border-bottom: none;
      }

      .centers-care-panel {
        padding: 24px 24px 0;
      }

      .centers-care-copy,
      .centers-privacy-copy {
        padding-bottom: 20px;
      }

      .centers-privacy-art {
        justify-self: center;
      }

      .centers-demo-form .centers-form-wide,
      .centers-demo-form button {
        grid-column: auto;
      }
    }

    @media (max-width: 560px) {
      .centers-landing {
        padding-left: 14px;
        padding-right: 14px;
      }

      .centers-hero h1 {
        font-size: clamp(34px, 11vw, 44px);
      }

      .centers-actions,
      .centers-actions .button {
        width: 100%;
        min-width: 0;
      }

      .centers-quick-points {
        grid-template-columns: 1fr;
      }

      .centers-hero-media,
      .centers-hero-media img {
        min-height: 320px;
      }

      .centers-floating-stack {
        margin: -78px 10px 0;
      }

      .centers-metric,
      .centers-flow-step {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }

      .centers-warning,
      .centers-testimonial,
      .centers-demo-card {
        padding: 22px;
      }
    }

    @media (max-width: 1120px) {
      .hotel-hero,
      .hotel-final-cta,
      .hotel-decision-grid,
      .school-hero,
      .business-hero,
      .school-final-grid,
      .school-guidance-grid,
      .school-environment-grid,
      .hotel-lead-form,
      .business-privacy-grid {
        grid-template-columns: 1fr;
      }

      .camp-landing .school-hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .camp-bullet-stack {
        width: min(330px, calc(52% - 14px));
      }

      .camp-benefit-system {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
          "hub hub"
          "benefit-1 benefit-2"
          "benefit-3 benefit-4";
      }

      .camp-benefit-system::before {
        inset: 58px 36px;
        border-radius: 36px;
      }

      .camp-benefit-hub {
        min-height: auto;
        border-radius: 24px;
      }

      .camp-audience-stage {
        grid-template-columns: 1fr;
        max-width: 720px;
      }

      .camp-landing .school-final-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .camp-landing .school-demo-card {
        min-width: 0;
      }

      .hotel-benefits,
      .school-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hotel-metrics,
      .hotel-flow-steps,
      .hotel-image-band,
      .school-proof-strip,
      .school-flow-steps,
      .business-flow-steps,
      .school-environment-cards,
      .hotel-assurance-strip,
      .hotel-role-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hotel-metric:nth-child(2),
      .hotel-role:nth-child(2),
      .hotel-assurance:nth-child(2) {
        border-right: none;
      }

      .hotel-hero-copy {
        text-align: center;
        justify-items: center;
      }

      .school-hero-copy {
        text-align: center;
        justify-items: center;
      }

      .hotel-hero h1,
      .hotel-hero-copy .lead,
      .school-hero h1,
      .school-hero-copy .lead,
      .business-hero h1 {
        max-width: 760px;
      }

      .hotel-actions,
      .hotel-final-cta .hotel-actions,
      .school-actions {
        justify-content: center;
      }

      .hotel-final-cta {
        text-align: center;
      }

      .hotel-value-grid {
        grid-template-columns: 1fr;
      }

      .hotel-value-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hotel-value-step:nth-child(2) {
        border-right: none;
      }

      .business-hero {
        min-height: auto;
        padding: 52px 36px;
      }

      .business-hero .school-hero-copy {
        max-width: 780px;
        margin: 0 auto;
        justify-items: center;
        text-align: center;
      }

      .business-hero-media {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 520px;
        border-radius: 30px;
        overflow: hidden;
      }

      .business-hero-media img {
        min-height: 520px;
      }

      .business-floating-stack {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        margin: -110px 22px 0;
      }

      .business-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .camp-landing {
        gap: 24px;
        padding-left: 18px;
        padding-right: 18px;
      }

      .camp-landing .school-hero {
        gap: 20px;
        padding: 20px;
        border-radius: 22px;
      }

      .camp-landing .school-hero-copy {
        gap: 18px;
        width: 100%;
        max-width: 100%;
        justify-items: start;
        text-align: left;
      }

      .camp-landing .school-hero h1 {
        max-width: 12.8ch;
        font-size: clamp(32px, 8.8vw, 40px);
        line-height: 1.07;
      }

      .camp-landing .school-hero-copy .lead {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.55;
      }

      .camp-landing .school-eyebrow {
        max-width: 100%;
        white-space: normal;
        text-align: left;
        line-height: 1.25;
      }

      .camp-landing .school-actions {
        width: 100%;
        margin-top: 0;
      }

      .camp-landing .school-actions .button {
        width: 100%;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 14px;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
      }

      .hero-with-media,
      .sector-layout,
      .sector-gallery,
      .school-audience-grid {
        grid-template-columns: 1fr;
      }

      .sales-card {
        position: static;
      }

      .hotel-hero-media,
      .hotel-hero-media img,
      .school-hero-media,
      .school-hero-media img {
        min-height: 430px;
      }

      .camp-landing .school-hero-media,
      .camp-landing .school-hero-media img {
        height: 380px;
        min-height: 380px;
        border-radius: 22px;
      }

      .hotel-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin: -84px 14px 0;
      }

      .hotel-metrics,
      .hotel-benefits,
      .hotel-value-cards,
      .hotel-value-strip,
      .hotel-flow-steps,
      .hotel-image-band,
      .school-proof-strip,
      .school-flow-steps,
      .business-flow-steps,
      .school-environment-grid,
      .school-environment-cards,
      .school-guidance-grid,
      .hotel-lead-form,
      .school-demo-form,
      .business-form,
      .hotel-decision-items,
      .hotel-decision-panel[data-tone="red"] .hotel-decision-items,
      .hotel-role-strip,
      .hotel-assurance-strip {
        grid-template-columns: 1fr;
      }

      .school-floating-stack {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        margin: -120px 14px 0;
      }

      .school-bullet-stack {
        margin-top: -86px;
        padding: 20px;
      }

      .camp-bullet-stack {
        bottom: auto;
        width: auto;
        margin-top: -64px;
        padding: 14px;
        border-radius: 16px;
      }

      .camp-bullet-stack .school-hero-bullets {
        gap: 9px;
      }

      .camp-bullet-stack .school-hero-bullets li {
        font-size: 13px;
        line-height: 1.22;
      }

      .camp-landing .hotel-metrics {
        width: 100%;
        padding: 14px 16px;
        border-radius: 18px;
      }

      .camp-landing .hotel-metric {
        grid-template-columns: 38px minmax(0, 1fr);
        justify-content: start;
        min-height: auto;
        padding: 16px 0;
      }

      .camp-landing .hotel-metric .camp-icon {
        width: 38px;
        height: 38px;
      }

      .camp-landing .hotel-metric div {
        min-height: auto;
      }

      .camp-landing .hotel-metric strong {
        max-width: none;
        font-size: clamp(24px, 7.2vw, 30px);
      }

      .camp-benefit-system {
        grid-template-columns: 1fr;
        grid-template-areas:
          "hub"
          "benefit-1"
          "benefit-2"
          "benefit-3"
          "benefit-4";
        padding: 18px;
        border-radius: 22px;
      }

      .camp-benefit-system::before {
        display: none;
      }

      .camp-benefit-card {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 16px;
        border-radius: 16px;
      }

      .camp-benefit-card .camp-icon {
        width: 42px;
        height: 42px;
        padding: 8px;
      }

      .camp-benefit-hub {
        justify-items: start;
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
        text-align: left;
      }

      .camp-benefit-hub h3,
      .camp-benefit-hub p,
      .camp-benefit-tags {
        max-width: none;
      }

      .camp-benefit-tags {
        justify-content: flex-start;
      }

      .camp-audience-image,
      .camp-audience-image img {
        min-height: 240px;
      }

      .camp-audience-stage {
        max-width: 100%;
      }

      .school-hero-bullets {
        gap: 12px;
      }

      .business-flow-step {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .business-flow-step h3,
      .business-flow-step p,
      .business-flow-step svg,
      .business-flow-step img {
        grid-column: auto;
        grid-row: auto;
      }

      .school-audience-card {
        grid-template-columns: 1fr;
      }

      .business-audience-card img,
      .business-audience-card .school-audience-content {
        grid-column: auto;
        grid-row: auto;
      }

      .school-audience-card img {
        min-height: 220px;
        max-height: 260px;
      }

      .school-guidance-panel .school-panel-icon-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hotel-metric,
      .hotel-role,
      .hotel-assurance,
      .hotel-value-step {
        border-right: none;
        border-bottom: 1px solid rgba(17, 24, 32, 0.1);
        padding: 18px 0;
      }

      .hotel-metric:last-child,
      .hotel-role:last-child,
      .hotel-assurance:last-child,
      .hotel-value-step:last-child {
        border-bottom: none;
      }

      .hotel-flow-step:not(:last-child)::after {
        content: "";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -20px;
        width: 2px;
        height: 22px;
        background: rgba(0, 122, 61, 0.28);
        transform: none;
      }

      .school-flow-step:not(:last-child)::after {
        content: "";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -20px;
        width: 2px;
        height: 22px;
        background: rgba(0, 122, 61, 0.28);
        transform: none;
      }

      .hotel-privacy,
      .hotel-final-cta,
      .school-demo-card {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .hotel-value-featured,
      .hotel-value-card,
      .hotel-value-step {
        padding: 22px;
      }

      .hotel-value-title-row {
        align-items: start;
      }

      .hotel-title-icon {
        width: 62px;
        height: 62px;
      }

      .hotel-final-cta ul {
        grid-template-columns: 1fr;
      }

      .school-demo-form {
        grid-column: auto;
        grid-row: auto;
      }

      .business-landing {
        padding-left: 24px;
        padding-right: 24px;
      }

      .business-hero {
        margin-left: 0;
        margin-right: 0;
        padding: 30px 24px 40px;
      }

      .business-hero h1 {
        font-size: clamp(42px, 15vw, 58px);
        max-width: 8.5ch;
      }

      .business-hero .school-actions {
        width: 100%;
        gap: 14px;
      }

      .business-hero .school-actions .button {
        min-width: 0;
        width: 100%;
      }

      .business-proof-strip {
        grid-template-columns: 1fr;
      }

      .business-floating-stack {
        margin: -86px 14px 0;
        padding: 20px;
      }

      .business-hero-bullets {
        gap: 12px;
      }

      .school-demo-form label:last-of-type,
      .hotel-lead-form label:last-of-type,
      .hotel-lead-form button,
      .school-demo-form button,
      .business-form .business-form-wide,
      .business-form button {
        grid-column: auto;
      }
    }

    @media (max-width: 560px) {
      .camp-landing {
        padding-left: 14px;
        padding-right: 14px;
      }

      .camp-landing .school-hero-copy .lead {
        font-size: 15px;
      }

      .hotel-hero h1,
      .school-hero h1,
      .business-hero h1 {
        font-size: clamp(34px, 11vw, 44px);
      }

      .camp-landing .school-hero h1 {
        font-size: clamp(30px, 8.6vw, 36px);
      }

      .hotel-actions,
      .hotel-final-cta .hotel-actions,
      .school-actions,
      .business-hero .school-actions {
        width: 100%;
        gap: 10px;
      }

      .hotel-actions .button,
      .hotel-final-cta .hotel-actions .button,
      .school-actions .button,
      .business-hero .school-actions .button {
        width: 100%;
        min-width: 0;
      }

      .hotel-hero-media,
      .hotel-hero-media img,
      .school-hero-media,
      .school-hero-media img,
      .business-hero-media img {
        min-height: 320px;
      }

      .camp-landing .school-hero-media,
      .camp-landing .school-hero-media img {
        height: 340px;
        min-height: 340px;
      }

      .hotel-floating-card,
      .school-floating-stack,
      .business-floating-stack {
        margin-left: 10px;
        margin-right: 10px;
      }

      .camp-bullet-stack {
        margin-left: 8px;
        margin-right: 8px;
      }

      .business-landing {
        padding-left: 14px;
        padding-right: 14px;
      }

      .business-hero {
        margin-left: 0;
        margin-right: 0;
        padding: 24px 14px 34px;
      }

      .business-floating-stack {
        margin-top: -96px;
        padding: 18px;
      }

      .hotel-final-cta,
      .school-demo-card,
      .sales-card {
        padding: 18px;
      }

      .school-proof-item {
        grid-template-columns: 30px minmax(0, 1fr);
      }

      .school-guidance-panel .school-panel-icon-list {
        grid-template-columns: 1fr;
      }

      .camp-benefit-hub {
        padding: 26px 22px;
      }

      .camp-benefit-hub h3 {
        max-width: none;
      }

      .camp-audience-content {
        padding: 20px;
      }
    }

    .centers-infographic {
      --centers-green: #007a3d;
      --centers-green-dark: #005b2d;
      --centers-red: #ef3f3a;
      --centers-ink: #111a34;
      --centers-muted: #4c5a70;
      --centers-line: rgba(17, 24, 32, 0.1);
      gap: 30px;
      max-width: 1760px;
      color: var(--centers-ink);
    }

    .centers-infographic .centers-icon {
      display: block;
      object-fit: contain;
    }

    .centers-infographic .centers-hero {
      grid-template-columns: minmax(380px, 0.88fr) minmax(520px, 1.12fr);
      gap: 28px;
      min-height: 520px;
      padding-top: 4px;
    }

    .centers-infographic .centers-hero h1 {
      max-width: 15ch;
      font-size: clamp(42px, 4.25vw, 64px);
      line-height: 1.08;
    }

    .centers-infographic .centers-hero-copy {
      gap: 18px;
    }

    .centers-infographic .centers-eyebrow {
      background: rgba(0, 122, 61, 0.1);
      color: var(--centers-green-dark);
      font-weight: 900;
    }

    .centers-infographic .centers-quick-points {
      gap: 12px 18px;
      margin-top: 2px;
    }

    .centers-infographic .centers-quick-point {
      font-size: 14px;
      font-weight: 750;
    }

    .centers-infographic .centers-actions .button {
      min-width: 214px;
      min-height: 52px;
      border-radius: 8px;
    }

    .centers-infographic .centers-hero-media {
      min-height: 520px;
      border-radius: 0;
      background: #f7f0e8;
      box-shadow: none;
    }

    .centers-infographic .centers-hero-media img {
      min-height: 520px;
      object-position: center;
    }

    .centers-infographic .centers-hero-media > img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center;
    }

    .centers-infographic .centers-floating-stack img.centers-icon {
      width: 42px;
      height: 42px;
      min-height: 0;
      object-fit: contain;
    }

    .centers-infographic .centers-hero-media::before {
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.16));
    }

    .centers-infographic .centers-floating-stack {
      display: grid;
      position: absolute;
      top: 32px;
      right: 12px;
      z-index: 2;
      width: min(500px, calc(100% - 24px));
    }

    .centers-infographic .centers-float-card {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 18px 22px;
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 16px 36px rgba(17, 24, 32, 0.15);
    }

    .centers-infographic .centers-float-row {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      color: #334155;
      font-size: 15px;
      line-height: 1.3;
    }

    .centers-infographic .centers-float-row + .centers-float-row {
      padding-top: 12px;
      border-top: 1px solid rgba(0, 122, 61, 0.14);
    }

    .centers-infographic .centers-float-row:first-child {
      color: #111a34;
      font-size: 17px;
      font-weight: 850;
    }

    .centers-infographic .centers-float-row:first-child span {
      white-space: nowrap;
    }

    .centers-infographic .centers-float-row .centers-icon {
      width: 34px;
      height: 34px;
      min-height: 0;
      object-fit: contain;
    }

    .centers-infographic .centers-float-row span {
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
    }

    .centers-infographic .centers-metrics {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      overflow: hidden;
      border: 1px solid var(--centers-line);
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 16px 34px rgba(17, 24, 32, 0.055);
    }

    .centers-infographic .centers-metric {
      min-height: 116px;
      border: 0;
      border-right: 1px solid var(--centers-line);
      border-radius: 0;
      box-shadow: none;
    }

    .centers-infographic .centers-metric:last-child {
      border-right: 0;
    }

    .centers-infographic .centers-metric strong {
      font-size: clamp(24px, 2.1vw, 34px);
    }

    .centers-challenges {
      display: grid;
      grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.7fr);
      gap: 0;
      overflow: hidden;
      border: 1px solid rgba(0, 122, 61, 0.08);
      border-radius: 14px;
      background: linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
      box-shadow: 0 16px 34px rgba(17, 24, 32, 0.045);
    }

    .centers-challenges-heading {
      display: grid;
      gap: 12px;
      align-content: center;
      padding: 34px;
      border-right: 1px solid var(--centers-line);
      text-align: left;
    }

    .centers-challenges-heading span,
    .centers-infographic .centers-section-heading span,
    .centers-gain-intro span {
      color: var(--centers-green);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .centers-challenges-heading h2 {
      max-width: 14em;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(24px, 2.4vw, 34px);
      line-height: 1.16;
      color: var(--centers-ink);
    }

    .centers-challenge-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      align-items: stretch;
    }

    .centers-challenge {
      display: grid;
      gap: 16px;
      justify-items: center;
      align-content: center;
      min-height: 190px;
      padding: 24px 16px;
      border-right: 1px solid var(--centers-line);
      color: #24324a;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.35;
      text-align: center;
    }

    .centers-challenge:last-child {
      border-right: 0;
    }

    .centers-challenge .centers-icon {
      width: 78px;
      height: 78px;
    }

    .centers-challenges-note {
      grid-column: 1 / -1;
      padding: 18px 34px;
      border-top: 1px solid rgba(0, 122, 61, 0.08);
      color: var(--centers-green-dark);
      font-weight: 750;
      text-align: center;
    }

    .centers-infographic .centers-section-heading {
      margin-top: 2px;
    }

    .centers-infographic .centers-flow {
      gap: 16px;
    }

    .centers-infographic .centers-flow-steps {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 26px;
      align-items: stretch;
    }

    .centers-infographic .centers-flow-step {
      grid-template-columns: 80px minmax(0, 1fr);
      align-items: start;
      min-height: 152px;
      padding: 38px 10px 14px 0;
      border: 0;
      border-radius: 0;
      background: transparent;
    }

    .centers-infographic .centers-flow-step:not(:last-child)::after {
      right: -18px;
      color: var(--centers-green);
      font-size: 28px;
    }

    .centers-infographic .centers-flow-number {
      position: absolute;
      top: 0;
      left: 17px;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--centers-green);
      color: #ffffff;
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
      z-index: 1;
    }

    .centers-infographic .centers-flow-step .centers-icon {
      width: 70px;
      height: 70px;
      margin-top: 22px;
      justify-self: center;
    }

    .centers-infographic .centers-flow-step strong,
    .centers-infographic .centers-flow-step div > span {
      display: block;
    }

    .centers-infographic .centers-flow-step strong {
      margin: 20px 0 6px;
      color: var(--centers-ink);
      font-size: 15px;
      line-height: 1.22;
    }

    .centers-infographic .centers-flow-step div > span {
      color: var(--centers-muted);
      font-size: 13px;
      font-weight: 650;
      line-height: 1.42;
    }

    .centers-flow-note {
      display: flex;
      justify-content: center;
      color: var(--centers-green-dark);
      font-weight: 850;
      text-align: center;
    }

    .centers-gain-band {
      display: grid;
      grid-template-columns: minmax(240px, 1.35fr) repeat(6, minmax(0, 1fr));
      gap: 0;
      overflow: hidden;
      border-radius: 14px;
      background: linear-gradient(135deg, #007a3d 0%, #005d2f 100%);
      color: #ffffff;
      box-shadow: 0 20px 46px rgba(0, 122, 61, 0.2);
    }

    .centers-gain-intro,
    .centers-gain {
      display: grid;
      align-content: center;
      min-height: 190px;
      padding: 26px 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.16);
      text-align: center;
    }

    .centers-gain-intro {
      justify-items: start;
      text-align: left;
    }

    .centers-gain-intro span {
      color: rgba(255, 255, 255, 0.72);
    }

    .centers-gain-intro h2 {
      margin-top: 10px;
      color: #ffffff;
      font-family: "Manrope", "Segoe UI", sans-serif;
      font-size: clamp(24px, 2.2vw, 34px);
      line-height: 1.16;
    }

    .centers-gain {
      gap: 10px;
      justify-items: center;
    }

    .centers-gain:last-child {
      border-right: 0;
    }

    .centers-gain .centers-icon {
      width: 42px;
      height: 42px;
      filter: brightness(0) invert(1);
      opacity: 0.94;
    }

    .centers-gain h3 {
      color: #ffffff;
      font-size: 16px;
      line-height: 1.18;
    }

    .centers-gain p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 12px;
      font-weight: 650;
      line-height: 1.35;
    }

    .centers-infographic .centers-environments {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .centers-infographic .centers-environments .centers-card {
      grid-template-columns: 168px minmax(0, 1fr);
      gap: 0;
      align-items: stretch;
      min-height: 150px;
      padding: 0;
      overflow: hidden;
      text-align: left;
      justify-items: stretch;
    }

    .centers-card-image {
      width: 100%;
      height: 100%;
      min-height: 150px;
      object-fit: cover;
    }

    .centers-card-body {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 20px;
    }

    .centers-card-body .centers-icon {
      width: 42px;
      height: 42px;
    }

    .centers-infographic .centers-split {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 20px;
    }

    .centers-infographic .centers-care-panel,
    .centers-infographic .centers-privacy-panel {
      min-height: 260px;
      border-color: rgba(0, 122, 61, 0.1);
      background: linear-gradient(135deg, #f6fbf8 0%, #ffffff 100%);
      box-shadow: 0 14px 30px rgba(17, 24, 32, 0.045);
    }

    .centers-infographic .centers-care-panel {
      grid-template-columns: minmax(0, 1fr) minmax(190px, 0.55fr);
      align-items: center;
      padding: 30px 28px;
    }

    .centers-infographic .centers-care-copy {
      align-content: center;
      padding-bottom: 0;
    }

    .centers-infographic .centers-care-image {
      align-self: center;
      justify-self: center;
      width: min(100%, 300px);
      height: 190px;
      object-fit: contain;
      object-position: center;
    }

    .centers-infographic .centers-privacy-panel {
      grid-template-columns: minmax(0, 1fr) 150px;
    }

    .centers-infographic .centers-privacy-art {
      width: 126px;
      height: 126px;
      background: rgba(0, 122, 61, 0.1);
    }

    .centers-infographic .centers-privacy-art .centers-icon {
      width: 72px;
      height: 72px;
    }

    .centers-infographic .centers-warning {
      gap: 14px;
      background: linear-gradient(135deg, #fff3f3 0%, #fff8f8 100%);
      border-color: rgba(239, 63, 58, 0.16);
      color: var(--centers-red);
    }

    .centers-infographic .centers-warning h2 {
      color: var(--centers-red);
      font-size: clamp(22px, 2.1vw, 30px);
    }

    .centers-infographic .centers-warning-list .centers-icon {
      width: 38px;
      height: 38px;
    }

    .centers-infographic .centers-final-grid {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: 22px;
    }

    .centers-infographic .centers-testimonial,
    .centers-infographic .centers-demo-card {
      min-height: 320px;
      border-color: rgba(0, 122, 61, 0.1);
      background: #ffffff;
    }

    .centers-infographic .centers-testimonial {
      padding: 34px;
    }

    .centers-demo-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 210px;
      gap: 18px;
      align-items: stretch;
    }

    .centers-infographic .centers-demo-form {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .centers-infographic .centers-demo-form input,
    .centers-infographic .centers-demo-form select,
    .centers-infographic .centers-demo-form textarea {
      min-height: 42px;
      padding: 10px 12px;
      font-size: 14px;
    }

    .centers-infographic .centers-demo-form textarea {
      min-height: 74px;
    }

    .centers-demo-aside {
      display: grid;
      gap: 12px;
      place-items: center;
      align-content: center;
      padding: 22px;
      border-radius: 12px;
      background: #f5faf7;
      color: var(--centers-ink);
      text-align: center;
    }

    .centers-demo-aside .centers-icon {
      width: 54px;
      height: 54px;
    }

    .centers-demo-aside strong,
    .centers-demo-aside span {
      display: block;
      line-height: 1.35;
    }

    .centers-demo-aside span {
      color: var(--centers-muted);
      font-size: 13px;
    }

    .centers-trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 32px;
      align-items: center;
      justify-content: center;
      color: #7a8493;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
      font-style: italic;
    }

    .centers-trust-strip span:first-child {
      font-family: inherit;
      font-size: 14px;
      font-style: normal;
      font-weight: 750;
    }

    @media (max-width: 1320px) {
      .centers-gain-band {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .centers-gain-intro,
      .centers-gain:nth-child(3n) {
        border-right: 0;
      }

      .centers-infographic .centers-environments .centers-card {
        grid-template-columns: 132px minmax(0, 1fr);
      }
    }

    @media (max-width: 1120px) {
      .centers-infographic .centers-hero,
      .centers-challenges,
      .centers-infographic .centers-split,
      .centers-infographic .centers-final-grid,
      .centers-demo-layout {
        grid-template-columns: 1fr;
      }

      .centers-infographic .centers-hero {
        min-height: auto;
      }

      .centers-infographic .centers-hero-copy {
        justify-items: center;
        text-align: center;
      }

      .centers-challenges-heading {
        border-right: 0;
        border-bottom: 1px solid var(--centers-line);
        text-align: center;
        justify-items: center;
      }

      .centers-challenge-grid,
      .centers-infographic .centers-flow-steps,
      .centers-infographic .centers-environments,
      .centers-infographic .centers-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .centers-infographic .centers-flow-step:not(:last-child)::after {
        display: none;
      }
    }

    @media (max-width: 760px) {
      .centers-infographic {
        padding-left: 18px;
        padding-right: 18px;
      }

      .centers-infographic .centers-hero-media,
      .centers-infographic .centers-hero-media img {
        min-height: 340px;
      }

      .centers-infographic .centers-floating-stack {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        margin: -88px 12px 0;
      }

      .centers-infographic .centers-metrics,
      .centers-challenge-grid,
      .centers-infographic .centers-flow-steps,
      .centers-gain-band,
      .centers-infographic .centers-environments,
      .centers-infographic .centers-demo-form {
        grid-template-columns: 1fr;
      }

      .centers-infographic .centers-metric,
      .centers-challenge,
      .centers-gain {
        border-right: 0;
        border-bottom: 1px solid var(--centers-line);
      }

      .centers-gain {
        border-bottom-color: rgba(255, 255, 255, 0.16);
      }

      .centers-infographic .centers-environments .centers-card,
      .centers-infographic .centers-care-panel,
      .centers-infographic .centers-privacy-panel {
        grid-template-columns: 1fr;
      }

      .centers-card-image {
        min-height: 190px;
      }

      .centers-infographic .centers-privacy-art {
        justify-self: center;
      }
    }

    /* Keep the dedicated sector landings aligned with the Empresas canvas. */
    .school-landing,
    .residences-landing,
    .centers-landing,
    .hotel-landing {
      max-width: 1600px;
    }
