/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #185FA5;
  --blue-dark:  #0c447c;
  --blue-light: #E6F1FB;
  --text:       #1a1a1a;
  --text-muted: #6b6b6b;
  --bg:         #f5f4f1;
  --bg-surface: #f0efe9;
  --bg-white:   #ffffff;
  --border:     rgba(0,0,0,0.10);
  --border-med: rgba(0,0,0,0.18);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: var(--bg-white);
  border-bottom: 0.5px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--text); text-decoration: none; }
.nav-logo-mark { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--text-muted); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 500; }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 500; font-size: 14px; transition: background .15s !important; }
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── PAGE HEADER ── */
.page-header { background: var(--bg-white); border-bottom: 0.5px solid var(--border); padding: 56px 40px 48px; }
.page-header-inner { max-width: 720px; margin: 0 auto; }
.page-label { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.page-header h1 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.page-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ── SECTION ── */
.section { max-width: 940px; margin: 0 auto; padding: 52px 24px 0; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; color: var(--text); margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }

/* ── CARDS ── */
.card { background: var(--bg-white); border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.card:hover { border-color: var(--border-med); }
.card-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card-icon svg { width: 19px; height: 19px; fill: var(--blue); }
.card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card ul { list-style: none; margin-top: 8px; }
.card li { font-size: 13px; color: var(--text-muted); padding: 3px 0; display: flex; align-items: center; gap: 7px; }
.card li::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: #c0bfb8; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-primary { background: var(--blue); color: #fff; padding: 12px 26px; border-radius: 10px; font-weight: 500; font-size: 15px; border: none; cursor: pointer; transition: background .15s; display: inline-block; font-family: inherit; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--text); padding: 12px 26px; border-radius: 10px; font-weight: 500; font-size: 15px; border: 1px solid var(--border-med); cursor: pointer; transition: background .15s; display: inline-block; font-family: inherit; }
.btn-secondary:hover { background: var(--bg-surface); }

/* ── CTA BAND ── */
.cta-band { max-width: 940px; margin: 0 auto; padding: 52px 24px 0; }
.cta-inner { background: var(--bg-white); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner h2 { font-family: 'DM Serif Display', serif; font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.cta-inner p { font-size: 14px; color: var(--text-muted); }

/* ── FOOTER ── */
.footer { max-width: 940px; margin: 52px auto 0; padding: 32px 24px 8px; border-top: 0.5px solid var(--border); display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--text); margin-bottom: 6px; }
.footer-sub { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding: 24px 0 32px; max-width: 940px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .page-header { padding: 40px 20px 36px; }
  .cta-inner { padding: 28px 24px; }
  .footer { padding: 28px 20px 0; }
}
