
    /* БАЗОВЫЕ СБРОСЫ И ШРИФТЫ */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: #F6F8F9;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      color: #111827;
      overflow-x: hidden;
      line-height: 1.5;
      
    }

    /* СЕТКА И КОНТЕЙНЕРЫ */
    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 100px;
  
    }
    .section-padding {
      padding: 112px 100px;
    }
    .section-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 16px;
      color: #18181b;
    }
    .section-subtitle {
      color: #6b7280;
      font-size: 18px;
      margin-bottom: 48px;
      max-width: 600px;
    }

    /* КНОПКИ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 56px;
      padding: 0 32px;
      border-radius: 16px;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      
    }
    .btn-primary {
      background-color: #0284c7;
      color: #ffffff;
      border: none;
    }
    .btn-primary:hover {
      background-color: #0369a1;
    }
    .btn-secondary {
      background-color: #ffffff;
      color: #0284c7;
      border: 1px solid #bfdbfe;
    }
    .btn-secondary:hover {
      background-color: #eff6ff;
    }

    /* 1. ШАПКА САЙТА */
    .header {
      width: 100%;
      background-color: #ffffff;

      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0;
    }
    .header-container {
      height: 96px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin:0;
      width:100%;
    }
    .phone-block {
      display: flex;
      flex-direction: column;
    }
    .phone-label {
      color: #0284c7;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 4px;
    }
    .phone-link {
      color: #111827;
      font-size: 24px;
      font-weight: bold;
      text-decoration: none;
    }
    .nav-desktop {
      display: flex;
      gap: 32px;
    }
    .nav-link {
      color: #27272a;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }
    .nav-mobile-descr{
      display:none;
    }
    .list-places-mobile{
      list-style: none;
      color:#6D7A86;
      font-weight:400;
      display:flex;
    }
    .item-places-mobile{
      display:flex;
      align-items:center;
    }
  
    .item-place-border-mobile{
      display: inline-block;
      width: 2px;
      height: 2px;
      background-color: #6D7A86;
      border-radius: 50%;
      margin-left: 5px;
      margin-right: 5px;
    }
    /* 2. ГЛАВНЫЙ БАННЕР */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      min-height: calc(100vh - 96px);
      background-color: #fff;

    }
    .hero-content { flex: 1; max-width: 600px; padding:0 0 0 100px }
    .hero-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
    .hero-line { width: 28px; height: 3px; background-color: #0284c7; }
    .hero-subtitle { color: #0284c7; font-size: 12px; font-weight: 800; text-transform: uppercase; }
    .hero-title { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
    .hero-title span { color: #0284c7; }
    .hero-description { color: #6b7280; font-size: 18px; margin-bottom: 32px; }
    .hero-actions { display: flex; gap: 16px; }
    .hero-image-container { flex: 1; display: flex; justify-content: center; position: relative; }
    .bg-insect-pattern { position: absolute; width: 130%; opacity: 0.12; pointer-events: none; transform: rotate(-4deg); }
    .car-img { position: relative; max-width: 100%; height: auto; z-index: 2; }
    .list-places { display: flex; flex-wrap: wrap; gap: 16px; list-style: none; padding: 20px 0 24px 0}
    .item-place { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #6b7280; }
    .item-place-border{ display: inline-block;
      width: 4px;
      height: 4px;
      background-color: #0284c7;
      border-radius: 50%;
      margin-left: 8px;
    }
    .hero-places{
      padding-left: 16px;
    }
    .bg-mobile{
      display:none;
    }

    /* 3. СЕКЦИЯ: ПОЧЕМУ МЫ */
    .advantages { background-color: #f9fafb; }
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .adv-card {
      padding: 32px;
      border-top: 1px solid #DCE5EB;
    }
    .adv-num {
      font-size: 32px;
      font-weight: 800;
      color: #bfdbfe;
      margin-bottom: 16px;
    }
    .adv-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .adv-text { color: #6b7280; font-size: 15px; }

    /* 4. СЕКЦИЯ: КУДА ПОЕДЕМ */
    #directions { 
        background-color: #151A20; 
        color:#fff;
        h2{
            color:#fff;
        }
    }
    .container-title{
        display: flex;
        justify-content: space-between;
    }
    .directions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .dir-card {
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap:20px;
    }
    .blue-card {
      background: #0875C9;
      color: #ffffff;
      .dir-text{
        color: rgba(255, 255, 255, 0.73);
      }
    }
    .black-card{
        background: transparent;
        color:#fff;
         border: 1px solid #e5e7eb;
         border-radius: 24px;
    }
    .dir-img { width: 100%; height: 200px; object-fit: cover; }
    .dir-body { padding: 24px; flex-grow: 1; }
    .dir-tag { color: #0284c7; font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; display: block; }
    .dir-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
    .dir-text { color: #6b7280; font-size: 15px; }

    /* 5. СЕКЦИЯ: ТРИ ШАГА */
  
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .step-item { 
      position: relative; 
      background: #fff;
      border-radius: 20px;
      border: 1px solid #DCE5EB;
      padding: 22px 24px 33px 24px;
    }
    .step-num { color: #0284c7; font-size: 14px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; display: block; }
    .step-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .step-text { color: #4b5563; font-size: 15px; }

    /* 6. СЕКЦИЯ: МАШИНА ПОД ЗАДАЧУ */
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .fleet-card {
      border: 1px solid #f3f4f6;
      border-radius: 24px;
      padding: 24px;
      text-align: center;
      background: #ffffff;
    }
    .fleet-img { max-width: 100%; height: 140px; object-fit: contain; margin-bottom: 16px; }
    .fleet-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

    /* БАННЕР ЕЖБАС */
    .ezhbus-banner {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      color: #ffffff;
      padding: 40px;
      border-radius: 32px;
      margin-top: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }
    .ezhbus-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
    .ezhbus-text { color: #94a3b8; max-width: 600px; }
    .ezhbus-link { color: #38bdf8; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }

    /* 7. СЕКЦИЯ: ПРИЛОЖЕНИЕ С ФОРМОЙ */
    .app-section { background-color: #f9fafb; }
    .app-flex { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
    .app-content { flex: 1; }
    .app-list { list-style: none; margin: 32px 0; }
    .app-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 16px; font-weight: 600; }
    .app-list li span { color: #0284c7; font-weight: 900; }
    
    /* Форма заказа */
    .mock-form {
      flex: 1;
      max-width: 400px;
      background: #ffffff;
      border-radius: 32px;
      padding: 32px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      border: 1px solid #e5e7eb;
    }
    .form-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; text-align: center; }
    .input-group { margin-bottom: 16px; }
    .input-label { display: block; font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; margin-bottom: 6px; }
    .input-field { width: 100%; height: 48px; border: 1px solid #d1d5db; border-radius: 12px; padding: 0 16px; font-size: 15px; }
    .form-route-badge { background: #f0f9ff; color: #0284c7; padding: 12px; border-radius: 12px; font-size: 14px; text-align: center; margin: 16px 0; font-weight: 600; }

    /* 8. ПОДВАЛ (FOOTER) */
    .footer { background-color: #0875C9; color: #fff; padding: 34px 0; font-size: 14px; }
    .footer-left h3 { color: #ffffff; font-size: 20px; margin-bottom: 8px; }
    .footer-links a { color: rgba(255, 255, 255, 0.82); text-decoration: none; display: block; margin-bottom: 12px; }
    .footer-links a:hover { color: #ffffff; }
    .footer-info{
      display: flex;
      justify-content:space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.27);
      align-items: center;
    }
    .container-social-links{
      display:flex;
      gap:8px;
    }
    .social-link{
      display: flex;
      width: 42px;
      height: 42px;
      min-width: 42px;
      max-width: 42px;
      padding: 7px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.40);
      background: rgba(255, 255, 255, 0.07);
      gap:8px;
    }

    /* АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ */
    @media (max-width: 968px) {
      .header{margin-bottom: 14px;}
      .header-container { height: 80px; }
      .container { padding: 0 16px; }
      .container-title{
        flex-direction: column;
      }
      .nav-desktop { display: none; }
      .nav-mobile-descr{display:block;}
      .menu-btn { display: block; }
      .nav-mobile.active { display: block; }
      .section-padding { padding: 68px 16px; }
      .hero { flex-direction: column; text-align: left; padding: 40px 0; }
      .hero-title { font-size: 40px; }
      .hero-actions .btn { width: 50%; }
      .hero-content{padding: 0 16px;}
      .hero-image-container {width: 100%; }
      .car-img{display:none}
      .bg-mobile{display:block}

      .advantages-grid, .directions-grid, .steps-grid, .fleet-grid, .app-flex {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .app-flex { flex-direction: column; }
      .mock-form { max-width: 100%; width: 100%; }
      .ezhbus-banner { flex-direction: column; align-items: flex-start; }
    }
  