* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }

  html {
    scroll-behavior: smooth;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    background: linear-gradient(90deg, #343a40, #4e555b);
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff9900;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  header nav ul li a:hover {
    background-color: #ff9900;
    color: #fff;
  }

  .phone-btn i {
    margin-right: 8px;
  }
  
  .phone-number a {
    font-weight: 700;
    font-size: 18px;
    padding: 10px;
    background-color: #ff9900;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .phone-number a:hover {
    background-color: #ffcc00;
  }
  
  .phone-number {
    display: flex;
    align-items: center;
  }
  
  .phone-number.alt a {
    background-color: #666;
    margin-left: 10px;
  }
  
  .phone-number.alt a:hover {
    background-color: #888;
  }
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  
  .main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .main-nav ul li a:hover {
    background-color: #ff9900;
    color: #fff;
  }
  
  .phones {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .phone-btn {
    padding: 10px 14px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }
  
  .phone-btn.primary {
    background-color: #ff9900;
  }
  
  .phone-btn.primary:hover {
    background-color: #ffaa22;
  }
  
  .phone-btn.secondary {
    background-color: #666;
  }
  
  .phone-btn.secondary:hover {
    background-color: #888;
  }
  
  
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/jpg/L.png') no-repeat center center/cover;
    color: #fff;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
  }

  @supports (background-image: url("image.webp")) {
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/jpg/L.webp') no-repeat center center/cover;
    }
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: fadeIn 0.8s ease;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.2s;
  }
  
  .hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ff9900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.5s ease forwards;
    animation-delay: 0.3s;
  }
  
  .hero p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.4s;
  }
  
  .hero .btn {
    background-color: #ff9900;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.5s;
  }
  
  .hero .btn:hover {
    background-color: #ffaa22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
  }
  
  @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .services {
    padding: 60px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }
  
  .services.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .services.animate h2 {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  .service-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }
  
  .services.animate .service-item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .services.animate .service-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  
  .services.animate .service-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  .services.animate .service-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  .services.animate .service-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  
  .services.animate .service-item:nth-child(5) {
    transition-delay: 0.5s;
  }
  
  .services.animate .service-item:nth-child(6) {
    transition-delay: 0.6s;
  }
  
 /* Стили для изображений в карточках услуг */
 .service-item img {
   display: block;
   margin: 0 auto 20px;
   width: 100%;
   max-width: 100%;
   height: 200px;
   object-fit: cover;
   border-radius: 8px 8px 0 0;
 }
  
  .service-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    padding: 0;
    text-align: center;
    font-weight: 700;
    width: 100%;
  }
  
  .service-item h3 i {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    font-size: 22px;
    color: #ff9900;
    flex-shrink: 0;
  }
  
  .price {
    font-size: 20px;
    color: #ff9900;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
    width: 100%;
  }
  
  .features {
    background: #f8f9fa;
    padding: 18px 20px;
    border-radius: 14px;
    margin: 18px 0;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.06);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .features li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
    text-align: left;
  }
  .features li:last-child {
    border-bottom: none;
  }
  .features li i {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    max-width: 22px;
    height: 22px;
    font-size: 18px;
    color: #ff9900;
    flex-shrink: 0;
  }
  
  .description {
    flex-grow: 1;
    margin-bottom: 20px;
  }
  
  .service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .btn-service {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    padding: 12px 32px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 30px auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
  }
  
  .btn-service:hover {
    background-color: #ffb300;
    box-shadow: 0 6px 15px rgba(255, 153, 0, 0.5);
    transform: scale(1.05);
  }
  
  /* Раздел "О нас" */
  .about {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: url('jpg/about-bg.jpg') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }
  
  .about.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
  
  .about .container {
    position: relative;
    z-index: 2;
  }
  
  .about h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .about.animate h2 {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff9900;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .about .about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    transition-delay: 0.15s;
  }
  
  .about.animate .about-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  .contact {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }
  
  .contact.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .contact.animate h2 {
    opacity: 1;
    transform: translateY(0);
  }
  
  .phone-message {
    font-size: 24px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.15s;
  }
  
  .contact.animate .phone-message {
    opacity: 1;
    transform: translateY(0);
  }
  
  .phone-link {
    color: #ff9900;
    font-weight: bold;
    text-decoration: none;
  }
  
  .phone-link:hover {
    text-decoration: underline;
  }
  
  form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form input,
  form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
  }
  
  form button {
    align-self: flex-start;
  }
  
  /* Footer */
  footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Адаптивность */
  @media (max-width: 1024px) {
    .service-item {
      width: 45%;
    }
    
    .hero h2 {
      font-size: 36px;
    }
    
    .about h2 {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    header {
      padding: 10px 0;
    }

    header .container {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding: 0 15px;
    }

    header .logo h1 {
      font-size: 20px;
      margin: 0;
    }

    .main-nav {
      order: 3;
      width: 100%;
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: linear-gradient(90deg, #343a40, #4e555b);
      padding: 10px 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
      display: block;
    }

    .main-nav ul {
      flex-direction: column;
      gap: 5px;
      width: 100%;
    }

    .main-nav ul li a {
      display: block;
      padding: 8px 15px;
      width: 100%;
      text-align: left;
      font-size: 16px;
    }

    .phones {
      flex-direction: row;
      gap: 5px;
      margin: 0;
    }

    .phone-btn {
      padding: 8px 12px;
      font-size: 14px;
      white-space: nowrap;
    }

    .phone-btn i {
      margin-right: 4px;
    }

    /* Добавляем кнопку меню */
    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
    }

    .menu-toggle i {
      color: #ff9900;
    }

    .hero {
      min-height: 55vh;
      padding: 60px 20px 30px;
    }
  
    .hero h2 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 16px;
      padding: 0 10px;
    }
  
    .hero .btn {
      padding: 12px 28px;
      font-size: 16px;
      width: 80%;
      max-width: 300px;
    }
  
    .about {
      padding: 60px 0;
    }
  
    .about h2 {
      font-size: 28px;
    }
  
    .about .about-content {
      font-size: 16px;
      padding: 20px;
      margin: 0 15px;
    }
  
    .contact h2 {
      font-size: 28px;
    }
  
    .phone-message {
      font-size: 18px;
      padding: 0 15px;
    }

    .services {
      padding: 40px 0;
    }

    .services h2 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .service-items {
      gap: 25px;
      padding: 0 15px;
    }

    .service-item {
      width: 100%;
      border-radius: 15px;
      padding: 0;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
    }

    .service-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: center;
      margin-bottom: 0;
      border-radius: 15px 15px 0 0;
      transition: transform 0.3s ease;
    }

    .service-item:hover img {
      transform: scale(1.05);
    }

    .service-item-content {
      padding: 16px 12px;
    }

    .service-item h3 {
      font-size: 20px;
      gap: 4px;
      justify-content: center;
      text-align: center;
    }

    .service-item h3 i {
      min-width: 26px;
      max-width: 26px;
      height: 26px;
      font-size: 20px;
    }

    .price {
      font-size: 20px;
      color: #ff9900;
      font-weight: bold;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 2px solid #f0f0f0;
    }

    .price i {
      font-size: 22px;
      flex-shrink: 0;
    }

    .features {
      padding: 15px;
      border-radius: 12px;
      margin: 15px 0;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
      gap: 10px;
    }

    .features li {
      font-size: 15px;
      gap: 6px;
      padding: 5px 0;
      border-bottom: none;
    }

    .features li i {
      min-width: 18px;
      max-width: 18px;
      height: 18px;
      font-size: 16px;
    }

    .description {
      font-size: 15px;
      line-height: 1.6;
      color: #666;
      margin: 20px 0;
      padding: 0 5px;
    }

    .btn-service {
      margin-top: auto;
      width: 100%;
      align-self: stretch;
    }

    .service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
  }
  
  @media (max-width: 480px) {
    header .container {
      padding: 0 10px;
    }

    header .logo h1 {
      font-size: 18px;
    }

    .phone-btn {
      padding: 6px 10px;
      font-size: 12px;
    }

    .phone-btn i {
      font-size: 12px;
    }

    .hero h2 {
      font-size: 24px;
    }
  
    .hero p {
      font-size: 14px;
    }
  
    .service-item h3 {
      font-size: 20px;
      gap: 10px;
    }
  
    .service-item h3 i {
      font-size: 24px;
      min-width: 26px;
    }
  
    .price {
      font-size: 18px;
    }
  
    .price i {
      font-size: 20px;
    }
  
    .features {
      padding: 12px;
    }
  
    .features li {
      font-size: 14px;
      gap: 10px;
    }
  
    .features li i {
      font-size: 16px;
      min-width: 18px;
    }
  
    .description {
      font-size: 14px;
      margin: 15px 0;
    }
  
    .btn-service {
      padding: 12px 16px;
      font-size: 15px;
    }
  
    .modal-content {
      margin: 30% auto;
      padding: 20px;
    }
  
    .modal-phone {
      width: 100%;
      font-size: 16px;
      padding: 10px 15px;
    }

    .services {
      padding: 30px 0;
    }

    .services h2 {
      font-size: 24px;
      margin-bottom: 25px;
    }

    .service-item img {
      height: 200px;
    }

    .service-item h3 {
      font-size: 20px;
    }

    .service-item h3 i {
      font-size: 24px;
    }

    .price {
      font-size: 18px;
    }

    .features {
      padding: 12px;
    }

    .features li {
      font-size: 14px;
    }

    .description {
      font-size: 14px;
    }

    .btn-service {
      padding: 10px 16px;
      font-size: 15px;
    }
  }
  
  /* Добавляем стили для улучшения навигации на мобильных устройствах */
  @media (max-width: 768px) {
    .main-nav {
      width: 100%;
    }
  
    .main-nav ul li {
      width: 100%;
    }
  
    .main-nav ul li a {
      background-color: rgba(255, 255, 255, 0.1);
      margin: 5px 0;
    }
  
    .main-nav ul li a:hover {
      background-color: rgba(255, 153, 0, 0.8);
    }
  }
  
  /* Улучшаем отображение модального окна на мобильных устройствах */
  @media (max-width: 480px) {
    .modal-content {
      width: 95%;
      margin: 20% auto;
    }
  
    .modal-phones {
      gap: 8px;
    }
  
    .modal-phone {
      justify-content: center;
    }
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
  }
  
  .modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
  }
  
  
  .modal-content h3 {
    margin-bottom: 15px;
  }
  
  .modal-content p {
    font-size: 16px;
    color: #333;
  }
  
  .modal-phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    align-items: center;
  }
  
  .modal-phone {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #ff9900;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .modal-phone:hover {
    background-color: #ffaa22;
  }
  
  .modal-phone.alt {
    background-color: #666;
  }
  
  .modal-phone.alt:hover {
    background-color: #888;
  }
  
  .modal-phone i {
    margin-right: 10px;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 26px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
  }
  
  .close:hover {
    color: #000;
  }

  .features i,
  .price i,
  .service-item h3 i {
    margin-right: 8px;
    color: #ff9900;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
  }
  
  .menu-toggle i {
    color: #ff9900;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .main-nav {
      display: none;
    }

    .main-nav.active {
      display: block;
    }
  }
  
  .service-item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    background: #fff;
  }

  .service-item h3,
  .price,
  .features,
  .description {
    width: 100%;
    text-align: left;
  }

  .btn-service {
    width: 100%;
    margin-top: auto;
    align-self: stretch;
  }
  /* === Вводный блок на главной (hero) === */
/* центрируем вводный блок */
.hero-intro {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 28px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;            /* было: left */
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: fadeInUp 0.6s ease forwards;
}

/* заголовок крупнее и плотнее */
.hero-intro h1 {
  font-size: 52px;               /* было: 44px */
  line-height: 1.1;              /* было: 1.15 */
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ff9900;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}

/* подзаголовок короче и контрастнее */
.hero-intro .lead {
  font-size: 20px;               /* было: 18px */
  color: #f1f1f1;                /* было: #e8e8e8 */
  margin: 0 auto 22px;
  max-width: 780px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px;
  border-radius: 10px;
}
.hero-benefits li i {
  min-width: 18px;
}
/* тонкая декоративная полоска внизу */
.site-bar {
  height: 36px;                 /* высота полоски — можно менять */
  background: #2f3438;          /* тёмный фон (подходящий под шапку) */
  box-shadow: 0 -2px 8px rgba(0,0,0,0.25);
  width: 100%;
}


/* Адаптив */
@media (max-width: 992px) {
  .hero-intro { padding: 22px; }
  .hero-intro h1 { font-size: 36px; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero-intro { padding: 18px; }
  .hero-intro h1 { font-size: 28px; }
  .hero-intro .lead { font-size: 16px; }
  .hero-benefits { grid-template-columns: 1fr; }
}
.logo-title {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 24px;
}
.contact-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #ff9900;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.contact-phone:hover {
  background: #ffaa22;
  transform: translateY(-2px);
}

.contact-phone.alt {
  background: #666;
}

.contact-phone.alt:hover {
  background: #888;
}

.contact-phone i {
  font-size: 18px;
}
