/* =====================================================================
   Northpoint Health — shared stylesheet
   Boutique primary & family care · clean, modern, trustworthy
   ===================================================================== */

/* ----- Design tokens ------------------------------------------------ */
:root {
  --blue:        #0a4f8a;
  --blue-dark:   #063a63;
  --blue-deep:   #052c4a;
  --green:       #17a44a;
  --green-dark:  #0f7d38;
  --leaf:        #8bc53f;

  --ink:         #142530;
  --body:        #43535f;
  --muted:       #6b7a86;
  --line:        #e4edf3;
  --line-soft:   #eef4f8;

  --bg:          #ffffff;
  --bg-soft:     #f4f8fb;
  --bg-tint:     #eef6f1;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(11,45,74,.06), 0 1px 3px rgba(11,45,74,.04);
  --shadow:    0 12px 30px -12px rgba(9,50,86,.18);
  --shadow-lg: 0 30px 60px -20px rgba(9,50,86,.28);

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);

  --ff-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ----- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--leaf); outline-offset: 2px; border-radius: 4px; }

/* ----- Layout helpers ---------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--tint  { background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%); }
.narrow { max-width: 760px; }
.center { text-align: center; }
.center.narrow, .narrow.center { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-dark);
  background: var(--bg-tint);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow svg { width: 15px; height: 15px; }
.lead { font-size: 1.14rem; color: var(--body); }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { max-width: 620px; }
.section-head.center p { margin-inline: auto; }

/* ----- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 700; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 10px 22px -10px rgba(15,125,56,.6);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 28px -12px rgba(15,125,56,.7); }
.btn:active { transform: translateY(0); }
.btn--blue { --btn-bg: var(--blue); box-shadow: 0 10px 22px -10px rgba(10,79,138,.6); }
.btn--blue:hover { box-shadow: 0 16px 28px -12px rgba(10,79,138,.7); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--blue);
  border-color: var(--line); box-shadow: none;
  background: #fff;
}
.btn--ghost:hover { color: var(--blue-dark); border-color: #cddbe6; box-shadow: var(--shadow-sm); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--light { --btn-bg:#fff; --btn-fg: var(--blue-dark); box-shadow: 0 10px 22px -12px rgba(0,0,0,.3); }
.btn--outline-light {
  --btn-bg: transparent; --btn-fg:#fff;
  border-color: rgba(255,255,255,.5); box-shadow:none;
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); color:#fff; }
.btn svg { width: 18px; height: 18px; }

/* ----- Header / nav ------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 20px -14px rgba(9,50,86,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 96px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 66px; width: auto; }
.brand:hover { color: inherit; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--ff-head); font-weight: 600; font-size: .96rem; color: var(--ink);
  padding: 9px 15px; border-radius: 999px; transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--blue); }
.nav-links a.active { color: var(--green-dark); background: var(--bg-tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { font-family: var(--ff-head); font-weight: 700; color: var(--ink); font-size: .95rem; display:inline-flex; align-items:center; gap:7px; }
.nav-phone svg { width:16px; height:16px; color: var(--green); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }

@media (max-width: 900px) {
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; inset: 96px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 14px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-cta .btn { display: none; }
}

/* ----- Hero --------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 88% 8%, rgba(139,197,63,.16), transparent 60%),
    radial-gradient(55% 60% at 5% 90%, rgba(10,79,138,.10), transparent 60%),
    var(--bg-soft);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--green-dark); }
.hero p.lead { margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: .93rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative; overflow: hidden;
}
.hero-card::before {
  content:""; position:absolute; top:0; left:0; right:0; height:96px;
  background: linear-gradient(120deg, var(--blue) 0%, var(--green) 130%);
}
.hero-card-inner { position: relative; }
.hc-avatar {
  width: 64px; height: 64px; border-radius: 18px; background:#fff; border: 4px solid #fff;
  box-shadow: var(--shadow-sm); display:grid; place-items:center; margin-bottom: 14px;
}
.hc-avatar svg { width: 34px; height: 34px; color: var(--green); }
.hero-card h3 { color:#fff; position: relative; margin: 6px 0 22px; font-size: 1.15rem; }
.hc-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.hc-row:first-of-type { border-top: none; }
.hc-ico { width: 40px; height: 40px; flex-shrink:0; border-radius: 12px; background: var(--bg-tint); display: grid; place-items: center; }
.hc-ico svg { width: 20px; height: 20px; color: var(--green-dark); }
.hc-ico.blue { background: #e9f1f9; }
.hc-ico.blue svg { color: var(--blue); }
.hc-row b { color: var(--ink); font-family: var(--ff-head); display:block; font-size:.98rem; }
.hc-row small { color: var(--muted); font-size: .85rem; }
.hero-badge {
  position: absolute; bottom: -18px; right: -14px;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 18px; display:flex; align-items:center; gap:12px;
}
.hero-badge .num { font-family: var(--ff-head); font-weight: 800; font-size: 1.6rem; color: var(--blue); line-height:1; }
.hero-badge small { color: var(--muted); font-size: .8rem; line-height: 1.2; display:block; max-width:110px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
}

/* ----- Logo strip / values ----------------------------------------- */
.pill-row { display:flex; flex-wrap:wrap; gap: 12px; justify-content:center; }
.pill {
  display:inline-flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--line);
  padding: 10px 18px; border-radius: 999px; font-family: var(--ff-head); font-weight:600; color: var(--ink); font-size:.92rem;
  box-shadow: var(--shadow-sm);
}
.pill svg { width:18px; height:18px; color: var(--green); }

/* ----- Grid of cards ------------------------------------------------ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7e5ef; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-tint), #dff0e6); margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; color: var(--green-dark); }
.card .ico.blue { background: linear-gradient(135deg, #e9f1f9, #dbe9f6); }
.card .ico.blue svg { color: var(--blue); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: .98rem; }

/* Service card with link */
.svc-card { display:flex; flex-direction:column; }
.svc-card .svc-tag { margin-top: 16px; font-family: var(--ff-head); font-weight:700; color: var(--green-dark); font-size:.9rem; display:inline-flex; align-items:center; gap:6px; }
.svc-card .svc-tag svg { width:15px; height:15px; transition: transform .2s var(--ease); }
.svc-card:hover .svc-tag svg { transform: translateX(4px); }

/* ----- Split feature ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 840px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media {
  border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--blue-dark), var(--blue) 55%, var(--green-dark));
  min-height: 340px; display:flex; flex-direction: column; justify-content: center; gap: 16px;
  box-shadow: var(--shadow);
}
.split-media::after {
  content:""; position:absolute; right:-60px; top:-60px; width: 240px; height: 240px; border-radius:50%;
  background: radial-gradient(circle, rgba(139,197,63,.35), transparent 70%);
}
.split-media .stat-tile {
  position: relative; background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 18px 20px; color:#fff; backdrop-filter: blur(4px);
}
.split-media .stat-tile .n { font-family: var(--ff-head); font-weight:800; font-size: 2rem; line-height:1; }
.split-media .stat-tile p { margin: 6px 0 0; color: rgba(255,255,255,.82); font-size:.92rem; }

.check-list { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ck { flex-shrink:0; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-tint); display:grid; place-items:center; margin-top:2px; }
.check-list .ck svg { width: 15px; height: 15px; color: var(--green-dark); }
.check-list b { color: var(--ink); font-family: var(--ff-head); }

/* ----- Stats band --------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align:center; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat .n { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--blue); line-height:1; letter-spacing:-.03em; }
.stat .n .u { color: var(--green); }
.stat p { margin: 8px 0 0; color: var(--muted); font-size: .95rem; }

/* ----- Steps -------------------------------------------------------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 4px; }
.step .num {
  width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--green));
  color:#fff; font-family: var(--ff-head); font-weight:800; display:grid; place-items:center; font-size: 1.1rem; margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.15rem; }
.step p { margin-bottom:0; font-size:.97rem; }

/* ----- Testimonials ------------------------------------------------- */
.quote {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; height:100%;
  display:flex; flex-direction: column;
}
.quote .stars { display:flex; gap:3px; margin-bottom: 14px; }
.quote .stars svg { width:18px; height:18px; color:#f4b740; }
.quote blockquote { margin:0 0 18px; font-size:1.02rem; color: var(--ink); line-height:1.6; flex:1; }
.quote .who { display:flex; align-items:center; gap:12px; }
.quote .who .av { width:42px; height:42px; border-radius:50%; background: linear-gradient(135deg, var(--blue), var(--green)); color:#fff; display:grid; place-items:center; font-family:var(--ff-head); font-weight:700; }
.quote .who b { display:block; color: var(--ink); font-family: var(--ff-head); font-size:.96rem; }
.quote .who small { color: var(--muted); }

/* ----- FAQ ---------------------------------------------------------- */
.faq { max-width: 780px; margin-inline:auto; display:grid; gap: 12px; }
.faq details {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color:#d3e3ef; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--ff-head); font-weight:700; color: var(--ink);
  display:flex; justify-content: space-between; align-items:center; gap: 16px; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary .plus { flex-shrink:0; width: 26px; height:26px; border-radius:50%; background: var(--bg-tint); display:grid; place-items:center; transition: transform .25s var(--ease); }
.faq summary .plus svg { width:16px; height:16px; color: var(--green-dark); }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; margin:0; color: var(--body); }

/* ----- CTA band ----------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, var(--green-dark));
  color:#fff; padding: clamp(40px, 6vw, 68px); text-align:center;
}
.cta-band::before { content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(139,197,63,.3), transparent 70%); }
.cta-band::after  { content:""; position:absolute; left:-80px; bottom:-100px; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); }
.cta-band h2 { color:#fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); position: relative; max-width: 560px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .hero-actions { position: relative; justify-content:center; margin-bottom: 0; }

/* ----- Page hero (interior) ---------------------------------------- */
.page-hero { position: relative; overflow:hidden; padding-block: clamp(56px, 8vw, 92px); }
.page-hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(60% 70% at 85% 0%, rgba(139,197,63,.15), transparent 60%), var(--bg-soft);
}
.page-hero .breadcrumb { font-size:.88rem; color: var(--muted); margin-bottom: 14px; font-family: var(--ff-head); font-weight:600; }
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--green-dark); }
.page-hero p.lead { max-width: 640px; }

/* ----- Contact ------------------------------------------------------ */
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 52px); align-items:start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns:1fr; } }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 12px 26px; }
.info-row { display:flex; gap:16px; padding: 20px 0; border-top: 1px solid var(--line-soft); align-items:flex-start; }
.info-row:first-child { border-top:none; }
.info-row .ico { width:46px; height:46px; flex-shrink:0; border-radius:12px; background: var(--bg-tint); display:grid; place-items:center; }
.info-row .ico svg { width:22px; height:22px; color: var(--green-dark); }
.info-row h4 { margin:0 0 3px; font-size: 1rem; }
.info-row p { margin:0; font-size:.96rem; }
.info-row a { font-weight:600; }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-family: var(--ff-head); font-weight:600; color: var(--ink); font-size:.92rem; margin-bottom:7px; }
.field label .req { color: var(--green-dark); }
.field input, .field select, .field textarea {
  width:100%; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border:1px solid var(--line); border-radius: var(--radius-sm); background: #fdfefe;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(23,164,74,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap: 18px; }
@media (max-width: 520px){ .field-row { grid-template-columns:1fr; } }
.form .btn { width:100%; margin-top: 4px; }
.form-note { font-size:.85rem; color: var(--muted); margin: 14px 0 0; text-align:center; }
.form-success {
  display:none; background: var(--bg-tint); border:1px solid #cfe8d7; color: var(--green-dark);
  border-radius: var(--radius-sm); padding: 16px 18px; font-family: var(--ff-head); font-weight:600; margin-bottom: 18px;
  align-items:center; gap:10px;
}
.form-success svg { width:22px; height:22px; flex-shrink:0; }
.form-success.show { display:flex; }
.field .err { color:#c0392b; font-size:.82rem; margin-top:5px; display:none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color:#e0a3a0; box-shadow:0 0 0 3px rgba(192,57,43,.1); }
.field.invalid .err { display:block; }

.map-embed {
  border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); background: var(--bg-soft);
  aspect-ratio: 16 / 8; display:grid; place-items:center; position:relative; margin-top: 26px;
  background-image:
    linear-gradient(rgba(10,79,138,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,79,138,.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-embed .pin { text-align:center; color: var(--blue-dark); }
.map-embed .pin svg { width: 42px; height:42px; color: var(--green); margin-bottom:6px; }
.map-embed .pin b { font-family:var(--ff-head); display:block; }
.map-embed .pin small { color: var(--muted); }

/* ----- About / values ---------------------------------------------- */
.value-list { display:grid; gap: 4px; }
.value-list .v { display:flex; gap:16px; padding: 20px 0; border-top:1px solid var(--line); }
.value-list .v:first-child { border-top:none; }
.value-list .v .ico { width:48px;height:48px;flex-shrink:0;border-radius:12px;background:var(--bg-tint);display:grid;place-items:center; }
.value-list .v .ico svg { width:24px;height:24px;color:var(--green-dark); }
.value-list .v h3 { font-size:1.12rem; margin-bottom:5px; }
.value-list .v p { margin:0; font-size:.97rem; }

/* ----- Footer ------------------------------------------------------- */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,.7); padding-block: clamp(48px,6vw,72px) 28px; margin-top: clamp(48px,7vw,96px); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-chip { display:inline-flex; background:#fff; padding:10px 14px; border-radius: 14px; margin-bottom:18px; }
.footer-brand .logo-chip img { height: 46px; }
.footer-brand p { font-size:.95rem; max-width: 300px; }
.footer-col h4 { color:#fff; font-size:.95rem; letter-spacing:.02em; margin-bottom:16px; }
.footer-col ul { list-style:none; display:grid; gap:11px; }
.footer-col a { color: rgba(255,255,255,.7); font-size:.95rem; }
.footer-col a:hover { color: var(--leaf); }
.footer-contact li { display:flex; gap:10px; font-size:.95rem; align-items:flex-start; }
.footer-contact svg { width:17px;height:17px;color:var(--leaf);flex-shrink:0;margin-top:3px; }
.footer-social { display:flex; gap:10px; margin-top:16px; }
.footer-social a { width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.1);display:grid;place-items:center;transition:background .2s var(--ease); }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width:18px;height:18px;color:#fff; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:.86rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--leaf); }
.disclaimer { font-size:.82rem; color: rgba(255,255,255,.45); margin-top: 10px; max-width: 720px; }

/* ----- Reveal on scroll -------------------------------------------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; }
  .reveal { opacity:1 !important; transform:none !important; transition:none; }
  .btn:hover, .card:hover { transform:none; }
}
