/* ===========================================================
   Арт Логистик — общие стили
   =========================================================== */
:root{
  --brand:#c8415a;          /* фирменный кримсон-роза (с логотипа) */
  --brand-dark:#a83349;     /* наведение / нажатие */
  --brand-soft:#f8eef1;     /* подложка иконок */
  --ink:#3c3c44;            /* основной тёмный текст */
  --muted:#6f6f75;          /* приглушённый текст */
  --cream:#f4efeb;
  --strip:#ececeb;          /* фон секций-полос */
  --card:#f7f6f6;
  --card-line:#e4e2e2;
  --footer:#3b3b3d;
  --footer-line:#565658;
  --footer-txt:#c9c8ca;
  --footer-sub:#a4a3a6;
  --white:#ffffff;
  --radius:16px;
  --maxw:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
h1,h2,h3,h4{font-family:"Manrope",sans-serif;margin:0;line-height:1.15;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
ul{margin:0;padding:0;list-style:none;}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
.accent{color:var(--brand);}

/* ---------- Header / nav ---------- */
.site-header{background:var(--white);border-bottom:1px solid #f0eeee;position:sticky;top:0;z-index:50;}
.header-inner{
  display:flex;align-items:center;gap:28px;
  padding:12px 32px;max-width:var(--maxw);margin:0 auto;
}
.logo img{height:60px;width:auto;}
.nav{display:flex;align-items:center;gap:32px;margin-left:auto;}
.nav a{font-size:15.5px;font-weight:500;color:#4a4a52;transition:color .15s;position:relative;padding:4px 0;}
.nav a:hover{color:var(--brand);}
.nav a.active{color:var(--brand);}
.nav a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--brand);border-radius:2px;
}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;color:var(--ink);margin-left:auto;}
.nav-toggle svg{width:26px;height:26px;}

/* ---------- Home hero (баннер) ---------- */
.hero{
  position:relative;overflow:hidden;
  background-color:var(--cream);
  background-image:url("../img/baner.png");
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.65) 30%,rgba(255,255,255,0) 55%);
}
.hero-inner{position:relative;z-index:2;max-width:var(--maxw);margin:0 auto;padding:96px 32px;min-height:440px;display:flex;flex-direction:column;justify-content:center;}
.hero h1{font-weight:800;font-size:52px;letter-spacing:-.5px;color:var(--ink);max-width:560px;}
.hero .rule{width:64px;height:3px;background:var(--brand);border-radius:2px;margin:30px 0 22px;}
.hero p{font-size:17px;line-height:1.6;color:#4f4f56;max-width:440px;margin:0;}

/* Главная на ПК: шапка сверху, футер снизу, баннер тянется между ними */
@media (min-width:761px){
  body.home-full{display:flex;flex-direction:column;min-height:100vh;}
  body.home-full .site-header{position:relative;top:auto;}
  body.home-full .hero{flex:1 1 auto;min-height:0;display:flex;}
  body.home-full .hero-inner{min-height:0;width:100%;padding-top:0;padding-bottom:0;}
  body.home-full .site-footer{margin-top:auto;}
}

/* ---------- Внутренняя «шапка» страницы ---------- */
.page-head{background:linear-gradient(120deg,var(--cream) 0%,#efe7e6 100%);border-bottom:1px solid #e7e0dd;}
.page-head .wrap{padding-top:46px;padding-bottom:46px;}
.page-head h1{font-size:40px;font-weight:800;color:var(--ink);}
.page-head .rule{width:56px;height:3px;background:var(--brand);border-radius:2px;margin:18px 0 16px;}
.page-head p{font-size:17px;line-height:1.6;color:#55555c;max-width:720px;margin:0;}

/* ---------- Секция ---------- */
.section{padding:56px 0;}
.section.alt{background:var(--strip);}
.section-title{font-size:30px;font-weight:800;color:var(--ink);text-align:center;}
.section-title .rule{display:block;width:56px;height:3px;background:var(--brand);border-radius:2px;margin:16px auto 0;}
.section-sub{text-align:center;color:var(--muted);font-size:16px;margin:14px auto 0;max-width:640px;}

/* ---------- «Почему выбирают нас» ---------- */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:40px;}
.why-card{
  background:var(--card);border:1px solid var(--card-line);border-radius:var(--radius);
  padding:30px 24px;text-align:center;transition:transform .18s,box-shadow .18s;
}
.why-card:hover{transform:translateY(-4px);box-shadow:0 12px 26px rgba(60,60,68,.09);}
.why-card .icon{
  width:72px;height:72px;border-radius:50%;background:var(--brand-soft);
  display:flex;align-items:center;justify-content:center;margin:0 auto 18px;
}
.why-card .icon svg{width:34px;height:34px;stroke:var(--brand);fill:none;}
.why-card h3{font-size:17px;font-weight:700;color:var(--ink);line-height:1.3;}

/* ---------- Услуги ---------- */
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:8px;}
.service-card{
  background:var(--card);border:1px solid var(--card-line);border-radius:var(--radius);
  padding:30px 30px 28px;display:flex;flex-direction:column;
}
.service-card .head{display:flex;align-items:center;gap:16px;margin-bottom:14px;}
.service-card .icon{
  width:58px;height:58px;border-radius:14px;background:var(--brand-soft);flex:none;
  display:flex;align-items:center;justify-content:center;
}
.service-card .icon svg{width:30px;height:30px;stroke:var(--brand);fill:none;}
.service-card h3{font-size:20px;font-weight:700;color:var(--ink);}
.service-card .desc{color:var(--muted);font-size:15px;line-height:1.55;margin:0 0 18px;}
.feature-list li{position:relative;padding:8px 0 8px 30px;font-size:15px;color:#4a4a52;line-height:1.45;border-top:1px solid #ededed;}
.feature-list li:first-child{border-top:none;}
.feature-list li::before{
  content:"✓";position:absolute;left:0;top:10px;width:18px;height:18px;border-radius:50%;
  background:var(--brand-soft);color:var(--brand);font-size:11px;font-weight:700;
  display:flex;align-items:center;justify-content:center;line-height:1;
}
.feature-list li b{color:var(--ink);font-weight:600;}

/* ---------- Схема работы ---------- */
.steps{max-width:760px;margin:8px auto 0;position:relative;}
.steps::before{content:"";position:absolute;left:27px;top:14px;bottom:14px;width:2px;background:#e0dcda;}
.step{position:relative;display:flex;gap:24px;align-items:flex-start;padding:16px 0;}
.step .num{
  flex:none;width:56px;height:56px;border-radius:50%;background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;font-family:"Manrope",sans-serif;
  font-weight:800;font-size:22px;position:relative;z-index:2;box-shadow:0 0 0 6px var(--white);
}
.step .body{padding-top:6px;}
.step .body h3{font-size:19px;font-weight:700;color:var(--ink);margin-bottom:5px;}
.step .body p{margin:0;color:var(--muted);font-size:15.5px;line-height:1.5;}

/* ---------- Контакты ---------- */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:8px;}
.contact-card{
  background:var(--card);border:1px solid var(--card-line);border-radius:var(--radius);
  padding:30px 26px;text-align:center;
}
.contact-card .icon{
  width:64px;height:64px;border-radius:50%;background:var(--brand-soft);
  display:flex;align-items:center;justify-content:center;margin:0 auto 16px;
}
.contact-card .icon svg{width:30px;height:30px;stroke:var(--brand);fill:none;}
.contact-card .label{font-size:14px;color:var(--muted);margin-bottom:6px;}
.contact-card .value{font-size:17px;font-weight:600;color:var(--ink);line-height:1.4;word-break:break-word;}
.contact-card a.value:hover{color:var(--brand);}
.contact-note{text-align:center;color:var(--muted);font-size:15px;margin-top:30px;}

/* ---------- Footer ---------- */
.site-footer{background:var(--footer);color:var(--footer-txt);}
.footer-inner{
  display:grid;grid-template-columns:1.4fr 1fr 1.3fr 1.3fr;gap:28px;align-items:center;
  padding:30px 32px;max-width:var(--maxw);margin:0 auto;
}
.footer-brand .name{font-family:"Manrope",sans-serif;font-weight:700;font-size:20px;color:#fff;}
.footer-brand .sub{font-size:13px;color:var(--footer-sub);margin-top:6px;line-height:1.45;}
.fcol{display:flex;align-items:center;gap:14px;position:relative;padding-left:18px;}
.fcol::before{content:"";position:absolute;left:0;top:2px;bottom:2px;width:1px;background:var(--footer-line);}
.fcol svg{width:30px;height:30px;flex:none;stroke:var(--brand);fill:none;}
.fcol .label{font-size:13px;color:var(--footer-sub);}
.fcol .value{font-size:15px;color:#ececeb;font-weight:500;margin-top:3px;display:block;word-break:break-word;}
.fcol a.value:hover{color:#fff;}

/* ---------- Адаптив ---------- */
@media (max-width:1000px){
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .footer-inner{grid-template-columns:1fr 1fr;gap:24px 28px;}
}
@media (max-width:820px){
  .services-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .hero h1{font-size:40px;}
}
@media (max-width:760px){
  .wrap{padding:0 20px;}
  .header-inner{flex-wrap:wrap;padding:12px 20px;gap:12px;}
  .logo img{height:46px;}
  .nav-toggle{display:inline-flex;}
  .nav{
    order:3;width:100%;flex-direction:column;align-items:flex-start;gap:6px;
    margin-left:0;display:none;padding-top:6px;
  }
  .nav.open{display:flex;}
  .nav a{width:100%;padding:10px 0;border-top:1px solid #f0eeee;}
  .nav a.active::after{display:none;}
  .hero-inner{padding:64px 20px;min-height:360px;}
  .hero h1{font-size:32px;}
  .hero::before{background:linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.8) 45%,rgba(255,255,255,.35) 100%);}
  .page-head h1{font-size:30px;}
  .section-title{font-size:24px;}
  .step .num{width:48px;height:48px;font-size:19px;}
  .steps::before{left:23px;}
  .footer-inner{grid-template-columns:1fr;padding:26px 20px;}
  .fcol{padding-left:0;}
  .fcol::before{display:none;}
}
