/* ─── Apsara Veenstra Solutions — Shared Styles ─── */
:root {
  --c-white:        #FFFFFF;
  --c-canvas:       #F4F6F4;
  --c-surface:      #FFFFFF;
  --c-surface-alt:  #EEF3EF;
  --c-blue-mid:     #4B7A9E;
  --c-blue-deep:    #2B5674;
  --c-teal:         #1E4A60;
  --c-green-mid:    #3D7A56;
  --c-green-deep:   #1E4D35;
  --c-orange:       #C8572A;
  --c-orange-soft:  #E07A50;
  --c-orange-bg:    #FDF0EA;
  --c-text:         #1A2B22;
  --c-text-2:       #4A5E54;
  --c-text-3:       #7A9088;
  --c-on-dark:      #FFFFFF;
  --c-divider:      #D8E2DA;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 16px rgba(30,74,96,0.10);
  --shadow-lg:   0 8px 48px rgba(30,74,96,0.14);
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--c-canvas);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ─── Nav ─── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-divider);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-teal); text-decoration: none; }
.nav-logo span { color: var(--c-orange); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--c-text-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--c-teal); }
.nav-links a.active { color: var(--c-teal); border-bottom-color: var(--c-orange); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; border-radius: var(--radius-pill);
  padding: 10px 22px; font-family: var(--font);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.btn-primary { background: var(--c-orange); color: var(--c-on-dark); }
.btn-primary:hover { background: var(--c-orange-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--c-teal); border: 1.5px solid var(--c-blue-mid); }
.btn-outline:hover { background: var(--c-surface-alt); }
.btn-dark { background: var(--c-teal); color: var(--c-on-dark); }
.btn-dark:hover { background: var(--c-blue-deep); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.ic { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Section labels ─── */
.eyebrow-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-orange); margin-bottom: 10px; }
.section-title { font-size: 38px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--c-text); }
.section-sub { font-size: 16px; color: var(--c-text-2); line-height: 1.65; margin-top: 12px; }

/* ─── Page wrapper ─── */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page-content { flex: 1; }

/* ─── Footer ─── */
footer { background: var(--c-green-deep); color: var(--c-on-dark); padding: 48px 52px 24px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 20px;
}
.footer-brand .logo { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.footer-brand .logo span { color: var(--c-orange-soft); }
.footer-brand p { font-size: 13px; opacity: 0.6; max-width: 240px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--c-on-dark); text-decoration: none; font-size: 13px; opacity: 0.8; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; opacity: 0.4; }

/* ─── Pill tags ─── */
.pill { border-radius: var(--radius-pill); padding: 4px 10px; font-size: 11px; font-weight: 500; }
.pill.teal   { background: #E0EDF5; color: var(--c-blue-deep); }
.pill.green  { background: #DDF0E6; color: var(--c-green-deep); }
.pill.orange { background: var(--c-orange-bg); color: var(--c-orange); }
.pill.grey   { background: var(--c-canvas); color: var(--c-text-3); border: 1px solid var(--c-divider); }
