    :root {
      --navy: #021154;
      --navy-deep: #000931;
      --blue: #1268ff;
      --blue-light: #2fe6ff;
      --white: #ffffff;
      --muted: #b8c8ff;
      --line: rgba(255, 255, 255, 0.18);
      --shadow-blue: rgba(8, 83, 255, 0.34);
      --content: min(1120px, calc(100% - 48px));
      font-family: "Inter", "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      overflow-x: clip;
      margin: 0;
      color: #17204c;
      background: #ffffff;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .site-header {
      position: fixed;
      z-index: 20;
      top: 0;
      right: 0;
      left: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(0, 9, 49, 0.72);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: var(--content);
      height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand img {
      width: 105px;
      height: auto;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 19px;
      margin-left: auto;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.78);
      white-space: nowrap;
    }

    .site-nav a {
      transition: color 0.18s ease;
    }

    .site-nav a:hover {
      color: #ffffff;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
      white-space: nowrap;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      color: #ffffff;
      background: linear-gradient(90deg, #1268ff 0%, #2fe6ff 100%);
      background-size: 300% 100%;
      background-position: 50% 0;
      box-shadow: 0 11px 24px rgba(8, 83, 255, 0.22);
    }

    .button-outline {
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.48);
      background: rgba(255, 255, 255, 0.05);
    }

    .bridge-cta .button-outline {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .hero {
      position: relative;
      min-height: 770px;
      overflow: hidden;
      padding: 148px 0 48px;
      color: #ffffff;
      background:
        radial-gradient(circle at 78% 12%, rgba(47, 230, 255, 0.22), transparent 28%),
        radial-gradient(circle at 16% 84%, rgba(18, 104, 255, 0.34), transparent 30%),
        linear-gradient(135deg, #000927 0%, #001664 48%, #0719a0 100%);
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      inset: auto;
      pointer-events: none;
    }

    .hero::before {
      width: 880px;
      height: 420px;
      right: -170px;
      bottom: 46px;
      border: 1px solid rgba(85, 193, 255, 0.18);
      border-radius: 50%;
      transform: rotate(-17deg);
      box-shadow: 0 0 70px rgba(31, 132, 255, 0.28);
    }

    .hero::after {
      width: 100%;
      height: 190px;
      right: 0;
      bottom: 0;
      background:
        linear-gradient(105deg, transparent 0 12%, rgba(47, 230, 255, 0.52) 40%, transparent 58%),
        linear-gradient(112deg, transparent 0 18%, rgba(18, 104, 255, 0.75) 45%, transparent 64%);
      filter: blur(20px);
      opacity: 0.62;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1200px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(540px, 0.9fr) minmax(0, 1.1fr);
      align-items: center;
      gap: 20px;
    }

    .hero-copy {
      padding-top: 18px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 20px;
      color: #dce7ff;
      font-size: 14px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-light), var(--blue));
      box-shadow: 0 0 18px rgba(47, 230, 255, 0.8);
    }

    .hero h1 {
      margin: 0;
      max-width: 650px;
      font-size: clamp(44px, 6.3vw, 78px);
      line-height: 1.08;
      font-weight: 900;
    }

    .hero-title-main {
      display: block;
      color: #ffffff;
      font-size: clamp(46px, 5.2vw, 68px);
      line-height: 1.08;
      white-space: nowrap;
    }

    .hero-title-second {
      display: block;
      color: #ffffff;
      font-size: clamp(46px, 5.2vw, 68px);
      line-height: 1.08;
      white-space: nowrap;
    }

    .hero-title-accent {
      display: inline-block;
      background: linear-gradient(90deg, #ffffff 0%, #78d7ff 55%, #ffffff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: inherit;
      line-height: inherit;
    }

    .hero-lead {
      max-width: 650px;
      margin: 24px 0 0;
      color: #d7e4ff;
      font-size: 19px;
      font-weight: 700;
      line-height: 1.75;
    }

    .hero-lead span {
      display: block;
      white-space: nowrap;
    }

    .hero-tags {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      max-width: 540px;
      gap: 0;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .hero-tags li {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 24px;
      color: #dce7ff;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .hero-tag-platform {
      margin-left: 12px;
      padding-left: 14px;
      border-left: 1px solid rgba(220, 231, 255, 0.38);
    }

    .hero-tag-x {
      color: rgba(220, 231, 255, 0.78);
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 34px 0 0;
    }

    .hero-actions .button {
      min-width: 184px;
      min-height: 54px;
    }

    .hero-visual {
      position: relative;
      width: min(100%, 750px);
      aspect-ratio: 1330 / 1182;
      justify-self: end;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 28px -18px 24px 18px;
      border-radius: 32px;
      background: rgba(20, 89, 255, 0.34);
      filter: blur(42px);
    }

    .hero-visual img {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 0;
      filter: drop-shadow(0 34px 48px rgba(0, 8, 39, 0.42));
    }

    .logo-section {
      position: relative;
      z-index: 3;
      padding: 25px 0 24px;
      background: #ffffff;
      box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(15, 42, 107, 0.06);
    }

    .logo-inner {
      width: var(--content);
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      gap: 24px;
    }

    .logo-title {
      margin: 0;
      color: #243363;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.45;
      white-space: nowrap;
    }

    .logo-title span {
      display: block;
      margin-top: 3px;
      color: #66729d;
      font-size: 10px;
      font-weight: 700;
    }

    .logo-marquee {
      position: relative;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
    }

    .logo-track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: logo-scroll 26s linear infinite;
    }

    .logo-track img {
      flex: 0 0 auto;
      width: 1350px;
      min-width: 1350px;
      height: auto;
    }

    @keyframes logo-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .about-section {
      position: relative;
      overflow: hidden;
      padding: 92px 0 106px;
      background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .about-section::before {
      content: "";
      position: absolute;
      right: -16%;
      top: -70px;
      width: 54%;
      height: 350px;
      border: 1px solid rgba(18, 104, 255, 0.12);
      border-radius: 50%;
      transform: rotate(-12deg);
    }

    .section-heading {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-kicker {
      margin: 0 0 13px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      line-height: 1.4;
    }

    .section-title {
      margin: 0;
      color: #071b63;
      font-size: clamp(30px, 4.2vw, 48px);
      font-weight: 900;
      line-height: 1.28;
    }

    .section-title strong {
      color: var(--blue);
      font-weight: inherit;
    }

    .section-lead {
      max-width: 760px;
      margin: 20px auto 0;
      color: #4b5a85;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.95;
    }

    .about-lead span {
      display: block;
    }

    .about-layout {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
      align-items: stretch;
      gap: 30px;
    }

    .about-media {
      position: relative;
      min-height: 420px;
      overflow: hidden;
      border: 1px solid #dce6ff;
      border-radius: 8px;
      background: #f5f8ff;
      box-shadow: 0 24px 54px rgba(24, 71, 153, 0.12);
    }

    .about-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-cards {
      display: grid;
      gap: 18px;
    }

    .about-card {
      position: relative;
      min-height: 201px;
      padding: 27px 26px 27px 92px;
      border: 1px solid #dce6ff;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 20px 46px rgba(24, 71, 153, 0.1);
    }

    .about-card::before {
      content: attr(data-step);
      position: absolute;
      right: 18px;
      top: 16px;
      color: #e4ecff;
      font-size: 38px;
      font-weight: 900;
      line-height: 1;
    }

    .about-icon {
      position: absolute;
      left: 24px;
      top: 30px;
      width: 46px;
      height: 46px;
    }

    .about-card small {
      display: block;
      margin: 0 0 8px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
    }

    .about-card h3 {
      margin: 0;
      color: #071b63;
      font-size: 21px;
      font-weight: 900;
      line-height: 1.35;
    }

    .about-card p {
      margin: 14px 0 0;
      color: #52618c;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.85;
    }

    .problems-section {
      position: relative;
      overflow: hidden;
      padding: 92px 0 0;
      background:
        linear-gradient(180deg, #f7fbff 0%, #ffffff 74%);
    }

    .problems-section::before,
    .problems-section::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border: 1px solid rgba(18, 104, 255, 0.14);
      border-radius: 50%;
    }

    .problems-section::before {
      left: -22%;
      top: 70px;
      width: 58%;
      height: 420px;
      transform: rotate(16deg);
    }

    .problems-section::after {
      right: -28%;
      top: 130px;
      width: 66%;
      height: 520px;
      transform: rotate(-18deg);
    }

    .pain-grid,
    .solution-grid {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin-right: auto;
      margin-left: auto;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      margin-top: 50px;
    }

    .pain-card {
      position: relative;
      min-height: 214px;
      padding: 29px 26px 34px;
      text-align: center;
      border: 1px solid #cfe0ff;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 20px 46px rgba(24, 71, 153, 0.1);
    }

    .pain-card::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -19px;
      width: 36px;
      height: 36px;
      border-right: 1px solid #cfe0ff;
      border-bottom: 1px solid #cfe0ff;
      background: #ffffff;
      transform: translateX(-50%) rotate(45deg);
    }

    .pain-icon {
      position: relative;
      z-index: 1;
      width: 58px;
      height: 58px;
      margin: 0 auto 14px;
    }

    .pain-card h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      color: #071b63;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.35;
    }

    .pain-card p {
      position: relative;
      z-index: 1;
      margin: 13px 0 0;
      color: #52618c;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.75;
    }

    .solution-heading {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 55px auto 24px;
      text-align: center;
      color: #071b63;
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 900;
      line-height: 1.35;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      margin-bottom: 72px;
    }

    .solution-card {
      padding: 18px 18px 26px;
      border: 1px solid #d8e5ff;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 22px 48px rgba(24, 71, 153, 0.1);
    }

    .solution-visual {
      overflow: hidden;
      margin: 0 0 24px;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
      border: 1px solid #e0e9ff;
      background: #f6f9ff;
    }

    .solution-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .solution-card h3 {
      margin: 0;
      color: #071b63;
      text-align: center;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.35;
    }

    .solution-list {
      display: grid;
      gap: 11px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
    }

    .solution-list li {
      position: relative;
      padding-left: 27px;
      color: #35436f;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.6;
    }

    .solution-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.2em;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, #ffffff 0%, #e9f3ff 100%);
      border: 1px solid #9ec0ff;
      box-shadow: inset 0 0 0 3px #ffffff;
    }

    .solution-list li::after {
      content: "";
      position: absolute;
      left: 5px;
      top: 0.58em;
      width: 7px;
      height: 4px;
      border-left: 2px solid #1268ff;
      border-bottom: 2px solid #1268ff;
      transform: rotate(-45deg);
    }

    .bridge-cta {
      position: relative;
      z-index: 1;
      overflow: hidden;
      width: 100vw;
      margin-right: calc(50% - 50vw);
      margin-left: calc(50% - 50vw);
      margin-bottom: 0;
      padding: 70px 0;
      color: #ffffff;
      background:
        linear-gradient(112deg, rgba(2, 9, 49, 0.97) 0%, rgba(2, 17, 84, 0.96) 54%, rgba(0, 71, 200, 0.9) 100%);
    }

    .bridge-cta::before {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -22px;
      width: 70%;
      height: 190px;
      border-top: 2px solid rgba(47, 230, 255, 0.58);
      border-radius: 50%;
      transform: rotate(-10deg);
      box-shadow: 0 -18px 42px rgba(18, 104, 255, 0.42);
    }

    .bridge-content {
      position: relative;
      z-index: 1;
      width: var(--content);
      display: grid;
      margin: 0 auto;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 40px;
    }

    .bridge-cta .bridge-kicker {
      margin: 0 0 14px;
      color: #2fe6ff;
      font-size: 18px;
      font-weight: 900;
    }

    .bridge-cta h3 {
      margin: 0;
      font-size: clamp(28px, 3.1vw, 42px);
      font-weight: 900;
      line-height: 1.25;
      white-space: nowrap;
    }

    .bridge-cta p {
      max-width: 620px;
      margin: 20px 0 0;
      color: #dce7ff;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.9;
    }

    .bridge-lead {
      max-width: 720px;
    }

    .bridge-lead span {
      display: block;
      white-space: nowrap;
    }

    .bridge-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 14px;
    }

    .bridge-actions .button {
      min-width: 190px;
      min-height: 54px;
    }

    .features-section {
      position: relative;
      overflow: hidden;
      padding: 96px 0 104px;
      background:
        radial-gradient(circle at 4% 0%, rgba(18, 104, 255, 0.08), transparent 28%),
        radial-gradient(circle at 94% 7%, rgba(18, 104, 255, 0.08), transparent 26%),
        #ffffff;
    }

    .features-section::before {
      content: "";
      position: absolute;
      left: -16%;
      top: -190px;
      width: 36%;
      height: 360px;
      border-radius: 50%;
      background: rgba(18, 104, 255, 0.06);
    }

    .features-section::after {
      content: "";
      position: absolute;
      right: -14%;
      top: -160px;
      width: 34%;
      height: 330px;
      border-radius: 50%;
      background: rgba(18, 104, 255, 0.06);
    }

    .features-grid {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 50px auto 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 34px 36px;
    }

    .feature-card {
      min-height: 100%;
    }

    .feature-visual {
      overflow: hidden;
      margin: 0 0 22px;
      aspect-ratio: 760 / 560;
      border: 1px solid #d8e5ff;
      border-radius: 8px;
      background: #f7faff;
      box-shadow: 0 22px 50px rgba(24, 71, 153, 0.1);
    }

    .feature-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-visual.template-visual img {
      object-fit: contain;
    }

    .feature-card h3 {
      margin: 0;
      color: #071b63;
      font-size: 23px;
      font-weight: 900;
      line-height: 1.35;
    }

    .feature-card p {
      margin: 12px 0 0;
      color: #52618c;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.9;
    }

    .types-section {
      position: relative;
      overflow: hidden;
      padding: 96px 0 106px;
      background:
        radial-gradient(circle at 2% 14%, rgba(18, 104, 255, 0.1), transparent 28%),
        radial-gradient(circle at 94% 82%, rgba(47, 230, 255, 0.12), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    .types-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(113deg, transparent 0 20%, rgba(18, 104, 255, 0.08) 44%, transparent 62%);
      opacity: 0.72;
      pointer-events: none;
    }

    .types-layout {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 48px auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      align-items: stretch;
      gap: 30px;
    }

    .type-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .type-card {
      min-height: 154px;
      padding: 23px 16px 18px;
      border: 1px solid #d8e5ff;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 36px rgba(24, 71, 153, 0.08);
      text-align: center;
    }

    .type-icon {
      width: 54px;
      height: 54px;
      margin: 0 auto 13px;
      object-fit: cover;
      border-radius: 8px;
    }

    .type-card h3 {
      margin: 0;
      color: #071b63;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.35;
    }

    .custom-card {
      padding: 30px 28px;
      border: 1px solid #c9dcff;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 24px 56px rgba(24, 71, 153, 0.12);
    }

    .custom-badge {
      display: inline-flex;
      align-items: center;
      min-height: 31px;
      padding: 0 13px;
      border-radius: 999px;
      color: #1268ff;
      background: #eef5ff;
      font-size: 12px;
      font-weight: 900;
    }

    .custom-card h3 {
      margin: 18px 0 0;
      color: #071b63;
      font-size: 25px;
      font-weight: 900;
      line-height: 1.4;
    }

    .mobile-word {
      display: none;
    }

    .custom-card p {
      margin: 14px 0 0;
      color: #52618c;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.9;
    }

    .custom-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .custom-list li {
      position: relative;
      padding-left: 24px;
      color: #35436f;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.6;
    }

    .custom-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1268ff, #2fe6ff);
      box-shadow: 0 0 0 5px #eef5ff;
    }

    .custom-note {
      margin-top: 26px;
      padding: 16px 18px;
      border-radius: 8px;
      color: #0d3ea5;
      background: #f2f7ff;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.65;
    }

    .support-section {
      position: relative;
      overflow: hidden;
      padding: 96px 0 104px;
      color: #ffffff;
      background:
        radial-gradient(circle at 82% 20%, rgba(47, 230, 255, 0.18), transparent 26%),
        radial-gradient(circle at 22% 78%, rgba(18, 104, 255, 0.22), transparent 28%),
        linear-gradient(145deg, #000927 0%, #001452 55%, #0627a0 100%);
    }

    .support-section::before,
    .support-section::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .support-section::before {
      right: -22%;
      top: 80px;
      width: 78%;
      height: 460px;
      border: 1px solid rgba(47, 230, 255, 0.2);
      border-radius: 50%;
      transform: rotate(-14deg);
      box-shadow: 0 0 70px rgba(18, 104, 255, 0.25);
    }

    .support-section::after {
      left: 0;
      right: 0;
      bottom: 90px;
      height: 180px;
      background:
        linear-gradient(108deg, transparent 4%, rgba(47, 230, 255, 0.5) 38%, transparent 62%),
        linear-gradient(115deg, transparent 14%, rgba(18, 104, 255, 0.72) 46%, transparent 72%);
      filter: blur(16px);
      opacity: 0.5;
    }

    .support-intro {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 0 auto 46px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 430px;
      gap: 48px;
      align-items: end;
    }

    .support-kicker {
      margin: 0 0 14px;
      color: #2fe6ff;
      font-size: 15px;
      font-weight: 900;
    }

    .support-title {
      margin: 0;
      font-size: clamp(34px, 5vw, 58px);
      font-weight: 900;
      line-height: 1.2;
    }

    .support-lead {
      max-width: 680px;
      margin: 22px 0 0;
      color: #dce7ff;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.95;
    }

    .member-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .member-placeholder {
      overflow: hidden;
      margin: 0;
      min-height: 210px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      background:
        linear-gradient(135deg, #d8dce6 0%, #f0f2f6 52%, #b8bfce 100%);
      box-shadow: 0 22px 44px rgba(0, 5, 32, 0.24);
    }

    .member-placeholder img {
      width: 100%;
      height: 100%;
      min-height: 210px;
      object-fit: cover;
      object-position: center top;
    }

    .process-grid {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .process-card {
      padding: 18px 18px 26px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 24px 54px rgba(0, 5, 32, 0.24);
    }

    .process-media {
      overflow: hidden;
      aspect-ratio: 4 / 3;
      margin: 0 0 20px;
      border-radius: 8px;
      background: #eef2f8;
    }

    .process-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .process-media.media-contain img {
      object-fit: contain;
    }

    .process-label {
      margin: 0 0 8px;
      color: #1268ff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .process-card h3 {
      margin: 0;
      color: #071b63;
      font-size: 24px;
      font-weight: 900;
      line-height: 1.35;
    }

    .process-card p {
      margin: 13px 0 0;
      color: #52618c;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.85;
    }

    .sitest-panel {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 30px auto 0;
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 32px;
      align-items: center;
      padding: 30px 34px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: 8px;
      background: rgba(0, 8, 46, 0.72);
      box-shadow: 0 22px 48px rgba(0, 5, 32, 0.22);
      backdrop-filter: blur(10px);
    }

    .sitest-logo-box {
      display: grid;
      place-items: center;
      min-height: 130px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
    }

    .sitest-logo-box img {
      width: 150px;
      height: auto;
    }

    .sitest-copy h3 {
      margin: 0;
      color: #ffffff;
      font-size: clamp(21px, 2.3vw, 28px);
      font-weight: 900;
      line-height: 1.45;
    }

    .sitest-copy p {
      margin: 14px 0 0;
      color: #dce7ff;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.9;
    }

    .sitest-copy p span {
      display: block;
      white-space: nowrap;
    }

    .plans-section {
      position: relative;
      overflow: hidden;
      padding: 96px 0 104px;
      background:
        radial-gradient(circle at 0% 18%, rgba(18, 104, 255, 0.11), transparent 28%),
        radial-gradient(circle at 100% 78%, rgba(18, 104, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .plans-section::before,
    .plans-section::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border: 1px solid rgba(18, 104, 255, 0.12);
      border-radius: 50%;
    }

    .plans-section::before {
      left: -24%;
      top: 80px;
      width: 58%;
      height: 430px;
      transform: rotate(14deg);
    }

    .plans-section::after {
      right: -28%;
      bottom: -40px;
      width: 64%;
      height: 470px;
      transform: rotate(-18deg);
    }

    .plans-layout {
      --plan-head-height: 164px;
      --plan-row-height: 56px;
      --plan-price-height: 264px;
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 44px auto 0;
      display: grid;
      grid-template-columns: 240px minmax(310px, 1fr) minmax(310px, 1fr);
      align-items: stretch;
      gap: 18px;
    }

    .plan-labels {
      display: grid;
      grid-template-rows: var(--plan-head-height) repeat(4, minmax(var(--plan-row-height), auto)) minmax(var(--plan-price-height), 1fr);
      align-self: stretch;
      overflow: hidden;
      border: 1px solid #d8e5ff;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 20px 46px rgba(24, 71, 153, 0.08);
    }

    .plan-labels::before {
      content: "";
    }

    .plan-labels span {
      display: flex;
      align-items: center;
      min-height: 0;
      padding: 0 24px;
      border-top: 1px solid #e3ebff;
      color: #071b63;
      font-size: 14px;
      font-weight: 900;
    }

    .plan-card {
      display: grid;
      grid-template-rows: var(--plan-head-height) auto minmax(var(--plan-price-height), 1fr);
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 24px 58px rgba(24, 71, 153, 0.16);
    }

    .plan-card.tool-plan {
      border: 1px solid #cfe0ff;
      background: rgba(255, 255, 255, 0.96);
    }

    .plan-card.done-plan {
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #ffffff;
      background:
        radial-gradient(circle at 78% 18%, rgba(47, 230, 255, 0.16), transparent 26%),
        linear-gradient(145deg, #000927 0%, #001452 62%, #031d77 100%);
    }

    .plan-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: var(--plan-head-height);
      padding: 26px 28px 22px;
      text-align: center;
    }

    .plan-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 27px;
      padding: 0 16px;
      border-radius: 999px;
      color: #1268ff;
      background: #eaf2ff;
      font-size: 12px;
      font-weight: 900;
    }

    .done-plan .plan-badge {
      color: #ffe38f;
      border: 1px solid rgba(255, 214, 91, 0.9);
      background: rgba(255, 214, 91, 0.1);
    }

    .plan-head h3 {
      margin: 12px 0 0;
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 900;
      line-height: 1.25;
    }

    .tool-plan .plan-head h3 {
      color: #071b63;
    }

    .plan-head p {
      margin: 10px 0 0;
      color: #35436f;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.55;
    }

    .done-plan .plan-head p {
      color: #dce7ff;
    }

    .plan-rows {
      display: grid;
      grid-template-rows: repeat(4, minmax(var(--plan-row-height), auto));
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .plan-rows li {
      position: relative;
      display: flex;
      align-items: center;
      min-height: var(--plan-row-height);
      padding: 12px 26px 12px 58px;
      border-top: 1px solid #e3ebff;
      color: #17204c;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.55;
    }

    .done-plan .plan-rows li {
      border-top-color: rgba(255, 255, 255, 0.12);
      color: #ffffff;
    }

    .plan-rows li::before {
      content: "";
      position: absolute;
      left: 27px;
      top: 50%;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      border: 2px solid #1268ff;
      transform: translateY(-50%);
    }

    .done-plan .plan-rows li::before {
      border-color: #ffcf5c;
    }

    .plan-rows li::after {
      content: "";
      position: absolute;
      left: 32px;
      top: 50%;
      width: 7px;
      height: 4px;
      border-left: 2px solid #1268ff;
      border-bottom: 2px solid #1268ff;
      transform: translateY(-62%) rotate(-45deg);
    }

    .done-plan .plan-rows li::after {
      border-color: #ffcf5c;
    }

    .price-box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: var(--plan-price-height);
      padding: 19px 26px 26px;
      border-top: 1px solid #e3ebff;
      text-align: left;
    }

    .campaign {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(100%, 368px);
      min-height: 54px;
      padding: 0 28px;
      margin: 0 auto 17px;
      border: 2px solid #ff7600;
      border-radius: 999px;
      color: #ff6a00;
      background: #fff9f1;
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .campaign::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -11px;
      width: 0;
      height: 0;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      border-top: 11px solid #ff7600;
      transform: translateX(-50%);
    }

    .campaign strong {
      margin: 0 7px;
      font-size: 43px;
      line-height: 1;
    }

    .price-line {
      display: grid;
      grid-template-columns: 94px max-content;
      align-items: center;
      gap: 10px;
      width: min(100%, 360px);
      margin: 9px auto 0;
      text-align: left;
    }

    .price-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      border-radius: 8px;
      color: #1268ff;
      background: #eaf2ff;
      font-size: 13px;
      font-weight: 900;
    }

    .price-old {
      display: inline-flex;
      align-items: baseline;
      white-space: nowrap;
      color: #17204c;
      font-weight: 700;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
    }

    .price-main {
      display: inline-flex;
      align-items: baseline;
      white-space: nowrap;
      color: #0055ff;
      font-weight: 900;
      line-height: 1.1;
    }

    .price-number {
      font-size: 36px;
      line-height: 1;
    }

    .price-main .price-number {
      font-size: 42px;
      letter-spacing: 0;
    }

    .price-unit {
      font-size: 19px;
      line-height: 1;
    }

    .price-main .price-unit {
      margin-left: 2px;
      font-size: 23px;
    }

    .ask-price {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: var(--plan-price-height);
      margin: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: #ffd56b;
      text-align: center;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 900;
      line-height: 1;
    }

    .faq-section {
      position: relative;
      overflow: hidden;
      padding: 94px 0 104px;
      background:
        radial-gradient(circle at 2% 8%, rgba(18, 104, 255, 0.1), transparent 28%),
        radial-gradient(circle at 100% 26%, rgba(18, 104, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    .faq-section::before,
    .faq-section::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border: 1px solid rgba(18, 104, 255, 0.13);
      border-radius: 50%;
    }

    .faq-section::before {
      left: -24%;
      top: 110px;
      width: 56%;
      height: 390px;
      transform: rotate(16deg);
    }

    .faq-section::after {
      right: -26%;
      top: 60px;
      width: 58%;
      height: 420px;
      transform: rotate(-18deg);
    }

    .faq-list {
      position: relative;
      z-index: 1;
      width: min(920px, calc(100% - 48px));
      margin: 46px auto 0;
      display: grid;
      gap: 16px;
    }

    .faq-item {
      border: 1px solid #d8e5ff;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 42px rgba(24, 71, 153, 0.08);
    }

    .faq-item summary {
      position: relative;
      display: flex;
      align-items: center;
      gap: 18px;
      min-height: 82px;
      padding: 18px 72px 18px 28px;
      color: #071b63;
      font-size: 19px;
      font-weight: 900;
      line-height: 1.5;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-mark {
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: #1268ff;
      background: #eef5ff;
      font-size: 18px;
      font-weight: 900;
    }

    .faq-item summary::before,
    .faq-item summary::after {
      content: "";
      position: absolute;
      right: 33px;
      top: 50%;
      width: 17px;
      height: 2px;
      border-radius: 999px;
      background: #1268ff;
      transition: transform 0.18s ease;
    }

    .faq-item summary::after {
      transform: rotate(90deg);
    }

    .faq-item[open] summary::after {
      transform: rotate(0deg);
    }

    .faq-answer {
      padding: 0 72px 26px 88px;
      color: #35436f;
      font-size: 15px;
      font-weight: 650;
      line-height: 1.9;
    }

    .faq-answer p {
      margin: 0;
    }

    .final-cta {
      position: relative;
      overflow: hidden;
      min-height: 520px;
      display: flex;
      align-items: center;
      color: #ffffff;
      background: #000927;
    }

    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0, 9, 39, 0.94) 0%, rgba(0, 9, 39, 0.78) 38%, rgba(0, 9, 39, 0.18) 78%),
        url("../images/generated/final-cta-bg.png") center / cover no-repeat;
      transform: scale(1.01);
    }

    .final-cta::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 150px;
      background: linear-gradient(180deg, transparent, rgba(0, 9, 39, 0.64));
      pointer-events: none;
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      width: var(--content);
      margin: 0 auto;
      padding: 86px 0;
    }

    .final-cta-copy {
      max-width: 880px;
    }

    .final-cta h2 {
      margin: 0;
      font-size: clamp(34px, 5.4vw, 62px);
      font-weight: 900;
      line-height: 1.25;
    }

    .final-cta h2 strong {
      color: #2fe6ff;
      font-weight: inherit;
    }

    .final-cta-title-line {
      display: block;
      white-space: nowrap;
    }

    .final-cta p {
      max-width: 640px;
      margin: 22px 0 0;
      color: #dce7ff;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.95;
    }

    .final-cta p span {
      display: block;
      white-space: nowrap;
    }

    .final-cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 34px;
    }

    .final-cta-actions .button {
      min-width: 198px;
      min-height: 56px;
    }

    .site-footer {
      color: #ffffff;
      background:
        radial-gradient(circle at 16% 8%, rgba(18, 104, 255, 0.18), transparent 28%),
        linear-gradient(145deg, #06124c 0%, #08257d 100%);
      padding: 54px 0 50px;
    }

    .footer-inner {
      width: var(--content);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
      align-items: end;
      gap: 48px;
    }

    .footer-brand img {
      width: 210px;
      height: auto;
    }

    .footer-marks {
      margin-top: 20px;
    }

    .footer-marks img {
      width: 186px;
      height: auto;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 18px 24px;
      margin: 0 0 34px;
      padding: 0;
      list-style: none;
      font-size: 13px;
      font-weight: 900;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.88);
      transition: color 0.18s ease;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .copyright {
      margin: 0;
      color: rgba(255, 255, 255, 0.86);
      text-align: right;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.7;
    }

    @media (max-width: 980px) {
      :root {
        --content: min(100% - 32px, 720px);
      }

      .header-inner {
        height: 66px;
      }

      .site-nav {
        display: none;
      }

      .header-actions {
        margin-left: auto;
      }

      .header-actions .button-outline {
        display: none;
      }

      .hero {
        min-height: auto;
        padding: 118px 0 38px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .hero h1 {
        max-width: 680px;
      }

      .hero-lead {
        max-width: 640px;
      }

      .hero-visual {
        min-height: auto;
        width: min(100%, 680px);
        justify-self: center;
        margin-left: 0;
        transform: none;
      }

      .logo-inner {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .logo-title {
        text-align: center;
      }

      .logo-marquee {
        overflow: hidden;
        padding-bottom: 0;
      }

      .logo-track img {
        width: 1150px;
        min-width: 1150px;
      }

      .about-section {
        padding: 76px 0 86px;
      }

      .about-layout {
        grid-template-columns: 1fr;
      }

      .about-media {
        min-height: 360px;
      }

      .pain-grid,
      .solution-grid {
        grid-template-columns: 1fr;
      }

      .pain-grid {
        max-width: 520px;
      }

      .solution-grid {
        max-width: 560px;
      }

      .bridge-cta {
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        padding: 54px 0;
      }

      .bridge-content {
        grid-template-columns: 1fr;
      }

      .bridge-cta h3 {
        white-space: normal;
      }

      .bridge-lead span {
        white-space: normal;
      }

      .bridge-actions {
        justify-content: flex-start;
      }

      .features-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
      }

      .types-layout {
        grid-template-columns: 1fr;
        max-width: 720px;
      }

      .custom-card {
        max-width: 100%;
      }

      .support-intro {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .member-grid {
        max-width: 520px;
      }

      .process-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
      }

      .sitest-panel {
        grid-template-columns: 1fr;
      }

      .sitest-copy p span,
      .final-cta p span {
        white-space: normal;
      }

      .plans-layout {
        grid-template-columns: 1fr;
        max-width: 620px;
      }

      .plan-labels {
        display: none;
      }

      .faq-list {
        width: var(--content);
      }

      .final-cta {
        min-height: 480px;
      }

      .final-cta::before {
        background:
          linear-gradient(90deg, rgba(0, 9, 39, 0.94) 0%, rgba(0, 9, 39, 0.82) 52%, rgba(0, 9, 39, 0.26) 100%),
          url("../images/generated/final-cta-bg.png") center / cover no-repeat;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .footer-links {
        justify-content: flex-start;
        margin-bottom: 24px;
      }

      .copyright {
        text-align: left;
      }
    }

    @media (max-width: 640px) {
      :root {
        --content: min(100% - 24px, 560px);
      }

      .brand img {
        width: 94px;
      }

      .button {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
      }

      .hero {
        padding-top: 104px;
      }

      .hero h1 {
        font-size: clamp(38px, 13vw, 54px);
      }

      .hero-title-main,
      .hero-title-second {
        font-size: clamp(34px, 10vw, 44px);
        white-space: normal;
      }

      .hero-title-accent {
        font-size: inherit;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-lead span {
        white-space: normal;
      }

      .hero-tags {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        padding: 11px 13px;
      }

      .hero-tags li {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 14px;
        line-height: 1.35;
        white-space: normal;
      }

      .hero-tag-platform {
        margin-left: 0;
        padding-top: 8px;
        padding-left: 0;
        border-top: 1px solid rgba(220, 231, 255, 0.28);
        border-left: 0;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-actions .button {
        width: 100%;
      }

      .logo-section {
        padding: 20px 0;
      }

      .about-section {
        padding: 62px 0 70px;
      }

      .section-heading {
        margin-bottom: 28px;
        text-align: left;
      }

      .section-title {
        font-size: clamp(27px, 9vw, 36px);
      }

      .section-lead {
        font-size: 15px;
      }

      .about-media {
        min-height: 260px;
      }

      .about-card {
        min-height: auto;
        padding: 24px 20px 24px 76px;
      }

      .about-icon {
        left: 18px;
        top: 25px;
        width: 40px;
        height: 40px;
      }

      .about-card h3 {
        font-size: 19px;
      }

      .problems-section {
        padding-top: 62px;
      }

      .pain-grid {
        gap: 24px;
        margin-top: 34px;
      }

      .pain-card::after {
        display: none;
      }

      .pain-card h3,
      .solution-card h3 {
        font-size: 20px;
      }

      .solution-heading {
        margin-top: 48px;
        text-align: left;
      }

      .solution-grid {
        margin-bottom: 52px;
      }

      .bridge-cta {
        padding: 44px 0 54px;
      }

      .bridge-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .features-section {
        padding: 68px 0 74px;
      }

      .features-grid {
        margin-top: 34px;
        gap: 30px;
      }

      .feature-card h3 {
        font-size: 20px;
      }

      .types-section {
        padding: 68px 0 76px;
      }

      .types-layout {
        margin-top: 34px;
      }

      .type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .type-card {
        min-height: 136px;
        padding: 18px 12px 16px;
      }

      .type-icon {
        width: 48px;
        height: 48px;
      }

      .type-card h3 {
        font-size: 14px;
      }

      .custom-card {
        padding: 26px 22px;
      }

      .desktop-word {
        display: none;
      }

      .mobile-word {
        display: inline;
      }

      .support-section {
        padding: 72px 0 78px;
      }

      .support-intro {
        gap: 30px;
      }

      .member-grid {
        grid-template-columns: repeat(3, minmax(84px, 1fr));
        gap: 8px;
      }

      .member-placeholder {
        min-height: 130px;
      }

      .member-placeholder img {
        min-height: 130px;
      }

      .process-card {
        padding: 16px 16px 24px;
      }

      .process-card h3 {
        font-size: 21px;
      }

      .sitest-panel {
        padding: 24px 20px;
      }

      .plans-section {
        padding: 70px 0 78px;
      }

      .plans-layout {
        margin-top: 34px;
      }

      .plan-head {
        padding: 24px 20px 20px;
      }

      .plan-rows li {
        padding-right: 20px;
      }

      .campaign {
        width: 100%;
        padding: 0 14px;
        font-size: 17px;
      }

      .campaign strong {
        font-size: 36px;
      }

      .price-line {
        grid-template-columns: 82px max-content;
      }

      .price-number {
        font-size: 30px;
      }

      .price-main .price-number {
        font-size: 34px;
      }

      .price-unit {
        font-size: 16px;
      }

      .price-main .price-unit {
        font-size: 18px;
      }

      .faq-section {
        padding: 68px 0 76px;
      }

      .faq-list {
        margin-top: 34px;
      }

      .faq-item summary {
        align-items: flex-start;
        min-height: 74px;
        padding: 18px 56px 18px 18px;
        font-size: 16px;
      }

      .faq-mark {
        width: 34px;
        height: 34px;
        font-size: 15px;
      }

      .faq-item summary::before,
      .faq-item summary::after {
        right: 24px;
      }

      .faq-answer {
        padding: 0 22px 23px 70px;
        font-size: 14px;
      }

      .final-cta {
        min-height: 500px;
      }

      .final-cta-inner {
        padding: 70px 0;
      }

      .final-cta h2 {
        font-size: clamp(31px, 10vw, 42px);
      }

      .final-cta-title-line {
        display: inline;
        white-space: normal;
      }

      .final-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .site-footer {
        padding: 42px 0 44px;
      }

      .footer-brand img {
        width: 178px;
      }

      .footer-marks img {
        width: 162px;
      }

      .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
        font-size: 12px;
      }
    }