/* ============================================================
   SECTIONS — section heads, practice cards, about, CTA band
   ============================================================ */

/* ---------- Section heading ---------- */
.sec { padding: clamp(72px, 9vw, 120px) 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-top: 14px; }
.sec-head .rule { width: 56px; height: 3px; background: var(--gold); margin: 22px auto 0; }

/* ---------- Practice cards ---------- */
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); padding: 38px 24px 32px;
  text-align: center; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(22,41,76,.4); border-color: #d8cdb8; }
.card .ico { width: 56px; height: 56px; margin: 0 auto 22px; color: var(--navy); }
.card .ico svg { width: 100%; height: 100%; }
.card h3 { font-size: 19px; font-weight: 600; margin-bottom: 14px; }
.card p { font-size: 14.5px; line-height: 1.6; }

/* ---------- About (navy) ---------- */
.about { background: var(--navy); color: rgba(255,255,255,.78); }
.about-inner { text-align: center; max-width: 720px; margin: 0 auto; padding: clamp(72px,9vw,120px) 0; }
.about-inner .eyebrow { color: var(--gold-soft); }
.about-inner h2 { color: #fff; font-size: clamp(30px, 3.8vw, 46px); margin: 18px auto 24px; max-width: 12ch; line-height: 1.14; }
.about-inner p { font-size: 17.5px; margin: 0 auto 36px; max-width: 560px; }

/* ---------- CTA band ---------- */
.cta { background: var(--bg-warm); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(48px,6vw,72px) 0; flex-wrap: wrap; }
.cta h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.2; max-width: 560px; }
.cta .eyebrow { display: block; margin-bottom: 16px; }
