body{margin:0;padding:0;overflow-x:hidden;}

        .hero-article{
            padding:140px 0 80px;position:relative;overflow:hidden;
            background:linear-gradient(135deg,rgba(11,30,45,0.88),rgba(26,51,68,0.85) 35%,rgba(47,80,112,0.78) 70%,rgba(160,77,43,0.70) 100%);
        }
        .hero-article::before{
            content:'';top:0;left:0;width:100vw;height:100%;z-index:-2;
            background:linear-gradient(90deg,rgba(0,30,60,0.92),rgba(120,80,50,0.15));
        }
        .hero-article .container{
            max-width:1240px;margin:0 auto;position:relative;z-index:2;
        }

        .hero-article h1,.hero-article h2,.hero-article p,.hero-article li,.hero-article strong{
            color:#ffffff !important;
        }
        .hero-article h1{font-size:52px;font-weight:900;line-height:1.2;text-align:center;margin:0 0 48px}
        .hero-article h2{font-size:38px;font-weight:900;line-height:1.3;margin:0 0 32px}
        .hero-article p{font-size:20px;line-height:1.7;margin:24px 0}
        .hero-article ul{list-style:none;padding-left:0;margin:32px 0}
        .hero-article li{font-size:20px;line-height:1.7;margin:18px 0;position:relative;padding-left:42px}
        .hero-article li:before{content:"✓";color:#ff8c38;font-weight:900;font-size:28px;position:absolute;left:0;top:-4px}
        .hero-article .intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
        .hero-article .intro-img img{
            width:100%;height:720px;object-fit:cover;border-radius:32px;
            box-shadow:0 24px 70px rgba(0,0,0,.5);border:4px solid rgba(255,140,56,.3)
        }

        .article-cont{padding:120px 0 160px;background:#fff;position:relative;overflow:hidden}
        .article{max-width:1440px;margin:0 auto;padding:0 60px;box-sizing:border-box}
        .article h2{font-size:36px;font-weight:900;line-height:1.3;color:#0a3d62;margin:64px 0 32px;position:relative}
        .article h2:after{content:'';position:absolute;bottom:-12px;left:0;width:80px;height:5px;background:linear-gradient(135deg,#ff8c38,#e63946);border-radius:3px}
        .article h3{font-size:28px;font-weight:800;line-height:1.3;color:#004c80;margin:48px 0 24px}
        .article p{font-size:18px;line-height:1.7;color:#1e2a38;margin:20px 0}

        .article ul{list-style:none;padding-left:0;margin:28px 0}
        .article li{font-size:18px;line-height:1.7;color:#1e2a38;margin:16px 0;position:relative;padding-left:38px}
        .article li:before{content:"✓";color:#ff8c38;font-weight:900;font-size:24px;position:absolute;left:0;top:-2px}

        .tip-box,.warning-box{
            margin:56px 0;padding:44px;border-radius:28px;position:relative;overflow:hidden;
            background:rgba(255,255,255,.92);backdrop-filter:blur(16px);
            border:4px solid transparent;
            background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #00f5ff, #007276, #693721, #ff7b3e) border-box;
            box-shadow:0 16px 50px rgba(0,0,0,.14)
        }
        .tip-box:before,.warning-box:before{
            content:attr(data-label);position:absolute;top:20px;right:20px;padding:12px 32px;
            border-radius:16px;font-weight:900;font-size:17px;color:#fff;z-index:2
        }
        .tip-box:before{background:linear-gradient(135deg,#ff8c38,#e63946)}
        .warning-box:before{background:linear-gradient(135deg,#e63946,#c1121f)}

        .inspection-step{margin:56px 0}
        .inspection-header{display:flex;align-items:center;gap:24px;margin-bottom:28px}
        .step-number{
            flex-shrink:0;padding:16px 30px;background:#ff8c38;color:#fff;
            font-size:32px;font-weight:900;border-radius:50px;min-width:76px;text-align:center
        }

        .table-wrap{overflow-x:auto;margin:48px 0;border-radius:24px;box-shadow:0 16px 50px rgba(0,0,0,.12);background:#fff}
        table{width:100%;border-collapse:collapse;background:rgba(255,255,255,.92);backdrop-filter:blur(10px)}
        thead{background:linear-gradient(135deg,#2c5f7a,#46728a);color:#fff}
        th,td{padding:20px 24px;text-align:left;font-size:17px;border-bottom:1px solid rgba(0,0,0,.08)}
        th{font-weight:800}
        tbody tr:hover{background:rgba(44,95,122,.06)}

        .conclusion-steps{list-style:none;padding-left:0;counter-reset:step;margin:40px 0}
        .conclusion-steps li{counter-increment:step;font-size:20px;font-weight:700;color:#1e2a38;padding-left:60px;margin:32px 0;position:relative}
        .conclusion-steps li:before{content:counter(step);color:#ff8c38;font-size:36px;font-weight:900;position:absolute;left:0;top:-10px}

        .faq-item{margin:0;background:rgba(255,255,255,.9);border-radius:20px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,.08)}
        .faq-question{
            padding:28px 60px 28px 28px;font-size:22px;font-weight:800;color:#004c80;cursor:pointer;position:relative;
            background:linear-gradient(135deg,rgba(44,95,122,.03),rgba(44,95,122,.06));transition:.3s
        }
        .faq-question:before{content:"↓";position:absolute;right:28px;top:50%;transform:translateY(-50%);font-size:32px;transition:.3s}
        .faq-question.active:before{content:"↑"}
        .faq-question:hover{background:rgba(44,95,122,.08)}
        .faq-answer{
            max-height:0;overflow:hidden;transition:max-height .6s cubic-bezier(0.22,1,0.36,1);
            padding:0 28px;font-size:18px;line-height:1.7;color:#1e2a38;background:#fff
        }
        .faq-answer.active{max-height:1000px;padding:28px}

        @media(max-width:1000px){
            .hero-article .intro-grid{grid-template-columns:1fr;gap:48px}
            .hero-article .intro-img img{height:400px}
        }
        @media(max-width:768px){
            .article h2 {
                margin: 24px 0 32px;
            }
            .hero-article{padding:80px 30px 40px}
            .hero-article h1{font-size:38px}
            .hero-article h2{font-size:32px}
            .article{padding:0 30px}
        }
        @media(max-width:540px){
            .hero-article{padding:50px 15px 40px}
            .hero-article h1{font-size:34px}
            .article{padding:0 15px}
        }

        .full-img img{
            width: 100%;
            height: 340px;
            object-fit: cover;
            display: block;
            margin: 0px auto;
            border-radius: 20px;
        }








.article h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    color: #0a3d62;
    margin: 64px 0 32px;
    position: relative;
}

.article li  {
    list-style: none;
    font-size: 18px;
    line-height: 1.7;
    color: #1e2a38;
    margin: 16px 0;
    position: relative;
    padding-left: 38px;
}
.article p{
    font-size: 18px;
    line-height: 1.7;
    color: #1e2a38;
    margin: 16px 0;
}
.article li:before {
    content: "✓";
    color: #ff8c38;
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.strong-text{
font-weight: 600;

}


.article section:nth-child(2n+1) {
    margin: 56px 0;
    padding: 44px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border: 4px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #00f5ff, #007276, #693721, #ff7b3e) border-box;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .14);
}



@media (max-width:700px) {
    .article h2 {
        font-size: 28px;

    }



    .article h3 {
        font-size: 22px;
}

.full-img img{
    width:100%;  
    height: 240px;
}

}



/* таблицы */


table {
    display: block;
    width: 100%;
    border-radius: 10px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
  }
  
  thead {
    width: auto;
    display: block;
    background: #254d6b;
    color: var(--color-accent-400);
    text-align: center;
    font-size: 20px;
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
  
  tbody {
    display: block;
  }
  
  table tr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10%, 1fr));
    width: 100%;
    transition: 0.6s;
  }
  
  th,
  td {
    padding: 20px 24px;
    text-align: left;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  th {
    font-weight: 800;
  }
  tbody tr:hover {
    background: rgb(68 111 159 / 10%);
  }
  
  table tr td,
  table tr th {
    border-right: 1px solid #ddd;
    display: block;
    text-align: center;
    font-size: 18px;
    color: #000;
    border: #008b90 solid 1px;
  }
  
  
   .btn-clients {
  
    background: linear-gradient(90deg, #FF7A00, #FF9C40);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 20px auto;
    display: block;
    max-width: 310px;
  }
  
  
  .btn-clients:hover {
    background: linear-gradient(90deg, #FF9C40, #FFB366);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.55);
  }
  
  
  @media (min-width: 720px){
    .clients-sec .btn-clients {
      text-align: center;
      padding: 16px 16px;
  }

  }
  
  
  table.table-price tr {
    height: 35px;
  }
  
  table tr span {
    display: none;
  }
  
  .articles-section {
    margin-top: 100px;
  }
  @media screen and (max-width: 720px) {
    .articles-section {
      margin-top: 20px;
    }
    .watermark {
      font-size: 100%;
    }
  
    h2 {
      font-size: 24px;
    }
  
    body .multi-city-shadow-sec .multi-city-window {
      max-width: 90%;
    }
  
    table tr.info-block-table__row:nth-child(1) {
      display: none;
    }
  
    table tr span {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      background: var(--two-color);
      padding: 2px 10px;
      font-size: 12px;
      color: #fff;
    }
  
    table {
      border: 1px solid transparent;
    }
  
    table tr {
      height: auto;
      margin-bottom: 20px;
      display: block;
      border-top: 1px solid #ddd;
      border-left: 1px solid #ddd;
      border-bottom: 1px solid none;
      width: 100%;
    }
  
    .desc-art table tr th {
      width: 100%;
      display: block;
    }
  
    table,
    tbody {
      width: 100%;
      display: block;
    }
  
    table tr td {
      font-weight: normal;
      display: flex;
      position: relative;
      height: 45px;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid transparent;
    }
  
    table tr span {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      background: var(--two-color);
      padding: 2px 10px;
      font-size: 12px;
      color: #fff;
    }
  
    .info-block-table__row td {
      border-bottom: 1px solid #ddd;
    }
  
    caption {
      width: 100%;
    }
  
    .angar-work-table tr:nth-child(1),
    .angar-work-table tr:nth-child(2) {
      display: none;
    }
  
    /* table tr td:first-child{
      height: 60px;
      font-size: 16px;
      font-weight: bold;
    }*/
    table tr td:first-child {
      height: auto;
      padding: 15px;
      font-size: 18px;
      font-weight: normal;
      line-height: 1.5;
    }
  
    table tr td {
      height: auto;
      padding: 15px;
      font-size: 18px;
      border-bottom: 2px solid #ccc;
    }
  
    table tr:first-child td {
      /*     border-bottom: 2px solid #fff; */
    }
    table.table-price tr {
      height: auto;
    }
  }
  
  @media screen and (max-width: 414px) {
  
  
  
    table tr td:first-child {
      height: auto;
      padding: 10px;
      font-size: 16px;
      font-weight: 600;
    }
  
    table tr td {
      font-size: 16px;
    }
  }

  main {
    padding-bottom: 50px;
  }