.products { background: #f7f9fc; }
.products-heading { display:flex; justify-content:space-between; align-items:end; gap:30px; }
.products-heading h2 { font-size:clamp(35px,4vw,54px); line-height:1.08; }
.products-heading > p { max-width:310px; color:#637084; line-height:1.65; margin:0; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; margin-top:48px; }
.product-card { background:#fff; border:1px solid #e7ecf2; padding:26px; min-height:205px; display:flex; flex-direction:column; }
.product-tag { color:#1769e0; font-size:11px; font-weight:700; letter-spacing:1.1px; }
.product-card h3 { font-size:22px; margin:16px 0 9px; }
.product-card p { color:#637084; line-height:1.55; font-size:14px; margin:0; }
.product-price { margin-top:auto; padding-top:21px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:18px; }
footer a { color:#1769e0; text-decoration:none; font-weight:700; }
@media(max-width:850px){.products-heading{align-items:start;flex-direction:column}.product-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.product-grid{grid-template-columns:1fr}}
