.hero {
      width: 100%;
    }

    .hero-simple {
      position: relative;
      min-height: calc(100svh - 76px);
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 112px 0 76px;
      color: #fff;
      background:
        linear-gradient(100deg, rgba(5, 7, 13, 0.92) 0%, rgba(10, 31, 38, 0.84) 48%, rgba(14, 62, 72, 0.45) 100%),
        url("../../src/fv.jpg") center / cover;
    }

    .j .hero-simple .hero-copy {
      animation: heroFade 0.72s ease both;
    }

    @keyframes heroFade {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-simple::after {
      content: "";
      position: absolute;
      inset: auto -120px -180px auto;
      width: 480px;
      height: 480px;
      border: 1px solid rgba(120, 190, 202, 0.28);
      border-radius: 50%;
      mix-blend-mode: multiply;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1320px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 780px);
      gap: 56px;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      color: #9ed6dd;
      font-family: "Space Grotesk", system-ui, sans-serif;
      font-weight: 700;
    }

    .hero-tag::before {
      content: "";
      width: 48px;
      height: 2px;
      background: currentColor;
    }

    .hero-simple h1 {
      max-width: 900px;
      margin: 0;
      color: #fff;
      font-size: 4.6rem;
      line-height: 1.13;
      font-weight: 900;
    }

    .hero-title-line {
      display: block;
      white-space: nowrap;
    }

    .hero-lead {
      max-width: 700px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.08rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .hero-notes {
      display: grid;
      gap: 6px;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.9rem;
    }

    .hero-notes strong {
      color: #b7e3e8;
    }

    .notice-panel {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: #fff;
    }

    .notice-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 42px;
      align-items: start;
      padding: 42px 0;
    }

    .notice-title {
      margin: 0;
      color: var(--ink);
      font-size: 1.7rem;
      line-height: 1.35;
    }

    .notice-list {
      display: grid;
      border-top: 1px solid var(--line);
    }

    .notice-row {
      display: grid;
      grid-template-columns: 120px 110px 1fr;
      gap: 18px;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      text-decoration: none;
    }

    .notice-row time {
      color: var(--muted);
      font-family: "Space Grotesk", system-ui, sans-serif;
      font-size: 0.9rem;
    }

    .notice-cat {
      display: inline-flex;
      justify-content: center;
      justify-self: start;
      width: max-content;
      max-width: 100%;
      padding: 5px 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--blue-deep);
      font-size: 0.78rem;
      font-weight: 800;
    }

    .notice-row h3 {
      margin: 0;
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.5;
    }

    .notice-more {
      display: inline-flex;
      width: fit-content;
      margin-top: 18px;
      color: var(--blue-deep);
      font-size: 0.94rem;
      font-weight: 900;
      text-decoration: none;
    }

    .notice-more::after {
      content: ">";
      margin-left: 8px;
      font-family: "Space Grotesk", system-ui, sans-serif;
    }

    .service-support {
      margin-top: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--soft);
      padding: 28px;
    }

    .service-support-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: 20px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .service-support-grid article {
      background: #fff;
      padding: 22px;
    }

    .service-support-grid h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 1.08rem;
    }

    .service-support-grid p {
      margin: 0;
      color: var(--muted);
    }

    .proof-intro {
      display: grid;
      grid-template-columns: 0.74fr 1.26fr;
      gap: 42px;
      align-items: start;
      margin-bottom: 34px;
    }

    .proof-note {
      border-left: 4px solid var(--cyan);
      padding: 18px 20px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.76);
    }

    .case-links {
      margin-top: 34px;
    }

    .case-links h3 {
      margin: 0 0 16px;
      color: #fff;
      font-size: 1.35rem;
    }

    .case-link-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .case-card {
      min-height: 220px;
      display: grid;
      align-content: end;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      padding: 22px;
      color: #fff;
      text-decoration: none;
      background: #0a1f26;
    }

    .case-card picture,
    .case-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .case-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.84));
    }

    .case-card > div {
      position: relative;
      z-index: 2;
    }

    .case-card span {
      color: #9ed6dd;
      font-family: "Space Grotesk", system-ui, sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .case-card h4 {
      margin: 8px 0 0;
      font-size: 1.1rem;
      line-height: 1.45;
    }

    .sp-line {
      display: inline;
    }

    @media (max-width: 1020px) {
      .hero-inner,
      .notice-inner,
      .proof-intro {
        grid-template-columns: 1fr;
      }

      .case-link-grid,
      .service-support-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-simple {
        min-height: auto;
        padding: 86px 0 62px;
      }

      .hero-simple h1 {
        font-size: 3rem;
      }

      .hero-actions {
        display: grid;
      }

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

      .notice-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }

    @media (max-width: 560px) {
      .hero-inner {
        width: min(100% - 28px, 1320px);
      }

      .hero-simple h1 {
        font-size: 2.14rem;
      }

      .hero-lead {
        font-size: 1rem;
      }

      .service-support .section-title,
      #proof .section-title {
        font-size: 1.52rem !important;
        line-height: 1.36;
      }

      .sp-line {
        display: block;
      }

      .hero-proof-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }