
    * {
      box-sizing: border-box;
    }

    :root {
      --bg: #f6f5f2;
      --surface: #ffffff;
      --text: #111827;
      --muted: #5f6673;
      --line: #e3e0da;
      --accent: #0f2f57;
      --accent-2: #b99a5b;
      --shadow: 0 24px 80px rgba(17, 24, 39, 0.09);
      --radius: 20px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(246, 245, 242, 0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: inline-flex;
      gap: 12px;
      align-items: center;
      font-weight: 700;
      color: var(--text);
    }

    .brand:hover {
      text-decoration: none;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--accent);
      color: white;
      font-weight: 800;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 0.95rem;
    }

    .nav-toggle {
      display: none;
      border: 0;
      background: transparent;
      font-size: 1.7rem;
      cursor: pointer;
    }

    .hero {
      max-width: 1180px;
      margin: 0 auto;
      padding: 96px 24px 72px;
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
      gap: 40px;
      align-items: center;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--accent-2);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 700;
      font-size: 0.78rem;
    }

    h1,
    h2,
    h3 {
      line-height: 1.1;
      margin-top: 0;
    }

    h1 {
      font-size: clamp(2.4rem, 6vw, 5.6rem);
      letter-spacing: -0.06em;
      margin-bottom: 24px;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }

    h3 {
      font-size: 1.12rem;
      margin-bottom: 10px;
    }

    .hero-text {
      max-width: 720px;
      color: var(--muted);
      font-size: 1.2rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      cursor: pointer;
      transition: 0.18s ease;
    }

    .button:hover {
      transform: translateY(-1px);
      text-decoration: none;
    }

    .button.primary {
      background: var(--accent);
      color: white;
      box-shadow: 0 14px 30px rgba(15, 47, 87, 0.25);
    }

    .button.secondary {
      color: var(--accent);
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.6);
    }

    .hero-panel {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .hero-panel h2 {
      font-size: 1.4rem;
      letter-spacing: -0.02em;
    }

    .hero-panel ul {
      padding-left: 20px;
      margin-bottom: 0;
      color: var(--muted);
    }

    .section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 72px 24px;
    }

    .intro {
      padding-top: 28px;
      padding-bottom: 28px;
    }

    .intro p {
      max-width: 980px;
      font-size: clamp(1.3rem, 3vw, 2.1rem);
      line-height: 1.32;
      letter-spacing: -0.035em;
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .card,
    .company-block {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 12px 36px rgba(17, 24, 39, 0.04);
    }

    .card p,
    .company-block p,
    .step p,
    .contact-copy p,
    .legal p,
    .legal li {
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: 0.75fr 1.25fr;
      gap: 50px;
      align-items: start;
    }

    .steps {
      display: grid;
      gap: 16px;
    }

    .step {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
    }

    .step span {
      color: var(--accent-2);
      font-weight: 800;
    }

    .company-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .contact-section {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 42px;
      align-items: start;
    }

    .contact-form {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 16px;
    }

    label {
      display: grid;
      gap: 7px;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 13px 14px;
      font: inherit;
      background: #fff;
      color: var(--text);
    }

    textarea {
      resize: vertical;
    }

    .checkbox {
      grid-template-columns: 18px 1fr;
      align-items: start;
      font-weight: 500;
      color: var(--muted);
    }

    .checkbox input {
      width: 18px;
      margin-top: 4px;
    }

    .form-note {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .legal {
      max-width: 980px;
    }

    .legal h3 {
      margin-top: 30px;
    }

    .table-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--surface);
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 760px;
    }

    th,
    td {
      padding: 16px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    th {
      background: #fbfaf7;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    .footer {
      max-width: 1180px;
      margin: 0 auto;
      padding: 38px 24px 56px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 24px;
      color: var(--muted);
    }

    .footer p {
      margin: 6px 0 0;
    }

    @media (max-width: 920px) {
      .hero,
      .split,
      .contact-section {
        grid-template-columns: 1fr;
      }

      .cards,
      .company-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 75px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }
    }

    @media (max-width: 640px) {
      .nav {
        padding: 14px 18px;
      }

      .brand-text {
        max-width: 210px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .hero {
        padding-top: 66px;
      }

      .cards,
      .company-grid {
        grid-template-columns: 1fr;
      }

      .footer {
        flex-direction: column;
      }

      h1 {
        font-size: 2.75rem;
      }
    }
  
    .post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .post-image { width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius); margin: 20px 0; }
    .admin-panel { max-width: 900px; margin: 0 auto; }
    .admin-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: grid; gap: 16px; }
    .status { color: var(--muted); margin: 0; }
    @media (max-width: 920px) { .post-grid { grid-template-columns: 1fr; } }
