:root{
  --ink:#0c0e14;
  --muted:#5a5f72;
  --line:#dde1ea;
  --surface:#f4f5f8;
  --accent:#d4400a;
  --blue:#1a4fa8;
}

/* Container (общий для страницы) */
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* Section wrapper */
.sec3{ padding:56px 0; }

/* Eyebrow label */
.sec3-label{
  display:inline-block;
  font-family:'Syne',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:10px;
}

/* Section heading */
.sec3-h2{
  font-family:'Syne',sans-serif;
  font-size:clamp(22px,3vw,32px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-.02em;
  margin-bottom:12px;
  color:var(--ink);
}

/* Lead paragraph */
.sec3-lead{
  font-size:16px;
  color:var(--muted);
  max-width:640px;
  line-height:1.7;
  margin-bottom:32px;
}

/* Card grid */
.deliv-grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

/* Card */
.deliv-card3{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:5px;
  padding:18px;
  background:#fff;
  transition:.15s;
}
.deliv-card3:hover{
  border-color:var(--blue);
  box-shadow:0 6px 20px rgba(26,79,168,.08);
  transform:translateY(-2px);
}

/* Icon badge */
.deliv-icon3{
  flex-shrink:0;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
}
.deliv-icon3 svg{
  width:24px;
  height:24px;
  stroke:var(--accent);
  fill:none;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Card text */
.deliv-label3{
  font-family:'Syne',sans-serif;
  font-size:14.5px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:3px;
}
.deliv-sub3{
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}

/* Responsive */
@media(max-width:900px){
  .deliv-grid3{ grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .deliv-grid3{ grid-template-columns:1fr; }
}