
    /* контейнер */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* хедер */
    .header {
      background: white;
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(8px);
      background: rgba(255,255,255,0.96);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      padding: 16px 0;
    }
    .logo {
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .logo span {
      color: #0f172a;
      background: none;
      background-clip: unset;
      -webkit-background-clip: unset;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      font-weight: 500;
    }
    .nav-links a {
      text-decoration: none;
      color: #1e293b;
      transition: color 0.2s;
    }
    .nav-links a:hover {
      color: #2c6e9e;
    }
    .btn-outline {
      border: 1px solid #cbd5e1;
      padding: 8px 18px;
      border-radius: 40px;
      background: white;
      font-weight: 500;
      transition: all 0.2s;
    }
    .btn-outline:hover {
      border-color: #2c6e9e;
      background: #f1f5f9;
    }

    /* hero */
    .hero {
      padding: 60px 0 48px;
      background: linear-gradient(120deg, #eef2ff 0%, #ffffff 80%);
    }
    .hero-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: space-between;
    }
    .hero-text {
      flex: 1;
    }
    .hero-badge {
      background: #e0f2fe;
      color: #0369a1;
      display: inline-block;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 20px;
    }
    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }
    .hero-text p {
      font-size: 1.2rem;
      color: #334155;
      margin-bottom: 32px;
      max-width: 560px;
    }
    .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: #1e3c72;
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
      display: inline-block;
    }
    .btn-primary:hover {
      background: #0f2b4f;
    }
    .btn-secondary {
      background: white;
      border: 1px solid #cbd5e1;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      color: #1e293b;
    }
    .hero-stats {
      flex: 0.8;
      background: white;
      padding: 24px;
      border-radius: 32px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #1e3c72;
    }

    /* регионы */
    .regions {
      padding: 64px 0;
      background: white;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }
    .section-sub {
      color: #475569;
      margin-bottom: 40px;
      max-width: 700px;
    }
    .city-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .city-card {
      background: #f8fafc;
      border-radius: 24px;
      padding: 20px;
      transition: all 0.2s;
      border: 1px solid #e2e8f0;
    }
    .city-card:hover {
      border-color: #b9d0f0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    }
    .city-name {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .city-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 12px;
    }
    .city-links a {
      text-decoration: none;
      color: #2563eb;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .city-links a:hover {
      text-decoration: underline;
    }

    /* блок сравнения */
    .compare {
      background: #f1f5f9;
      padding: 64px 0;
    }
    .table-wrapper {
      overflow-x: auto;
      background: white;
      border-radius: 28px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      border: 1px solid #e2e8f0;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }
    th, td {
      padding: 16px 20px;
      text-align: left;
      border-bottom: 1px solid #e2e8f0;
    }
    th {
      background: #f1f5f9;
      font-weight: 600;
    }
    .badge-yes {
      background: #dcfce7;
      color: #15803d;
      padding: 4px 10px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 500;
      display: inline-block;
    }
    .badge-no {
      background: #fee2e2;
      color: #b91c1c;
      padding: 4px 10px;
      border-radius: 30px;
    }

    /* как работает */
    .steps {
      padding: 64px 0;
      background: white;
    }
    .step-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
      gap: 30px;
      margin: 40px 0;
    }
    .step-item {
      background: #f8fafc;
      border-radius: 28px;
      padding: 24px;
    }
    .step-num {
      width: 44px;
      height: 44px;
      background: #1e3c72;
      color: white;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }

    /* цены */
    .pricing {
      background: #ffffff;
      padding: 48px 0;
      border-top: 1px solid #e2e8f0;
    }
    .price-card {
      background: #f1f5f9;
      padding: 24px;
      border-radius: 28px;
      display: inline-block;
      width: 100%;
    }

    /* футер */
    .footer {
      background: #0f172a;
      color: #cbd5e1;
      padding: 48px 0 32px;
      margin-top: 32px;
    }
    .footer a {
      color: #94a3b8;
      text-decoration: none;
    }
    hr {
      margin: 32px 0;
      border-color: #1e293b;
    }

    @media (max-width: 760px) {
      .hero-text h1 { font-size: 2rem; }
      .container { padding: 0 20px; }
      .header-inner { flex-direction: column; }
    }
