

:root{
    --blue:#0ea5e9;--pink:#c084fc;--dark:#0f172a;--light:#e2e8f0;
    --bg:#f8fafc;--text:#1e293b;--muted:#64748b;--card:#ffffff;
  }

  .tm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 6%;
    transition: all .4s cubic-bezier(.215,.61,.355,1);
    background: #0f172a;
}
  *{margin:0;padding:0;box-sizing:border-box;}
  .container{
    max-width:1440px;margin:0 auto;padding:0 6%;
  }
  /* === ХЕДЕР СТАТЬИ === */
  .blog-header{
    padding:140px 0 60px;
    text-align:center;
  }
  .blog-title{
    font-size:44px;font-weight:900;color:var(--text);
    margin-bottom:20px;line-height:1.2;
  }
  .blog-meta{
    font-size:16px;color:var(--muted);margin-bottom:32px;
  }
  .blog-hero{
    width:100%;height:520px;object-fit:cover;border-radius:28px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);margin-bottom:60px;
  }
  /* === ОСНОВНОЙ КОНТЕНТ === */
  .blog-content{
    display:grid;grid-template-columns:1fr 380px;gap:60px;
    margin-bottom:100px;position:relative;
  }
  .article-body{
    font-size:18px;color:var(--text);
  }
  .article-body h2{
    font-size:32px;font-weight:800;margin:48px 0 24px;color:var(--blue);
  }
  .article-body h3{
    font-size:26px;font-weight:700;margin:40px 0 20px;
  }
  .article-body p{
    margin-bottom:24px;
  }
  .article-body ul{
    margin:28px 0;padding-left:28px;
  }
  .article-body li{
    margin-bottom:14px;position:relative;
  }
  .article-body li::marker{
    color:var(--pink);
  }
  .highlight{
    background:linear-gradient(120deg, rgba(14,165,233,.08) 0%, rgba(192,132,252,.08) 100%);
    padding:32px;border-radius:20px;margin:40px 0;
    font-size:19px;font-weight:600;
  }
  .steps{
    counter-reset:step;
    margin:48px 0;
  }
  .steps li{
    counter-increment:step;
    display:flex;gap:20px;align-items:flex-start;
    margin-bottom:32px;
  }
  .steps li::before{
    content:counter(step);flex-shrink:0;
    width:48px;height:48px;background:var(--blue);color:#fff;
    border-radius:50%;display:flex;align-items:center;justify-content:center;
    font-weight:900;font-size:20px;
  }
  .btn-primary{
    display:inline-block;background:linear-gradient(90deg,var(--pink),#7c3aed);
    color:#fff;padding:18px 40px;border-radius:16px;font-weight:800;
    font-size:17px;text-decoration:none;box-shadow:0 12px 35px rgba(124,58,237,.4);
    transition:all .4s; margin-top:40px;
  }
  .btn-primary:hover{
    transform:translateY(-4px);box-shadow:0 20px 50px rgba(124,58,237,.55);
  }
  /* === ПЛАВАЮЩАЯ КАРТОЧКА === */
  .executive-card{
    position:sticky;top:120px;align-self:start;
    background:var(--card);border-radius:28px;overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.12);transition:all .4s;
  }
  .executive-card:hover{
    transform:translateY(-6px);box-shadow:0 35px 80px rgba(0,0,0,.18);
  }
  .executive-img{
    width:100%;height:300px;object-fit:cover;
  }
  .executive-info{
    padding:32px 28px;text-align:center;
  }
  .executive-name{
    font-size:26px;font-weight:900;color:var(--text);margin-bottom:6px;
  }
  .executive-role{
    font-size:17px;color:var(--blue);font-weight:600;margin-bottom:16px;
  }
  .executive-desc{
    font-size:15.5px;color:var(--muted);line-height:1.6;margin-bottom:24px;
  }
  .social-links{
    display:flex;gap:16px;justify-content:center;margin-bottom:28px;
  }
  .social-link{
    width:44px;height:44px;background:var(--light);border-radius:50%;
    display:flex;align-items:center;justify-content:center;transition:all .3s;
  }
  .social-link:hover{
    background:var(--pink);transform:translateY(-3px);
  }
  .social-link img{
    width:20px;height:20px;object-fit:contain;
  }
  .btn-contact{
    text-decoration: none;
    display: block;
    background:linear-gradient(90deg,var(--pink),#7c3aed);
    color:#fff;width:100%;padding:18px;border:none;border-radius:16px;
    font-weight:800;font-size:17px;cursor:pointer;
    box-shadow:0 12px 35px rgba(124,58,237,.4);transition:all .4s;
  }
  .btn-contact:hover{
    transform:translateY(-3px);box-shadow:0 18px 45px rgba(124,58,237,.5);
  }
  /* === АДАПТИВ === */
  @media(max-width:1100px){
    .blog-content{grid-template-columns:1fr;gap:50px;}
    .executive-card{position:static;top:auto;margin-top:40px;}
  }
  @media(max-width:768px){
    .btn-primary{
      display: block;
margin: 10px auto;
width: fit-content;
    }
    .blog-title{font-size:36px;}
    .blog-hero{height:380px;border-radius:20px;}
    .article-body h2{font-size:28px;}
    .article-body{font-size:17px;}
    .executive-img{height:260px;}
    .executive-info{padding:24px 20px;}
    .executive-name{font-size:24px;}
  }
  @media(max-width:480px){
    .container{padding:0 5%;}
    .blog-title{font-size:30px;}
    .blog-hero{height:280px;}
    .steps li{/* flex-direction:column; */gap:12px;}
    .steps li::before{width:40px;height:40px;font-size:18px;}
  }


.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

thead {
    background-color: #1976d2;
    color: white;
}

th, td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

tbody tr {
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

.channel-telegram {
    font-weight: 600;
    color: #0088cc;
}

.channel-avito {
    font-weight: 600;
    color: #ff8c00;
}

.channel-vk {
    font-weight: 600;
    color: #4c66a4;
}

.channel-seo {
    font-weight: 600;
    color: #2e7d32;
}

.highlight-good {
    background-color: #e8f5e9;
    font-weight: 500;
}

.highlight-avg {
    background-color: #fff8e1;
}

@media (max-width: 768px){

  .blog-header{

    padding: 100px 0 0px;
  }
  tbody tr td {  min-width: calc(100vw - 50px);}
  tbody tr td {

    table {
        font-size: 0.9em;
    }

    th, td {
        padding: 10px;
    }
}
}
@media (max-width: 480px) {
    .table-container {
        -webkit-overflow-scrolling: touch;
    }

    table {
        display: block;
        min-width: 320px;
    }

    thead {
        display: none;
    }

    tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 10px;
    }

    tbody tr td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
    }

    tbody tr td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
        min-width: 120px;
    }
}


.steps h3{
  margin-top:0px;
}