body.page-use_cases {
      background:
        linear-gradient(180deg, #ffffff 0%, #fbfdfc 48%, #f3faf6 100%);
    }

    body.page-use_cases main {
      max-width: 1280px;
      padding-top: 28px;
      padding-bottom: 34px;
    }

    .use-page {
      --use-green: #007a3d;
      --use-green-dark: #005f31;
      --use-green-soft: #eef9f3;
      --use-green-wash: #f6fcf8;
      --use-ink: #101820;
      --use-muted: #4c5d69;
      --use-border: #d9e7de;
      --use-red: #ed2929;
      --use-red-soft: #fff0f0;
      display: grid;
      gap: 30px;
      color: var(--use-ink);
    }

    .use-page h1,
    .use-page h2,
    .use-page h3 {
      margin: 0;
      font-family: "Manrope", "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    .use-page h1 {
      max-width: 12ch;
      font-size: 58px;
      line-height: 1.08;
      font-weight: 900;
    }

    .use-page h1 span {
      color: var(--use-green);
    }

    .use-page h2 {
      font-size: 32px;
      line-height: 1.18;
      font-weight: 900;
      text-align: center;
    }

    .use-page h3 {
      font-size: 17px;
      line-height: 1.25;
      font-weight: 900;
    }

    .use-page p {
      color: var(--use-muted);
      line-height: 1.58;
    }

    .use-page .button {
      min-width: 190px;
      min-height: 50px;
      border-radius: 8px;
      background: var(--use-green);
      border-color: var(--use-green);
      color: #ffffff;
      box-shadow: 0 14px 28px rgba(0, 122, 61, 0.2);
    }

    .use-page .button:hover {
      background: var(--use-green-dark);
      border-color: var(--use-green-dark);
    }

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

    .use-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
      gap: 46px;
      align-items: center;
      min-height: 640px;
    }

    .use-hero-copy {
      display: grid;
      gap: 22px;
      align-content: center;
      text-align: left;
    }

    .use-kicker {
      width: fit-content;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--use-green-soft);
      color: var(--use-green);
      font-size: 14px;
      font-weight: 900;
    }

    .use-hero-copy .lead {
      max-width: 58ch;
      color: #22313e;
      font-size: 17px;
      line-height: 1.75;
    }

    .use-alert-note {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      max-width: 520px;
      padding: 18px;
      border: 1px solid var(--use-border);
      border-radius: 8px;
      background: linear-gradient(90deg, #eef9f3 0%, #ffffff 100%);
      color: #102332;
      font-weight: 900;
      line-height: 1.45;
    }

    .use-check-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .use-check-list li {
      display: grid;
      grid-template-columns: 24px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      color: #172433;
      font-weight: 800;
      line-height: 1.45;
    }

    .use-check-list li::before,
    .use-bullet::before {
      content: "\2713";
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      border: 2px solid var(--use-green);
      border-radius: 999px;
      color: var(--use-green);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
    }

    .use-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 4px;
    }

    .use-proof-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      margin-top: 6px;
      padding-top: 18px;
      border-top: 1px solid var(--use-border);
    }

    .use-proof {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 8px;
      align-items: center;
      color: #34434f;
      font-size: 13px;
      font-weight: 800;
    }

    .use-hero-media {
      position: relative;
      min-height: 640px;
      overflow: hidden;
      border-radius: 14px;
      background: #f6f2ec;
      box-shadow: 0 20px 52px rgba(16, 24, 32, 0.08);
    }

    .use-hero-media img.use-hero-image {
      width: 100%;
      height: 100%;
      min-height: 640px;
      object-fit: cover;
      object-position: center;
    }

    .use-floating-card {
      position: absolute;
      right: 28px;
      z-index: 2;
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      width: min(305px, calc(100% - 56px));
      padding: 18px;
      border: 1px solid rgba(16, 24, 32, 0.1);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 42px rgba(16, 24, 32, 0.15);
    }

    .use-floating-card.top {
      top: 30px;
    }

    .use-floating-card.bottom {
      top: 142px;
    }

    .use-floating-card strong,
    .use-floating-card span {
      display: block;
      line-height: 1.35;
    }

    .use-floating-card span {
      color: var(--use-muted);
      font-size: 14px;
      font-weight: 700;
    }

    .use-section {
      display: grid;
      gap: 24px;
    }

    .use-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 1080px;
      margin: 0 auto;
    }

    .use-situation-card {
      display: grid;
      grid-template-columns: 78px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      min-height: 150px;
      padding: 20px;
      border: 1px solid var(--use-border);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.9);
      text-align: left;
      box-shadow: 0 14px 30px rgba(16, 24, 32, 0.04);
    }

    .use-situation-card p {
      margin-top: 8px;
      font-size: 14px;
    }

    .use-comparison {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
      gap: 0;
      align-items: center;
      max-width: 1040px;
      margin: 0 auto;
    }

    .use-compare-panel {
      display: grid;
      gap: 18px;
      min-height: 270px;
      padding: 28px 34px;
      border: 1px solid var(--use-border);
      background: #f8faf9;
    }

    .use-compare-panel.left {
      border-radius: 12px 0 0 12px;
    }

    .use-compare-panel.right {
      border-radius: 0 12px 12px 0;
      background: linear-gradient(90deg, #eef9f3 0%, #f9fdfa 100%);
    }

    .use-compare-panel h3 {
      text-align: center;
    }

    .use-compare-panel.right h3 {
      color: var(--use-green);
    }

    .use-vs {
      display: grid;
      place-items: center;
      width: 62px;
      height: 62px;
      margin: 0 auto;
      border-radius: 999px;
      background: var(--use-green);
      color: #ffffff;
      font-size: 22px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(0, 122, 61, 0.22);
    }

    .use-plain-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .use-plain-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      color: #253542;
      line-height: 1.45;
    }

    .use-plain-list.muted li::before {
      content: "";
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border: 2px solid #788897;
      border-radius: 999px;
      background: #ffffff;
      box-shadow: inset 0 0 0 6px #f4f6f7;
    }

    .use-plain-list.checked li::before {
      content: "\2713";
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      border: 2px solid var(--use-green);
      border-radius: 999px;
      color: var(--use-green);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
    }

    .use-outcomes {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1.1fr);
      gap: 16px;
      align-items: center;
      max-width: 1070px;
      margin: 0 auto;
    }

    .use-outcome-card {
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      min-height: 140px;
      padding: 22px;
      border: 1px solid var(--use-border);
      border-radius: 8px;
      background: var(--use-green-wash);
      text-align: left;
    }

    .use-outcome-card.red {
      border-color: #f4b9b9;
      background: var(--use-red-soft);
    }

    .use-outcome-card.red h3 {
      color: var(--use-red);
    }

    .use-flow-arrow {
      color: var(--use-green);
      font-size: 28px;
      font-weight: 900;
      text-align: center;
    }

    .use-urgent {
      display: grid;
      gap: 18px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 26px 28px;
      border: 1px solid #f1b8b8;
      border-radius: 10px;
      background: linear-gradient(90deg, #fff4f4 0%, #fffafa 50%, #fff1f1 100%);
      text-align: center;
    }

    .use-urgent h2 {
      color: var(--use-red);
    }

    .use-urgent > p {
      color: #2e3842;
      font-weight: 800;
    }

    .use-urgent-grid {
      display: grid;
      grid-template-columns: 98px repeat(5, minmax(0, 1fr));
      gap: 10px;
      align-items: center;
    }

    .use-urgent-main {
      display: grid;
      place-items: center;
    }

    .use-urgent-item {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      text-align: left;
    }

    .use-urgent-item strong {
      color: #27333d;
      font-size: 13px;
      line-height: 1.35;
    }

    .use-urgent-note {
      padding: 12px;
      border-radius: 8px;
      background: #ffdada;
      color: #c41616;
      font-weight: 900;
      line-height: 1.45;
    }

    .use-audience-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      max-width: 1130px;
      margin: 0 auto;
    }

    .use-audience-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 14px;
      min-height: 126px;
      padding: 20px;
      border: 1px solid var(--use-border);
      border-radius: 8px;
      background: #ffffff;
      text-align: left;
    }

    .use-audience-card p {
      margin-top: 6px;
      font-size: 13px;
      line-height: 1.45;
    }

    .use-cta {
      position: relative;
      display: grid;
      gap: 18px;
      justify-items: center;
      overflow: hidden;
      padding: 34px 34px 20px;
      border: 1px solid #b9dfc7;
      border-radius: 12px;
      background:
        linear-gradient(90deg, #dff5e8 0%, #f7fcf9 45%, #dff5e8 100%);
      text-align: center;
    }

    .use-cta::before,
    .use-cta::after {
      content: "+";
      position: absolute;
      color: rgba(255, 255, 255, 0.9);
      font-size: 64px;
      font-weight: 900;
      line-height: 1;
    }

    .use-cta::before {
      left: 210px;
      top: 40px;
    }

    .use-cta::after {
      right: 210px;
      bottom: 42px;
    }

    .use-cta h2 {
      max-width: 760px;
      color: #07572d;
      font-size: 36px;
    }

    .use-cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }

    .use-cta-bar {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      width: 100%;
      margin-top: 8px;
      border-top: 1px solid #b9dfc7;
    }

    .use-cta-item {
      display: grid;
      grid-template-columns: 28px minmax(0, auto);
      gap: 8px;
      align-items: center;
      justify-content: center;
      padding: 14px 16px 0;
      color: #263742;
      font-size: 13px;
      font-weight: 900;
      border-right: 1px solid #b9dfc7;
    }

    .use-cta-item:last-child {
      border-right: 0;
    }

    .use-icon {
      width: 58px;
      height: 58px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .use-icon.large {
      width: 72px;
      height: 72px;
    }

    .use-icon.medium {
      width: 44px;
      height: 44px;
    }

    .use-icon.small {
      width: 28px;
      height: 28px;
    }

    .use-icon.red {
      filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(3224%) hue-rotate(345deg) brightness(106%) contrast(93%);
    }

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

    @media (max-width: 1100px) {
      .use-hero,
      .use-card-grid,
      .use-audience-grid {
        grid-template-columns: 1fr 1fr;
      }

      .use-hero {
        min-height: auto;
      }

      .use-hero-copy {
        grid-column: 1 / -1;
      }

      .use-hero-media {
        grid-column: 1 / -1;
        min-height: 520px;
      }

      .use-hero-media img.use-hero-image {
        min-height: 520px;
      }

      .use-comparison,
      .use-outcomes,
      .use-urgent-grid {
        grid-template-columns: 1fr;
      }

      .use-compare-panel.left,
      .use-compare-panel.right {
        border-radius: 12px;
      }

      .use-flow-arrow {
        transform: rotate(90deg);
      }

      .use-urgent-main {
        display: none;
      }

      .use-urgent-grid {
        gap: 16px;
      }
    }

    @media (max-width: 720px) {
      body.page-use_cases main {
        padding-left: 20px;
        padding-right: 20px;
      }

      .use-page {
        gap: 24px;
      }

      .use-page h1 {
        max-width: 13ch;
        font-size: 40px;
      }

      .use-page h2,
      .use-cta h2 {
        font-size: 26px;
      }

      .use-hero,
      .use-card-grid,
      .use-audience-grid,
      .use-cta-bar {
        grid-template-columns: 1fr;
      }

      .use-hero-media,
      .use-hero-media img.use-hero-image {
        min-height: 420px;
      }

      .use-floating-card {
        position: static;
        width: auto;
        margin: 12px;
      }

      .use-floating-card.bottom {
        margin-top: 0;
      }

      .use-situation-card,
      .use-outcome-card,
      .use-audience-card {
        grid-template-columns: 62px minmax(0, 1fr);
        padding: 18px;
      }

      .use-compare-panel {
        min-height: auto;
        padding: 24px 20px;
      }

      .use-urgent {
        padding: 22px 18px;
      }

      .use-urgent-item {
        grid-template-columns: 50px minmax(0, 1fr);
      }

      .use-actions,
      .use-cta-actions {
        width: 100%;
      }

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

      .use-cta-item {
        border-right: 0;
        border-bottom: 1px solid #b9dfc7;
        padding: 12px 0;
      }

      .use-cta-item:last-child {
        border-bottom: 0;
      }
    }

    @media (max-width: 560px) {
      body.page-use_cases main {
        padding-left: 14px;
        padding-right: 14px;
      }

      .use-page {
        gap: 18px;
      }

      .use-page h1 {
        max-width: 100%;
        font-size: clamp(34px, 11vw, 42px);
      }

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

      .use-floating-card {
        margin: 10px;
        padding: 16px;
      }

      .use-proof-row {
        gap: 10px;
      }

      .use-situation-card,
      .use-outcome-card,
      .use-audience-card,
      .use-compare-panel,
      .use-urgent {
        padding-left: 14px;
        padding-right: 14px;
      }
    }
