@charset "utf-8";
/* CSS Document */
  :root {
      --ink: #17202a;
      --muted: #5f6b7a;
      --line: #dce3ea;
      --soft: #f5f8fb;
      --accent: #1f6f8b;
      --accent-dark: #14536a;
      --max: 1080px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: #ffffff;
      line-height: 1.6;
    }

    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .page {
      max-width: var(--max);
      margin: 0 auto;
      padding: 56px 28px 48px;
    }

    .hero {
      border-bottom: 1px solid var(--line);
      padding-bottom: 34px;
      margin-bottom: 34px;
    }

    .name {
      color: var(--accent-dark);
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 17px;
      margin-bottom: 14px;
    }

    h1 {
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin: 0 0 18px;
      max-width: 880px;
    }

    .lead {
      font-size: 20px;
      color: var(--muted);
      max-width: 850px;
      margin: 0 0 18px;
    }

    .credibility {
      font-weight: 700;
      color: var(--ink);
      margin: 0;
    }

    section { margin: 0 0 34px; }

    .section-title {
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--accent-dark);
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
      margin: 0 0 18px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 14px;
      padding: 22px;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 19px;
      line-height: 1.25;
    }

    ul {
      margin: 0;
      padding-left: 20px;
      color: var(--muted);
    }

    li { margin-bottom: 6px; }

    .work-item {
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
    }

    .work-item:first-of-type { padding-top: 0; }
    .work-item:last-child { border-bottom: 0; padding-bottom: 0; }

    .work-item h3 {
      margin: 0 0 6px;
      font-size: 20px;
    }

    .work-item p {
      margin: 0;
      color: var(--muted);
      max-width: 900px;
    }

    .highlight {
      background: rgb(245 248 251 / 50%);
      border-left: 5px solid #0f8d2f;
      padding: 24px;
      border-radius: 12px;
    }

    .highlight p {
      margin: 0 0 14px;
      font-size: 20px;
      font-weight: 700;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .benefit {
      background: rgb(245 248 251 / 50%);
      border-radius: 12px;
      padding: 16px;
      font-weight: 700;
      color: var(--ink);
      min-height: 92px;
    }

    .contact {
      background: var(--ink);
      color: #fff;
      border-radius: 16px;
      padding: 28px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }

    .contact h2 {
      margin: 0 0 8px;
      font-size: 28px;
      letter-spacing: -0.03em;
    }

    .contact p { margin: 0; color: #d9e1e8; }
    .contact a { color: #ffffff; font-weight: 700; }

    .contact-links {
      text-align: right;
      white-space: nowrap;
    }

    @media (max-width: 760px) {
      .page { padding: 38px 18px; }
      .grid, .benefits { grid-template-columns: 1fr; }

      .contact { display: block; }
      .contact-links { text-align: left; margin-top: 18px; white-space: normal; }
    }

