﻿:root {
      --text: #0f2746;
      --muted: #5a7491;
      --muted-soft: #99a8b9;
      --primary: #155fc0;
      --primary-strong: #0f4ea1;
      --nav-bg: rgba(255,255,255,0.90);
      --nav-border: rgba(34,93,167,0.12);
      --surface: #f4f4f5;
      --surface-2: #f7f7f8;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html, body {
      min-height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
      overflow-x: hidden;
    }

    .page {
      height: 100svh;
      min-height: 100svh;
      position: relative;
      overflow: hidden;
      background: #081527;
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4, 13, 29, 0.34) 0%, rgba(6, 16, 34, 0.46) 42%, rgba(6, 16, 34, 0.62) 100%),
        radial-gradient(circle at 50% 24%, rgba(255,255,255,0.08), transparent 24%),
        url("./bg.png") center/cover no-repeat;
      background-blend-mode: normal, screen, normal;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(6, 14, 28, 0.46) 0%, rgba(6, 14, 28, 0.16) 42%, rgba(6, 14, 28, 0.28) 100%),
        linear-gradient(0deg, rgba(44, 103, 180, 0.08) 0, rgba(44, 103, 180, 0.08) 1px, transparent 1px, transparent 120px),
        linear-gradient(90deg, rgba(44, 103, 180, 0.08) 0, rgba(44, 103, 180, 0.08) 1px, transparent 1px, transparent 120px);
      background-size: auto, 120px 120px, 120px 120px;
      opacity: 0.64;
    }

    .page::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(76, 156, 236, 0.08), transparent 20%),
        radial-gradient(circle at 82% 22%, rgba(76, 156, 236, 0.05), transparent 16%),
        radial-gradient(circle at 28% 76%, rgba(76, 156, 236, 0.05), transparent 18%);
      pointer-events: none;
      z-index: 1;
    }

    .shell {
      position: relative;
      width: min(100%, 1800px);
      height: 100%;
      margin: 0 auto;
      padding-top: 0;
}

    .nav-wrap {
      width: min(85%, 1460px);
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 6px 12px 6px 22px;
      border-radius: 22px;
      background: var(--nav-bg);
      border: 1px solid var(--nav-border);
      box-shadow: 0 12px 28px rgba(24, 68, 125, 0.10);
      backdrop-filter: blur(10px);
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2147483647;
      transition: box-shadow .18s ease, background .18s ease, border-color .18s ease;
      isolation: isolate;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text);
      flex: 0 0 auto;
    }

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

    .brand-wordmark {
      font-size: clamp(1.65rem, 1.9vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
      color: #2f6fcb;
      text-transform: uppercase;
    }

    .nav-center {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .nav-center a {
      color: #183960;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }

    .contact-btn {
      flex: 0 0 auto;
      min-height: 44px;
      padding: 0 20px;
      border-radius: 14px;
      background: linear-gradient(180deg, #1b69ca 0%, #0f57b5 100%);
      color: #fff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      box-shadow: 0 14px 26px rgba(21, 90, 177, 0.18);
    }

    .burger {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: linear-gradient(180deg, #1c67c6 0%, #1153ad 100%);
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      box-shadow: 0 10px 18px rgba(22, 98, 196, 0.18);
    }

    .burger span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
    }

    .hero {
      min-height: 100svh;
      height: 100svh;
display: grid;
      place-items: center;
      text-align: center;
      padding: 118px 20px 18px;
position: relative;
      z-index: 3;
    }

    .hero-inner {
      max-width: 940px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      margin-bottom: 22px;`r`n        text-transform: uppercase;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(239, 246, 255, 0.96);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      box-shadow: 0 12px 22px rgba(3, 11, 26, 0.16);
      backdrop-filter: blur(8px);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #2d88f0;
      box-shadow: 0 0 0 6px rgba(45, 136, 240, 0.16);
    }

    h1 {
      font-size: clamp(42px, 5vw, 80px);
      line-height: 1.02;
      letter-spacing: -0.07em;
      font-weight: 600;
      color: #edf5ff;
      text-shadow: 0 10px 34px rgba(3, 12, 27, 0.52);
      text-wrap: balance;
    }

    .hero p {
      max-width: 760px;
      margin: 24px auto 0;
      color: rgba(232, 241, 255, 0.90);
      text-shadow: 0 6px 22px rgba(7, 18, 36, 0.40);
      font-size: clamp(17px, 1.45vw, 22px);
      line-height: 1.52;
      letter-spacing: 0.06em;
      text-wrap: balance;
    }

    .actions {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      min-width: 224px;
      color: #f4f8ff;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.24);
      box-shadow: 0 12px 24px rgba(5, 14, 28, 0.18);
    }

    .btn-primary {
      min-width: 244px;
      color: #fff;
      background: linear-gradient(180deg, #1d74d7 0%, #1159b7 100%);
      box-shadow: 0 18px 30px rgba(23, 95, 187, 0.18);
    }

    .btn-secondary {
      min-width: 224px;
      color: #1c518b;
      background: rgba(255,255,255,0.62);
      border: 1px solid rgba(19, 88, 173, 0.18);
      box-shadow: 0 12px 24px rgba(38, 98, 174, 0.08);
    }

    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-2px);
    }

    .hero-meta {
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      color: rgba(228, 238, 255, 0.88);
      font-size: 14px;
      font-weight: 600;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(8px);
    }

    .hero-meta span::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #3a97fb;
      box-shadow: 0 0 0 6px rgba(58, 151, 251, 0.18);
    }

    .story-section {
      background: var(--surface);
      position: relative;
      z-index: 5;
      padding: 12px 0 120px;
      scroll-margin-top: 82px;
    }

    .story-shell {
      width: min(85%, 1460px);
      margin: 0 auto;
    }

    .story-head {
        max-width: 780px;
        margin-bottom: 2px;
      }

    .story-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(21, 95, 192, 0.10);
        color: #155fc0;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

    .story-tag::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #2d83e6;
        box-shadow: 0 0 0 8px rgba(45, 131, 230, 0.12);
      }

    .story-grid {
        display: grid;
        grid-template-columns: minmax(320px, 1fr) minmax(340px, 560px);
        gap: 54px;
        align-items: start;
      }

    .story-rail {
      padding-top: 0;
    }

    .story-step {
        min-height: 82vh;
        display: flex;
        align-items: center;
        position: relative;
        transition: opacity .35s ease, transform .35s ease;
      }

    .story-step:last-child {
      min-height: 62vh;
    }

    .story-step-inner {
        max-width: 540px;
      }

    .story-title-row {
        display: flex;
        align-items: flex-start;
        gap: 18px;
      }

    .story-step:not(.active) {
      opacity: 0.33;
    }

    .story-step.active {
      opacity: 1;
    }

    .story-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        color: #1d5fc6;
        transition: opacity .3s ease, transform .3s ease;
      }

    .story-icon svg {
      width: 100%;
      height: 100%;
      stroke-width: 1.9;
    }

    .story-step:not(.active) .story-icon {
      opacity: 0.42;
    }

    .story-step.active .story-icon {
      transform: scale(1.02);
    }

    .story-title {
        font-size: clamp(44px, 4vw, 64px);
        line-height: 1.02;
        letter-spacing: -0.07em;
        font-weight: 600;
        color: #121212;
        text-wrap: balance;
        margin: 0;
      }

    .story-copy {
        margin-top: 28px;
        max-width: 520px;
        font-size: clamp(22px, 1.65vw, 32px);
        line-height: 1.18;
        letter-spacing: -0.04em;
        color: #232323;
      }

    .story-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-top: 44px;
      color: #121212;
      text-decoration: none;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.03em;
      border-bottom: 2px solid currentColor;
      padding-bottom: 2px;
    }

    .story-link-placeholder {
      cursor: default;
    }

    .story-link::after {
      content: "→";
      font-size: 30px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .story-step:not(.active) .story-title,
    .story-step:not(.active) .story-copy,
    .story-step:not(.active) .story-link {
      color: #7a7a7a;
    }

    .story-step:not(.active) .story-link {
      border-bottom-color: transparent;
      pointer-events: none;
    }

    .story-step:not(.active) .story-link-placeholder {
      border-bottom-color: transparent;
    }

    .story-visual {
        position: sticky;
        top: 72px;
        align-self: start;
        height: fit-content;
        padding-top: 0;
      }

    .story-visual-bar {
      display: none;
    }

    .story-card {
        overflow: visible;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        min-height: auto;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 0;
      }

    .story-card::before,
    .story-card::after {
      display: none;
    }

    .story-card img {
        display: block;
        position: relative;
        z-index: 1;
        width: min(76%, 430px);
        height: min(72vh, 760px);
        object-fit: cover;
        object-position: center top;
        margin: 0 auto;
        border-radius: 28px;
        filter: drop-shadow(0 22px 34px rgba(18, 39, 70, 0.10));
      }

    .dot-grid-icon {
      width: 56px;
      height: 56px;
    }

    .story-step svg {
      display: block;
      width: 56px;
      height: 56px;
    }

    .service-link-placeholder {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #155fc0;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.03em;
      cursor: default;
    }

    .service-link-placeholder::after {
      content: "→";
      font-size: 24px;
      line-height: 1;
      margin-top: -1px;
    }


    .nav-wrap.scrolled {
      background: rgba(255,255,255,0.94);
      border-color: rgba(34,93,167,0.16);
      box-shadow: 0 18px 34px rgba(16, 57, 113, 0.14);
    }

    @media (max-width: 1180px) {
      .shell {
        padding-top: 106px;
      }
      .nav-wrap {
        width: min(88%, 1380px);
        min-height: 56px;
        padding: 6px 10px 6px 18px;
      }
      .nav-center { gap: 22px; }
      .story-grid {
          grid-template-columns: minmax(300px, 1fr) minmax(320px, 500px);
          gap: 40px;
        }
      .story-head {
          margin-bottom: 24px;
        }
      .story-card {
        min-height: auto;
        padding: 0;
      }
      .story-card img {
          width: min(78%, 390px);
          height: min(68vh, 700px);
        }
    }

    @media (max-width: 980px) {
      .shell { padding-top: 96px; }
      .nav-wrap {
        width: 90%;
        top: 18px;
        padding: 8px 10px 8px 14px;
      }
      .burger { display: inline-flex; }
      .nav-center, .contact-btn { display: none; }
      .nav-wrap.open {
        flex-wrap: wrap;
      }
      .nav-wrap.open .nav-center {
        display: flex;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 10px 8px 8px;
      }
      .nav-wrap.open .contact-btn {
        display: inline-flex;
        order: 4;
        margin: 0 8px 8px;
      }
      .hero {
        min-height: 100svh;
        padding: 112px 16px 28px;
      }
      h1 { font-size: clamp(38px, 8.7vw, 58px); }
      .hero p { font-size: 16px; }
      .btn-primary, .btn-secondary {
        width: 100%;
        min-width: 0;
        max-width: 420px;
        min-height: 62px;
        font-size: 17px;
      }
      .story-grid {
        grid-template-columns: 1fr;
      }
      .story-visual {
        position: relative;
        top: auto;
        order: -1;
        margin-bottom: 28px;
      }
      .story-card {
        min-height: auto;
        padding: 0;
      }
      .story-card img {
        width: min(84%, 320px);
        height: auto;
        max-height: 72vh;
        object-fit: contain;
      }
      .story-step {
        min-height: auto;
        padding: 34px 0 46px;
        border-top: 1px solid rgba(15,39,70,0.08);
      }
      .story-step:last-child {
        min-height: auto;
      }
      .story-step:not(.active) {
        opacity: 1;
      }
      .story-step:not(.active) .story-title,
      .story-step:not(.active) .story-copy,
      .story-step:not(.active) .story-link {
        color: inherit;
      }
      .story-step:not(.active) .story-link {
        border-bottom-color: currentColor;
        pointer-events: auto;
      }
    }

    @media (max-width: 640px) {
      .shell {
        padding-top: 90px;
      }
      .nav-wrap {
        border-radius: 18px;
        top: 14px;
      }
      .brand-icon { width: 30px; height: 30px; }
      .brand-wordmark { font-size: clamp(1.35rem, 6vw, 1.7rem); }
      .hero { padding-top: 54px; }
      h1 {
        font-size: clamp(32px, 10vw, 46px);
        line-height: 1.02;
      }
      .eyebrow {
        font-size: 10px;
        letter-spacing: 0.12em;
      }
      .hero-meta {
        gap: 12px;
        font-size: 13px;
      }
      .story-title {
        font-size: clamp(34px, 9vw, 48px);
      }
      .story-copy {
          font-size: 18px;
        }
      .story-link {
        font-size: 18px;
      }
      .story-head {
          margin-bottom: 20px;
        }
      .story-card {
        min-height: 380px;
        border-radius: 0;
      }
      .story-card img {
        width: min(80%, 250px);
      }
    }
  
    .services-section {
      background:
        radial-gradient(circle at top left, rgba(21, 95, 192, 0.05) 0%, transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #f1f4f8 100%);
      padding: 96px 0 112px;
      position: relative;
      z-index: 4;
      border-top: 1px solid rgba(15, 39, 70, 0.05);
      scroll-margin-top: 68px;
    }

    .services-shell {
      width: min(85%, 1460px);
      margin: 0 auto;
    }

    .services-head {
      max-width: 820px;
      margin-bottom: 52px;
    }

    .services-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 18px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(33, 112, 214, 0.14) 0%, rgba(33, 112, 214, 0.08) 100%);
      color: #155fc0;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .services-tag::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #2d83e6;
      box-shadow: 0 0 0 8px rgba(45, 131, 230, 0.12);
    }

    .services-title {
      font-size: clamp(42px, 4.8vw, 74px);
      line-height: 1.02;
      letter-spacing: -0.06em;
      color: #111827;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .services-copy {
      max-width: 720px;
      color: #526277;
      font-size: clamp(18px, 1.38vw, 23px);
      line-height: 1.42;
      letter-spacing: -0.02em;
    }

    .service-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .service-item {
      --service-accent: #155fc0;
      display: block;
      min-height: 100%;
      padding: 0 0 30px;
      border: 1px solid rgba(21, 95, 192, 0.09);
      border-radius: 26px;
      background:
        radial-gradient(circle at top right, rgba(45, 131, 230, 0.08) 0%, transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      box-shadow: 0 14px 28px rgba(15, 39, 70, 0.06);
      position: relative;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      overflow: hidden;
    }

    .service-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 42px rgba(15, 39, 70, 0.10);
      border-color: rgba(21, 95, 192, 0.16);
    }

    .service-item::before {
      content: "";
      display: block;
      height: 7px;
      background: linear-gradient(135deg, #163d82 0%, #2d72dd 100%);
    }

    .service-item:nth-child(2) {
      --service-accent: #1679b8;
      background:
        radial-gradient(circle at top left, rgba(45, 131, 230, 0.08) 0%, rgba(45, 131, 230, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
      border-color: rgba(17, 24, 39, 0.07);
      border-radius: 0;
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
    }

    .service-item:nth-child(3) {
      --service-accent: #0f7a8f;
      background:
        radial-gradient(circle at top left, rgba(45, 131, 230, 0.08) 0%, rgba(45, 131, 230, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
      border-color: rgba(17, 24, 39, 0.07);
      border-radius: 0;
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
    }

    .service-item:nth-child(4) {
      --service-accent: #315fbf;
      background:
        radial-gradient(circle at top left, rgba(45, 131, 230, 0.08) 0%, rgba(45, 131, 230, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
      border-color: rgba(17, 24, 39, 0.07);
      border-radius: 0;
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
    }

    .service-item:nth-child(5) {
      --service-accent: #0f8aa5;
      background:
        radial-gradient(circle at top left, rgba(45, 131, 230, 0.08) 0%, rgba(45, 131, 230, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
      border-color: rgba(17, 24, 39, 0.07);
      border-radius: 0;
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
    }

    .service-item:nth-child(6) {
      --service-accent: #256fcb;
      background:
        radial-gradient(circle at top left, rgba(45, 131, 230, 0.08) 0%, rgba(45, 131, 230, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
      border-color: rgba(17, 24, 39, 0.07);
      border-radius: 0;
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
    }

    .service-item:first-child {
      --service-accent: #111827;
      background:
        radial-gradient(circle at top left, rgba(45, 131, 230, 0.08) 0%, rgba(45, 131, 230, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
      border-color: rgba(17, 24, 39, 0.07);
      border-radius: 0;
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
    }

    .service-item:first-child::before {
      height: 5px;
      background: linear-gradient(90deg, #111827 0%, #2d83e6 100%);
    }

    .service-item:first-child .service-body {
      padding-top: 32px;
    }

    .service-item:first-child .service-name-row {
      gap: 12px;
      margin-bottom: 18px;
    }

    .service-item:first-child .service-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
      color: #2d72dd;
      position: relative;
    }

    .service-item:first-child .service-icon::after {
      content: "";
      position: absolute;
      inset: -8px;
      border-radius: 16px;
      background: transparent;
      z-index: -1;
    }

    .service-item:first-child .service-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.75;
    }

    .service-item:first-child .service-name {
      font-size: clamp(1.55rem, 1.95vw, 2rem);
      letter-spacing: -0.03em;
      font-weight: 600;
      color: #111827;
    }

    .service-item:first-child .service-desc {
      color: #4b5563;
      font-size: clamp(1rem, 1.05vw, 1.02rem);
      line-height: 1.68;
      max-width: 100%;
    }

    .service-item:nth-child(2)::before {
      height: 5px;
      background: linear-gradient(90deg, #10315b 0%, #1679b8 100%);
    }

    .service-item:nth-child(2) .service-body {
      padding-top: 32px;
    }

    .service-item:nth-child(2) .service-name-row {
      gap: 12px;
      margin-bottom: 18px;
    }

    .service-item:nth-child(2) .service-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
      color: #1679b8;
    }

    .service-item:nth-child(2) .service-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.75;
    }

    .service-item:nth-child(2) .service-name {
      font-size: clamp(1.55rem, 1.95vw, 2rem);
      letter-spacing: -0.03em;
      font-weight: 600;
      color: #111827;
    }

    .service-item:nth-child(2) .service-desc {
      color: #4b5563;
      font-size: clamp(1rem, 1.05vw, 1.02rem);
      line-height: 1.68;
      max-width: 100%;
    }

    .service-item:nth-child(3)::before {
      height: 5px;
      background: linear-gradient(90deg, #10315b 0%, #0f7a8f 100%);
    }

    .service-item:nth-child(3) .service-body {
      padding-top: 32px;
    }

    .service-item:nth-child(3) .service-name-row {
      gap: 12px;
      margin-bottom: 18px;
    }

    .service-item:nth-child(3) .service-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
      color: #0f7a8f;
    }

    .service-item:nth-child(3) .service-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.75;
    }

    .service-item:nth-child(3) .service-name {
      font-size: clamp(1.55rem, 1.95vw, 2rem);
      letter-spacing: -0.03em;
      font-weight: 600;
      color: #111827;
    }

    .service-item:nth-child(3) .service-desc {
      color: #4b5563;
      font-size: clamp(1rem, 1.05vw, 1.02rem);
      line-height: 1.68;
      max-width: 100%;
    }

    .service-item:nth-child(4)::before {
      height: 5px;
      background: linear-gradient(90deg, #10315b 0%, #315fbf 100%);
    }

    .service-item:nth-child(4) .service-body {
      padding-top: 32px;
    }

    .service-item:nth-child(4) .service-name-row {
      gap: 12px;
      margin-bottom: 18px;
    }

    .service-item:nth-child(4) .service-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
      color: #315fbf;
    }

    .service-item:nth-child(4) .service-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.75;
    }

    .service-item:nth-child(4) .service-name {
      font-size: clamp(1.55rem, 1.95vw, 2rem);
      letter-spacing: -0.03em;
      font-weight: 600;
      color: #111827;
    }

    .service-item:nth-child(4) .service-desc {
      color: #4b5563;
      font-size: clamp(1rem, 1.05vw, 1.02rem);
      line-height: 1.68;
      max-width: 100%;
    }

    .service-item:nth-child(5)::before {
      height: 5px;
      background: linear-gradient(90deg, #10315b 0%, #0f8aa5 100%);
    }

    .service-item:nth-child(5) .service-body {
      padding-top: 32px;
    }

    .service-item:nth-child(5) .service-name-row {
      gap: 12px;
      margin-bottom: 18px;
    }

    .service-item:nth-child(5) .service-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
      color: #0f8aa5;
    }

    .service-item:nth-child(5) .service-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.75;
    }

    .service-item:nth-child(5) .service-name {
      font-size: clamp(1.55rem, 1.95vw, 2rem);
      letter-spacing: -0.03em;
      font-weight: 600;
      color: #111827;
    }

    .service-item:nth-child(5) .service-desc {
      color: #4b5563;
      font-size: clamp(1rem, 1.05vw, 1.02rem);
      line-height: 1.68;
      max-width: 100%;
    }

    .service-item:nth-child(6)::before {
      height: 5px;
      background: linear-gradient(90deg, #10315b 0%, #256fcb 100%);
    }

    .service-item:nth-child(6) .service-body {
      padding-top: 32px;
    }

    .service-item:nth-child(6) .service-name-row {
      gap: 12px;
      margin-bottom: 18px;
    }

    .service-item:nth-child(6) .service-icon {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
      color: #256fcb;
    }

    .service-item:nth-child(6) .service-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.75;
    }

    .service-item:nth-child(6) .service-name {
      font-size: clamp(1.55rem, 1.95vw, 2rem);
      letter-spacing: -0.03em;
      font-weight: 600;
      color: #111827;
    }

    .service-item:nth-child(6) .service-desc {
      color: #4b5563;
      font-size: clamp(1rem, 1.05vw, 1.02rem);
      line-height: 1.68;
      max-width: 100%;
    }

    .service-media {
      display: none;
    }

    .service-media img {
      display: none;
    }

    .service-body {
      max-width: none;
      color: #111827;
      padding: 28px 30px 0;
    }

    .service-name-row {
      display: flex;
      align-items: center;
      gap: 14px;
      width: auto;
      min-width: 0;
      padding: 0;
      margin: 0 0 18px;
      background: none;
      border-radius: 0;
      box-shadow: none;
      position: relative;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      flex: 0 0 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 0;
      background: transparent;
      color: var(--service-accent);
      box-shadow: none;
    }

    .service-icon svg {
      width: 27px;
      height: 27px;
      stroke-width: 1.9;
    }

    .service-name {
      font-size: clamp(1.32rem, 1.6vw, 1.7rem);
      line-height: 1.08;
      letter-spacing: -0.035em;
      font-weight: 600;
      color: #111827;
      margin: 0;
      max-width: none;
    }

    .service-desc {
      color: #5d6b7d;
      font-size: clamp(0.98rem, 1.1vw, 1.05rem);
      line-height: 1.62;
      letter-spacing: -0.02em;
      font-weight: 400;
      max-width: 30ch;
    }

    .service-link {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #155fc0;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.06em;
    }

    .service-link::after {
      content: "→";
      font-size: 24px;
      line-height: 1;
      margin-top: -1px;
    }



    .contact-section {
      background: linear-gradient(180deg, #f7f7f8 0%, #f2f3f5 100%);
      padding: 96px 0 102px;
      position: relative;
      z-index: 4;
      border-top: 1px solid rgba(15, 39, 70, 0.06);
      scroll-margin-top: 68px;
    }

    .contact-shell {
      width: min(85%, 1460px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(300px, 520px) minmax(420px, 1fr);
      gap: 48px;
      align-items: start;
    }

    .contact-copy {
      max-width: 520px;
    }

    .contact-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(21, 95, 192, 0.10);
        border: 1px solid rgba(21, 95, 192, 0.12);
        color: var(--primary-strong);
        font-size: 13px;
        font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 22px;`r`n        text-transform: uppercase;
    }

    .contact-tag::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 8px rgba(45, 131, 230, 0.12);
      }

    .contact-title {
      font-size: clamp(38px, 4.2vw, 68px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 18px;
    }

    .contact-text {
      font-size: clamp(18px, 1.45vw, 24px);
      line-height: 1.45;
      color: #5f7289;
      max-width: 470px;
      margin-bottom: 28px;
    }

    .contact-points {
      display: grid;
      gap: 14px;
    }

    .contact-point {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 12px;
      align-items: start;
      color: #30445d;
      font-size: 15px;
      line-height: 1.5;
    }

    .contact-point::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 7px;
      background: var(--primary);
    }

    .contact-form-wrap {
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(15, 39, 70, 0.10);
      box-shadow: 0 28px 60px rgba(12, 31, 58, 0.10);
      position: relative;
      overflow: hidden;
    }

    .contact-form-wrap::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #155fc0 0%, #4b8de0 100%);
    }

    .contact-form {
      padding: 34px 34px 36px;
      display: grid;
      gap: 20px;
    }

    .contact-form-head h3 {
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--text);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .contact-form-head p {
      color: #60748c;
      font-size: 15px;
      line-height: 1.6;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .field {
      display: grid;
      gap: 10px;
    }

    .field--full {
      grid-column: 1 / -1;
    }

    .field label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: #35506e;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(15, 39, 70, 0.16);
      background: #ffffff;
      color: var(--text);
      font-family: inherit;
      font-size: 16px;
      padding: 16px 18px;
      outline: none;
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
      border-radius: 0;
      resize: vertical;
    }

    .field textarea {
      min-height: 160px;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #8ea0b4;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(21, 95, 192, 0.65);
      box-shadow: 0 0 0 4px rgba(21, 95, 192, 0.10);
      transform: translateY(-1px);
    }

    .contact-actions {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 18px;
      flex-wrap: wrap;
      padding-top: 4px;
    }

    .contact-note {
      color: #6c8098;
      font-size: 13px;
      line-height: 1.5;
      max-width: 380px;
    }

    .contact-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      background: linear-gradient(180deg, #155fc0 0%, #104f9d 100%);
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      box-shadow: 0 18px 32px rgba(16, 79, 157, 0.22);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .contact-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 36px rgba(16, 79, 157, 0.28);
    }

    .about-section {
      background: linear-gradient(180deg, #f7f7f8 0%, #f2f3f5 100%);
      padding: 92px 0 104px;
      position: relative;
      z-index: 4;
      border-top: 1px solid rgba(15, 39, 70, 0.06);
      scroll-margin-top: 68px;
    }

    .about-shell {
      width: min(85%, 1460px);
      margin: 0 auto;
    }

    .about-head {
      max-width: 780px;
      margin-bottom: 2px;
    }

    .about-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(21, 95, 192, 0.10);
      color: #155fc0;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .about-tag::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #2d83e6;
      box-shadow: 0 0 0 8px rgba(45, 131, 230, 0.12);
    }

    @media (prefers-reduced-motion: no-preference) {
      .story-section:target .story-shell,
      .services-section:target .services-shell,
      .contact-section:target .contact-shell,
      .about-section:target .about-shell {
        animation: section-settle 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      .story-section:target .story-tag,
      .services-section:target .services-tag,
      .contact-section:target .contact-tag,
      .about-section:target .about-tag {
        animation: section-badge-pop 700ms cubic-bezier(0.18, 0.85, 0.22, 1);
      }
    }

    @keyframes section-settle {
      0% {
        opacity: 0.78;
        transform: translateY(14px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes section-badge-pop {
      0% {
        transform: translateY(8px) scale(0.96);
        box-shadow: 0 0 0 0 rgba(45, 131, 230, 0.18);
      }
      55% {
        transform: translateY(0) scale(1.02);
        box-shadow: 0 16px 28px rgba(45, 131, 230, 0.18);
      }
      100% {
        transform: translateY(0) scale(1);
        box-shadow: none;
      }
    }

    .about-title {
      font-size: clamp(38px, 4.2vw, 68px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      color: #0f2746;
      margin-bottom: 18px;
      max-width: 980px;
    }

    .about-copy {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #5b708a;
      max-width: 760px;
    }

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

    .about-item {
      border-top: 1px solid rgba(15, 39, 70, 0.10);
      padding: 24px 0 0;
    }

    .about-item strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1.2;
      color: #0f2746;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .about-item p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: #617792;
    }

    .site-footer {
      background: #082a5b;
      color: rgba(255,255,255,0.92);
      min-height: 230px;
      padding: 38px 0 18px;
      border-top: 0;
      box-shadow: none;
    }

    .footer-shell {
      width: min(86%, 1460px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 1.2fr) minmax(170px, 0.6fr) minmax(150px, 0.55fr);
      gap: 0;
      align-items: start;
      border-bottom: 1px solid rgba(255,255,255,0.16);
      padding: 0 0 22px;
      position: relative;
    }

    .footer-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
    }

    .footer-brand,
    .footer-service,
    .footer-social {
      min-height: 128px;
      padding: 0 34px;
      position: relative;
      z-index: 1;
    }

    .footer-brand {
      padding-left: 0;
      display: grid;
      align-content: start;
      gap: 9px;
    }

    .footer-service,
    .footer-social {
      border-left: 1px solid rgba(255,255,255,0.10);
      display: grid;
      align-content: start;
      gap: 9px;
    }

    .footer-brand-lockup {
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }

    .footer-brand-icon {
      display: block;
      width: 38px;
      height: 38px;
      object-fit: contain;
      flex: 0 0 auto;
      filter: none;
    }

    .footer-brand-wordmark {
      color: #ffffff;
      font-size: clamp(2rem, 2.4vw, 2.7rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    .footer-brand span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.35;
    }

    .footer-brand a,
    .footer-brand p,
    .footer-service a,
    .footer-service p {
      margin: 0;
      color: rgba(255,255,255,0.94);
      text-decoration: none;
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .footer-brand a:hover,
    .footer-service a:hover {
      color: #ffffff;
    }

    .footer-title {
      color: #ffffff;
      font-size: 0.98rem;
      font-weight: 700;
      margin: 0 0 10px;
      letter-spacing: 0.06em;
    }

    .footer-social-list {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding-top: 4px;
    }

    .footer-social-list a {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      box-shadow: none;
      color: #ffffff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      border-radius: 6px;
    }

    .footer-social-list a:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.22);
    }

    .footer-copy {
      width: min(86%, 1460px);
      margin: 12px auto 0;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.80);
      text-align: center;
    }

    @media (max-width: 960px) {
      .footer-shell {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .footer-brand,
      .footer-service,
      .footer-social {
        min-height: auto;
        padding: 0;
      }

      .footer-service,
      .footer-social {
        border-left: 0;
        padding-top: 22px;
        border-top: 1px solid rgba(255,255,255,0.12);
      }
    }


    @media (max-width: 1100px) {
      .services-shell,
      .contact-shell,
      .footer-shell {
        width: min(90%, 1460px);
      }

      .contact-shell {
        grid-template-columns: 1fr;
        gap: 54px;
      }

      .service-item {
        padding: 0 0 24px;
      }

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

      .service-item::before {
        height: 7px;
      }

      .service-body,
      .service-desc {
        max-width: 100%;
      }

      .service-body {
        padding: 24px 24px 0;
      }
    }

    @media (max-width: 700px) {
      .services-section {
        padding: 72px 0 82px;
      }

      .contact-section {
        padding: 76px 0 82px;
      }

      .about-section {
        padding: 72px 0 82px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .services-shell,
      .contact-shell,
      .footer-shell {
        width: 92%;
      }

      .services-head {
        margin-bottom: 28px;
      }

      .services-title {
        font-size: clamp(34px, 10vw, 52px);
      }

      .services-copy {
        font-size: 17px;
      }

      .service-list {
        grid-template-columns: 1fr;
      }

      .service-body {
        padding: 22px 20px 0;
      }

      .service-name-row {
        min-width: 0;
        width: auto;
        margin-top: 0;
        margin-bottom: 16px;
        padding: 0;
      }

      .service-name {
        font-size: clamp(1.05rem, 5vw, 1.3rem);
      }

      .service-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
      }

      .service-desc {
        font-size: 0.95rem;
        line-height: 1.52;
        max-width: 100%;
      }

      .service-link {
        font-size: 15px;
      }
      .service-link-placeholder {
        font-size: 15px;
      }

      .contact-title {
        font-size: clamp(34px, 10vw, 52px);
      }

      .contact-text {
        font-size: 17px;
      }

      .contact-form {
        padding: 28px 22px 30px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-actions {
        align-items: flex-start;
      }

      .contact-button {
        width: 100%;
      }

      .footer-shell {
        align-items: flex-start;
      }
    }







