/* VDC Design System v2 — Plus Jakarta Sans, asymmetric, refined */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,opsz,wght@0,6..18,400;0,6..18,500;0,6..18,600;0,6..18,700;0,6..18,800;0,6..18,900;1,6..18,700&display=swap');

:root {
  --navy:    #0B1829;
  --navy2:   #172844;
  --blue:    #1D4ED8;
  --blue-l:  #DBEAFE;
  --orange:  #EA580C;
  --org-m:   #F97316;
  --org-l:   #FFF7ED;
  --green:   #059669;
  --grn-l:   #D1FAE5;
  --teal:    #0D9488;
  --teal-l:  #CCFBF1;
  --purple:  #7C3AED;
  --purp-l:  #EDE9FE;
  --slate:   #64748B;
  --text:    #111827;
  --muted:   #6B7280;
  --bg:      #F1F5F9;
  --cream:   #F8F7F4;
  --border:  rgba(0,0,0,0.07);
  --font:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --sh:      0 4px 16px -2px rgba(0,0,0,0.08), 0 2px 6px -2px rgba(0,0,0,0.04);
  --sh-lg:   0 20px 48px -12px rgba(0,0,0,0.12), 0 8px 16px -4px rgba(0,0,0,0.06);
  --r:       16px;
  --r-lg:    24px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

.vdc * { box-sizing: border-box; margin: 0; padding: 0; }
.vdc { font-family: var(--font); color: var(--text); line-height: 1.6; }

/* ── HERO ───────────────────────────────────────────────── */
.vdc-hero {
  background: linear-gradient(140deg, #0B1829 0%, #172844 45%, #1a3fa8 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.vdc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.vdc-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 60px 72px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vdc-hero h1 {
  font-family: var(--font);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
  text-align: left;
}

.vdc-hero h1 em {
  font-style: normal;
  color: var(--org-m);
}

.vdc-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.68);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: left;
}

.vdc-hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Glass info card */
.vdc-hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 64px rgba(0,0,0,0.25);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.vdc-hero-stat-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vdc-hero-stat-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.vdc-hero-stat-row:first-of-type { padding-top: 0; }

.vdc-hsr-num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--org-m);
  line-height: 1;
}

.vdc-hsr-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-align: left;
}

.vdc-hero-card-address {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
}

/* Stats bar */
.vdc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.28);
  position: relative;
  z-index: 1;
}

.vdc-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.vdc-stat-pill:last-child { border-right: none; }

.vdc-stat-pill strong {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.vdc-stat-pill span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.vdc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
}

.vdc-btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(234,88,12,0.32);
}

.vdc-btn--primary:hover {
  background: var(--org-m);
  border-color: var(--org-m);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234,88,12,0.42);
}

.vdc-btn--primary:active { transform: translateY(0) scale(0.98); }

.vdc-btn--ghost-white {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.22);
  background: transparent;
}

.vdc-btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.vdc-btn--outline {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}

.vdc-btn--outline:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

.vdc-btn--white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.vdc-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ── SECTION SHELL ───────────────────────────────────────── */
.vdc-section { padding: 96px 40px; }

.vdc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vdc-section-header { margin-bottom: 56px; }

.vdc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.vdc-eyebrow--blue   { background: var(--blue-l); color: var(--blue); }
.vdc-eyebrow--green  { background: var(--grn-l);  color: var(--green); }
.vdc-eyebrow--orange { background: var(--org-l);  color: var(--orange); }
.vdc-eyebrow--purple { background: var(--purp-l); color: var(--purple); }
.vdc-eyebrow--teal   { background: var(--teal-l); color: var(--teal); }

.vdc-h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; color: var(--text); }
.vdc-h2 { font-size: clamp(1.8rem,3.8vw,2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--text); }
.vdc-h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.vdc-lead { font-size: 1.1rem; line-height: 1.75; color: var(--muted); margin-top: 12px; max-width: 560px; }

/* ── MISSION QUOTE ───────────────────────────────────────── */
.vdc-mission {
  background: var(--cream);
  padding: 80px 40px;
  text-align: center;
}

.vdc-mission-quote {
  font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 20px;
}

.vdc-mission-quote::before { content: '\201C'; color: var(--blue-l); }
.vdc-mission-quote::after  { content: '\201D'; color: var(--blue-l); }

.vdc-mission-attr {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── ACTIVITIES GRID ─────────────────────────────────────── */
.vdc-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vdc-activity-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}

.vdc-activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.vdc-activity-card--1::before { background: var(--blue); }
.vdc-activity-card--2::before { background: var(--green); }
.vdc-activity-card--3::before { background: var(--purple); }
.vdc-activity-card--4::before { background: var(--teal); }
.vdc-activity-card--5::before { background: var(--org-m); }
.vdc-activity-card--6::before { background: #10B981; }
.vdc-activity-card--7::before { background: #6366F1; }
.vdc-activity-card--8::before { background: #F59E0B; }

.vdc-activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.vdc-activity-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vdc-activity-icon { margin-bottom: 16px; display: block; }
.vdc-activity-icon img { width: 44px; height: 44px; }

.vdc-activity-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 10px;
}

.vdc-activity-card p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.vdc-activity-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.vdc-activity-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.vdc-activity-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.75rem;
  top: 2px;
}

/* ── IMPACT STATS ────────────────────────────────────────── */
.vdc-impact {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 96px 40px;
  color: #fff;
}

.vdc-impact-header { text-align: center; margin-bottom: 64px; }
.vdc-impact-header .vdc-h2 { color: #fff; }
.vdc-impact-header .vdc-lead { color: rgba(255,255,255,0.6); margin: 12px auto 0; }

.vdc-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.vdc-impact-item {
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vdc-impact-item:last-child { border-right: none; }

.vdc-impact-num {
  font-size: clamp(2.5rem,4.5vw,3.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--org-m);
  line-height: 1;
}

.vdc-impact-label {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.48);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.vdc-quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vdc-quote-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s var(--ease);
}

.vdc-quote-card:hover { box-shadow: var(--sh); }

.vdc-quote-icon {
  font-size: 2rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 14px;
}

.vdc-quote-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.vdc-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vdc-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.vdc-avatar--1 { background: var(--blue); }
.vdc-avatar--2 { background: var(--green); }
.vdc-avatar--3 { background: var(--orange); }
.vdc-avatar--4 { background: var(--purple); }
.vdc-avatar--5 { background: var(--teal); }
.vdc-avatar--6 { background: #6366F1; }
.vdc-avatar--7 { background: #F59E0B; }
.vdc-avatar--8 { background: #EC4899; }

.vdc-quote-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

/* Staff quotes */
.vdc-staff-quotes {
  background: var(--cream);
  padding: 96px 40px;
}

.vdc-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.vdc-staff-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.vdc-staff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
}

.vdc-staff-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.vdc-staff-badge--darbuotoja { background: var(--blue-l); color: var(--blue); }
.vdc-staff-badge--savanore   { background: var(--grn-l);  color: var(--green); }

.vdc-staff-quote {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.vdc-staff-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

/* ── VMI SECTION ─────────────────────────────────────────── */
.vdc-vmi {
  background: linear-gradient(140deg, #064E3B 0%, #059669 100%);
  padding: 96px 40px;
  color: #fff;
}

.vdc-vmi .vdc-h2  { color: #fff; }
.vdc-vmi .vdc-lead { color: rgba(255,255,255,0.65); }

.vdc-vmi-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  max-width: 1100px;
  margin: 56px auto 0;
  align-items: start;
}

.vdc-vmi-steps { display: flex; flex-direction: column; gap: 28px; }

.vdc-vmi-step { display: flex; gap: 18px; align-items: flex-start; }

.vdc-step-num {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  color: #fff;
}

.vdc-vmi-step-body { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.vdc-vmi-step-body strong { color: #fff; display: block; margin-bottom: 4px; font-weight: 700; }

.vdc-vmi-code {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
}

.vdc-vmi-percent {
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.vdc-vmi-percent-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

/* ── SUPPORT ─────────────────────────────────────────────── */
.vdc-support { background: #fff; padding: 96px 40px; }

.vdc-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 56px auto 0;
}

.vdc-support-card {
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.vdc-support-card--bank { background: var(--navy); color: #fff; }
.vdc-support-card--aukok { background: var(--orange); color: #fff; }

.vdc-support-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vdc-support-card-title img { width: 32px; height: 32px; }

.vdc-bank-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vdc-bank-row:last-of-type { border-bottom: none; }

.vdc-bank-key {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
}

.vdc-bank-val { font-size: 0.95rem; font-weight: 600; color: #fff; }

.vdc-support-card--aukok .vdc-lead { color: rgba(255,255,255,0.82); max-width: 100%; margin-bottom: 28px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.vdc-contact { background: var(--cream); padding: 80px 40px; }

.vdc-contact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 56px auto 0;
  box-shadow: var(--sh);
}

.vdc-contact-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.vdc-contact-item:last-child { border-right: none; }

.vdc-contact-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.vdc-contact-icon-wrap img { width: 28px; height: 28px; }

.vdc-contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.vdc-contact-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

a.vdc-contact-val:hover { color: var(--blue); }

.vdc-contact-sub { font-size: 0.78rem; color: var(--muted); }

/* Divider */
.vdc-divider {
  height: 1px;
  background: var(--border);
}

/* ── PAGE HEROES (inner pages) ───────────────────────────── */
.vdc-page-hero {
  padding: 80px 60px 72px;
  position: relative;
  z-index: 1;
}

.vdc-page-hero h1 {
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
  max-width: 680px;
}

.vdc-page-hero h1 em { font-style: normal; color: var(--org-m); }

.vdc-page-hero .vdc-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 0;
}

/* Override the centered hero-inner for backwards compat */
.vdc-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
@keyframes vdc-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vdc-hero, .vdc-mission, .vdc-section, .vdc-impact, .vdc-quotes,
.vdc-support, .vdc-vmi, .vdc-staff-quotes, .vdc-contact {
  animation: vdc-up 0.5s var(--ease) both;
}

.vdc-activity-card { animation: vdc-up 0.4s var(--ease) both; }
.vdc-activity-card:nth-child(1) { animation-delay: .05s; }
.vdc-activity-card:nth-child(2) { animation-delay: .10s; }
.vdc-activity-card:nth-child(3) { animation-delay: .15s; }
.vdc-activity-card:nth-child(4) { animation-delay: .20s; }
.vdc-activity-card:nth-child(5) { animation-delay: .25s; }
.vdc-activity-card:nth-child(6) { animation-delay: .30s; }
.vdc-activity-card:nth-child(7) { animation-delay: .35s; }
.vdc-activity-card:nth-child(8) { animation-delay: .40s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet — ≤960px */
@media (max-width: 960px) {
  .vdc-hero-grid     { grid-template-columns: 1fr; padding: 72px 32px 56px; gap: 0; }
  .vdc-hero-right    { display: none; }
  .vdc-hero h1       { font-size: clamp(2.6rem, 6vw, 3.4rem); }
  .vdc-hero-sub      { max-width: 100%; }

  .vdc-section       { padding: 72px 32px; }
  .vdc-mission       { padding: 64px 32px; }
  .vdc-vmi           { padding: 72px 32px; }
  .vdc-staff-quotes  { padding: 72px 32px; }
  .vdc-impact        { padding: 72px 32px; }
  .vdc-support       { padding: 72px 32px; }
  .vdc-contact       { padding: 64px 32px; }

  .vdc-activity-grid { grid-template-columns: repeat(2, 1fr); }
  .vdc-impact-grid   { grid-template-columns: repeat(3, 1fr); }
  .vdc-quotes-grid   { grid-template-columns: 1fr 1fr; }
  .vdc-staff-grid    { grid-template-columns: 1fr 1fr; }
  .vdc-support-grid  { grid-template-columns: 1fr; }
  .vdc-contact-bar   { grid-template-columns: 1fr 1fr; }
  .vdc-vmi-inner     { grid-template-columns: 1fr; gap: 40px; }
  .vdc-page-hero     { padding: 64px 32px 56px; }

  .vdc-quote-section         { padding: 64px 32px; }
  .vdc-services-list-section { padding: 72px 32px; }
  .vdc-full-activities       { padding: 72px 32px; }
  .vdc-support-extra         { padding: 56px 32px; }
}

/* Mobile — ≤640px */
@media (max-width: 640px) {
  .vdc-hero-grid     { padding: 60px 20px 44px; }
  .vdc-hero h1       { font-size: 2.6rem; margin-bottom: 18px; }
  .vdc-hero-sub      { font-size: 1rem; margin-bottom: 28px; }
  .vdc-hero-stats    { grid-template-columns: 1fr 1fr; }
  .vdc-stat-pill     { padding: 22px 12px; }
  .vdc-stat-pill strong { font-size: 1.6rem; }

  .vdc-section       { padding: 56px 20px; }
  .vdc-mission       { padding: 52px 20px; }
  .vdc-vmi           { padding: 56px 20px; }
  .vdc-staff-quotes  { padding: 56px 20px; }
  .vdc-impact        { padding: 56px 20px; }
  .vdc-support       { padding: 56px 20px; }
  .vdc-contact       { padding: 52px 20px; }

  .vdc-activity-grid { grid-template-columns: 1fr; }
  .vdc-activity-card { padding: 24px; }

  .vdc-impact-grid   { grid-template-columns: 1fr 1fr; }
  .vdc-impact-item   { padding: 28px 14px; }

  .vdc-quotes-grid   { grid-template-columns: 1fr; }
  .vdc-staff-grid    { grid-template-columns: 1fr; }

  .vdc-support-card  { padding: 28px; }

  .vdc-contact-bar   { grid-template-columns: 1fr; }
  .vdc-contact-item  { border-right: none; border-bottom: 1px solid var(--border); }
  .vdc-contact-item:last-child { border-bottom: none; }

  .vdc-page-hero     { padding: 52px 20px 44px; }
  .vdc-page-hero h1  { font-size: clamp(2rem, 8vw, 2.8rem); }
  .vdc-section-header { margin-bottom: 36px; }

  .vdc-quote-section         { padding: 52px 20px; }
  .vdc-services-list-section { padding: 56px 20px; }
  .vdc-full-activities       { padding: 56px 20px; }
  .vdc-support-extra         { padding: 48px 20px; }
}

/* Small phone — ≤390px */
@media (max-width: 390px) {
  .vdc-hero-grid     { padding: 48px 16px 40px; }
  .vdc-hero h1       { font-size: 2.1rem; letter-spacing: -0.03em; }
  .vdc-hero-sub      { font-size: 0.95rem; }
  .vdc-hero-ctas     { flex-direction: column; align-items: stretch; }
  .vdc-hero-ctas .vdc-btn { text-align: center; justify-content: center; }
  .vdc-stat-pill strong { font-size: 1.4rem; }

  .vdc-section       { padding: 44px 16px; }
  .vdc-mission       { padding: 44px 16px; }
  .vdc-vmi           { padding: 44px 16px; }
  .vdc-staff-quotes  { padding: 44px 16px; }
  .vdc-impact        { padding: 44px 16px; }
  .vdc-support       { padding: 44px 16px; }
  .vdc-contact       { padding: 40px 16px; }

  .vdc-impact-grid   { grid-template-columns: 1fr 1fr; }
  .vdc-impact-num    { font-size: 2.2rem; }
  .vdc-impact-item   { padding: 20px 10px; }

  .vdc-page-hero     { padding: 44px 16px 36px; }
  .vdc-page-hero h1  { font-size: 1.9rem; }

  .vdc-activity-card { padding: 20px; }
  .vdc-support-card  { padding: 22px 20px; }

  .vdc-quote-section         { padding: 44px 16px; }
  .vdc-services-list-section { padding: 44px 16px; }
  .vdc-full-activities       { padding: 44px 16px; }
  .vdc-support-extra         { padding: 40px 16px; }
}
/* ── ARCHIVE TEXT ADDITIONS ─────────────────────────── */
.vdc-quote-section{background:var(--navy2);padding:80px 40px;text-align:center;}
.vdc-quote-section blockquote{font-family:var(--font);font-size:clamp(1.2rem,2.2vw,1.65rem);font-style:italic;line-height:1.65;color:#cbd5e1;max-width:820px;margin:0 auto 20px;font-weight:400;}
.vdc-quote-section cite{font-size:.95rem;color:var(--org-m);font-weight:600;font-style:normal;letter-spacing:.06em;text-transform:uppercase;}
.vdc-services-list-section{background:#f0f4fa;padding:88px 40px;}
.vdc-services-list-section h2{font-size:clamp(1.6rem,2.5vw,2.2rem);color:var(--navy);text-align:center;margin:0 0 8px;}
.vdc-services-list-section .vdc-eyebrow{text-align:center;margin:0 0 16px;}
.vdc-svc-list{list-style:none;padding:0;margin:48px auto 0;max-width:780px;display:flex;flex-direction:column;gap:0;}
.vdc-svc-list li{display:flex;align-items:flex-start;gap:16px;padding:18px 0;border-bottom:1px solid #e2e8f0;font-size:1.05rem;color:#334155;line-height:1.55;}
.vdc-svc-list li:last-child{border-bottom:none;}
.vdc-svc-list li::before{content:'';display:block;flex-shrink:0;width:22px;height:22px;border-radius:50%;background:var(--green);margin-top:2px;}
.vdc-full-activities{background:#fff;padding:88px 40px;}
.vdc-full-activities .vdc-container h2{font-size:clamp(1.6rem,2.5vw,2.2rem);color:var(--navy);text-align:center;margin:0 0 48px;}
.vdc-act-list{list-style:none;padding:0;margin:0 auto;max-width:820px;counter-reset:actnum;}
.vdc-act-list li{counter-increment:actnum;display:flex;gap:20px;padding:20px 0;border-bottom:1px solid #e9eef5;align-items:flex-start;}
.vdc-act-list li:last-child{border-bottom:none;}
.vdc-act-list li::before{content:'0'counter(actnum);font-size:.75rem;font-weight:700;color:var(--blue);letter-spacing:.05em;background:#eff6ff;border-radius:8px;padding:6px 10px;flex-shrink:0;margin-top:2px;}
.vdc-act-list li p{margin:0;color:#334155;font-size:1rem;line-height:1.6;}
.vdc-act-list li strong{display:block;font-size:1.05rem;color:var(--navy);margin-bottom:4px;}
.vdc-support-extra{background:#f8fafc;padding:72px 40px;}
.vdc-support-extra-inner{max-width:820px;margin:0 auto;}
.vdc-support-extra h2{font-size:clamp(1.5rem,2.2vw,2rem);color:var(--navy);margin:0 0 24px;}
.vdc-support-extra p{color:#475569;font-size:1.05rem;line-height:1.7;margin:0 0 16px;}
.vdc-support-extra p:last-child{margin-bottom:0;}
.vdc-director{display:flex;align-items:center;gap:16px;padding:24px;background:#fff;border-radius:16px;border-left:4px solid var(--blue);margin-top:48px;box-shadow:0 2px 12px rgba(0,0,0,.06);}
.vdc-director-avatar{width:52px;height:52px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.3rem;font-weight:700;flex-shrink:0;}
.vdc-director-info p{margin:0;color:#64748b;font-size:.85rem;text-transform:uppercase;letter-spacing:.06em;font-weight:600;}
.vdc-director-info strong{display:block;font-size:1.1rem;color:var(--navy);margin-top:4px;}
