/*
 * Egholm — страницы навесного оборудования по типам работ.
 * Источник: исходная статика Egholm, стили перенесены без переписывания.
 * Developer: Site Done · https://sitedone.tech
 */

/* ---- hero ---- */
  .a-hero{
    padding:40px 8vw 80px 8vw;
    display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center;
  }

.a-hero-photo{width:100%;border-radius:4px;aspect-ratio:4/3;object-fit:cover;}

.a-hero-content h1{font-size:clamp(34px,4.8vw,58px);font-weight:900;}

.a-hero-content p.a-intro{margin-top:18px;font-size:15px;color:var(--muted-dark);line-height:1.6;max-width:480px;}

/* ---- per-machine compatibility blocks ---- */
  .a-block{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}

.a-block.reverse .a-media{order:2;}

.a-block.reverse .a-copy{order:1;}

.a-media{border-radius:4px;overflow:hidden;aspect-ratio:4/3;}

.a-media img{width:100%;height:100%;object-fit:cover;display:block;}

.a-copy .eyebrow{margin-bottom:10px;}

.a-copy h2{font-size:clamp(24px,3vw,36px);font-weight:800;margin-bottom:16px;}

.a-copy p{font-size:15px;color:var(--muted-dark);line-height:1.6;max-width:460px;margin-top:12px;}

.a-copy p:first-of-type{margin-top:0;}

.a-blocks-wrap{display:flex;flex-direction:column;gap:100px;}

/* ---- item grid ---- */
  .a-item-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:0;}

.a-item{background:var(--bg-light);border:1px solid var(--line-dark);padding:20px 22px 26px 22px;display:flex;flex-direction:column;gap:8px;}

.a-item-photo{width:100%;aspect-ratio:4/3;object-fit:contain;background:#fff;border-radius:4px;margin-bottom:6px;}

.a-item h3{font-size:17px;font-family:'Inter';font-weight:700;text-transform:none;}

.a-item p{font-size:13px;color:var(--muted-dark);line-height:1.55;}

.a-item .tag{font-size:11px;letter-spacing:.08em;color:var(--brand-green);text-transform:uppercase;font-weight:700;font-family:'Inter';}

/* ---- key features ---- */
  .a-feature-list{margin-top:40px;display:flex;flex-direction:column;}

.a-feature-row{
    display:grid;grid-template-columns:60px 1fr;gap:20px;padding:26px 0;border-bottom:1px solid var(--line-dark);
  }

.a-feature-row:first-child{border-top:1px solid var(--line-dark);}

.a-feature-row .num{font-family:'Inter';font-size:22px;color:var(--brand-green);font-weight:800;}

.a-feature-row h3{font-size:19px;font-family:'Inter';font-weight:700;text-transform:none;margin-bottom:6px;}

.a-feature-row p{font-size:14px;color:var(--muted-dark);line-height:1.6;max-width:640px;}

/* ---- final cta ---- */
  .final-cta{display:flex;flex-direction:column;align-items:flex-start;gap:28px;}

.final-cta h2{font-size:clamp(30px,4.5vw,52px);max-width:760px;}

.final-actions{display:flex;gap:16px;flex-wrap:wrap;}

/* Медиазапросы собраны в конец файла: при склейке стилей нескольких
 * страниц они оказывались раньше базовых правил, и мобильная
 * раскладка перекрывалась десктопной. */

@media (max-width:860px){
    .a-hero{grid-template-columns:1fr;padding-top:20px;gap:30px;}
    .a-block,.a-block.reverse{grid-template-columns:1fr;gap:24px;}
    .a-block.reverse .a-media{order:1;}
    .a-block.reverse .a-copy{order:2;}
    .a-blocks-wrap{gap:56px;}
    .a-item-grid{grid-template-columns:1fr 1fr;}
  }
