/* ==============================================
   BPO.DA — v4: Design polish pass
   Type scale: 13 / 15 / 17 / 20 / 28 / 40 / 56
   ============================================== */

:root {
  --dark: #1F2933;
  --dark-soft: #3E4C59;
  --olive: #92A167;
  --olive-hover: #7D8C56;
  --olive-light: #B0BE8A;
  --olive-wash: rgba(146, 161, 103, 0.07);
  --teal: #3994C1;
  --teal-hover: #2E7DA3;
  --gold: #EEC86B;
  --gold-wash: rgba(238, 200, 107, 0.10);
  --blue-light: #9DCAD8;
  --white: #ffffff;
  --off-white: #FAFAF8;
  --cream: #F5F3ED;
  --gray: #616E7C;
  --gray-light: #9AA5B4;
  --testimonial-bg: #2D3A45;
  --rule: #E4E7EB;
  --font-heading: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Chivo', sans-serif;
  --max-w: 1360px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--dark); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ==============================================
   TYPE SCALE — strict, no exceptions
   13px  — meta, footer small
   15px  — card body, captions
   17px  — body text (everywhere)
   20px  — lead paragraphs, subtitle
   28px  — H3 / section titles
   40px  — H2
   56px  — H1
   ============================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 400;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  font-style: italic;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 500;
}

/* ==============================================
   ACCENT BAR — subtle brand strip at very top
   ============================================== */
.accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--olive) 50%, var(--blue-light) 100%);
}

/* ==============================================
   NAVIGATION
   ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a, .nav-links .nav-dd-trigger {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.nav-links a:hover, .nav-links .nav-dd-trigger:hover { color: var(--olive); }
.nav-links a[aria-current="page"],
.nav-links .nav-dd-trigger[aria-current="page"] { color: var(--olive); }

.nav-dd { position: relative; }
.nav-dd-trigger::after {
  content: ' \25BE';
  font-size: 9px;
  color: var(--gray-light);
}
.nav-dd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 14px;
  background: transparent;
  border-radius: 0;
  min-width: 240px;
  z-index: 100;
}
.nav-dd-menu::before {
  content: '';
  position: absolute;
  inset: 14px 0 0 0;
  background: var(--white);
  box-shadow: 0 12px 48px rgba(31,41,51,0.12);
  border-radius: 8px;
  z-index: -1;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  background: transparent;
}
.nav-dd-menu a:hover { background: var(--cream); color: var(--olive); }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--font-heading);
  font-size: 13px;
}
.nav-lang a {
  padding: 0.2rem 0.4rem;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-lang a.active { color: var(--dark); font-weight: 500; }
.nav-lang a:hover { color: var(--dark); }
.nav-lang-sep { color: var(--rule); font-size: 13px; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 2rem var(--gutter);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-menu-header img { height: 40px; width: auto; }

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--dark);
  line-height: 1;
  padding: 4px 8px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu nav a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-menu nav a:first-child { border-top: 1px solid var(--rule); }
.mobile-menu nav a:hover { color: var(--olive); }

.mobile-menu-cta {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-logo img { height: 40px; }
  .nav-hamburger { display: flex; }
}

/* ==============================================
   BUTTONS & LINKS — consistent
   ============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  background: var(--olive);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--olive-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(146, 161, 103, 0.3);
}

.link-arrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(57, 148, 193, 0.3);
  transition: text-decoration-color 0.2s;
}
.link-arrow:hover { text-decoration-color: var(--teal); }

/* ==============================================
   HERO — with subtle background
   ============================================== */
.hero {
  background: linear-gradient(170deg, var(--white) 0%, var(--off-white) 40%, var(--cream) 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative circles in hero background */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(146, 161, 103, 0.08);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(238, 200, 107, 0.1);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.hero-content h1 { margin-bottom: 1.25rem; }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--olive);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Hero image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-circle-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--olive);
  opacity: 0.12;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.hero-circle-blue {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.2;
  top: 5%;
  right: -3%;
}
.hero-circle-gold {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  top: 10%;
  left: 20%;
  z-index: 3;
}
.hero-circle-olive {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light);
  bottom: 10%;
  left: 38%;
  z-index: 3;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(31, 41, 51, 0.14);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-visual { min-height: 320px; }
  .hero-img { width: 280px; height: 280px; }
  .hero-circle-bg { width: 300px; height: 300px; }
  .hero-circle-blue { width: 220px; height: 220px; }
}

/* ==============================================
   CLIENT RIBBON
   ============================================== */
.client-ribbon {
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
}

.ribbon-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-align: center;
  margin-bottom: 1.5rem;
}

.ribbon-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.ribbon-logo {
  opacity: 0.7;
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
  filter: grayscale(100%) sepia(100%) hue-rotate(50deg) saturate(0.35) brightness(0.75);
}
.ribbon-logo:hover {
  opacity: 1;
  filter: grayscale(100%) sepia(100%) hue-rotate(50deg) saturate(0.5) brightness(0.65);
}

.ribbon-logo img,
.ribbon-logo svg {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .ribbon-logos { gap: 2rem; }
  .ribbon-logo svg { height: 24px; }
}

/* ==============================================
   MAIN CONTENT BAND — cream, continuous
   Intro + Cards + Admin all in ONE block
   ============================================== */
.content-band {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4rem);
  border-top: 1px solid var(--rule);
}

.intro-text {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.intro-text h2 { margin-bottom: 1.25rem; }

.intro-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark-soft);
}

/* SERVICE CARDS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.25s;
  border: 1px solid rgba(228, 231, 235, 0.6);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.service-cta { text-align: center; margin-bottom: 3rem; }

/* ADMIN CONTEXT — integrated in the band */
.admin-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--rule);
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .admin-strip { flex-direction: column; text-align: center; }
}

.admin-strip-icon { flex-shrink: 0; width: 40px; height: 40px; }

.admin-strip h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.admin-strip p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 0.35rem;
}

/* ==============================================
   ABOUT — with olive accent border
   ============================================== */
.about {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--rule);
}

.about-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; text-align: center; } }

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 300px;
  height: 360px;
  border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 41, 51, 0.1);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-visual::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-light);
  top: -10px;
  right: 10%;
  opacity: 0.5;
}
.about-visual::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  bottom: 15px;
  left: 12%;
  opacity: 0.4;
}

.about-content h2 {
  font-style: normal;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.about-content .link-arrow { display: inline-block; margin-top: 0.5rem; }

/* ==============================================
   TESTIMONIAL
   ============================================== */
.testimonial {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--testimonial-bg);
  overflow: hidden;
}

.testimonial-bg { position: absolute; inset: 0; z-index: 1; }
.testimonial-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }

.testimonial-inner { position: relative; z-index: 2; max-width: 620px; }

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.testimonial cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.testimonial .action-note {
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  background: rgba(238, 200, 107, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--off-white);
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}

.footer-decor {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
}

.footer-main {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-decor { display: none; }
}

.footer-brand img { height: 48px; margin-bottom: 1rem; }

.footer-tagline {
  font-size: 17px;
  font-style: italic;
  color: var(--olive);
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--dark-soft);
  padding: 0.15rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--olive); }

.footer-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
}

@media (max-width: 768px) { .footer-locations { grid-template-columns: 1fr; } }

.footer-loc h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.footer-loc p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}
.footer-loc a { font-size: 15px; color: var(--gray); transition: color 0.2s; }
.footer-loc a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  gap: 0.75rem;
}
.footer-bottom p { font-size: 13px; color: var(--gray-light); }
.footer-bottom a { font-size: 13px; color: var(--gray-light); margin-left: 1.25rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--dark); }


/* ==============================================
   INNER PAGE STYLES — Design Polish v2
   More visual depth, better hierarchy, richer layout
   ============================================== */

/* --- PAGE HERO — taller, with accent bar + decorative circles --- */
.page-hero {
  background: linear-gradient(170deg, var(--cream) 0%, rgba(146,161,103,0.14) 60%, rgba(238,200,107,0.12) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

/* Large decorative circle in hero */
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1.5px solid rgba(146, 161, 103, 0.08);
  top: -220px;
  right: -80px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(238, 200, 107, 0.1);
  bottom: -120px;
  right: 15%;
  pointer-events: none;
}

.page-hero h1 {
  font-style: normal;
  max-width: 780px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--olive);
}

.page-hero .lead {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  max-width: 600px;
  line-height: 1.5;
  padding-left: 1.5rem;
}

/* Lead at top of page-section (when moved out of hero) */
.page-section > .container > .lead,
.page-section .lead {
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  line-height: 1.5;
  max-width: 640px;
  margin-bottom: 1.5rem;
  display: block;
}

/* --- PAGE SECTIONS — with better rhythm --- */
.page-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.page-section + .page-section {
  border-top: 1px solid var(--rule);
}

.page-section.cream {
  background: var(--cream);
}

.page-section h2 {
  margin-bottom: 1.25rem;
  position: relative;
}

.page-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-soft);
  margin-bottom: 0.85rem;
  max-width: 680px;
}

.page-section p:last-of-type {
  margin-bottom: 0;
}

/* --- SERVICE DETAIL — numbered sections with accent --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
}

@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
}

.service-detail-text h2 {
  font-style: normal;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.service-detail-text p {
  max-width: none;
}

/* Number badge for service sections */
.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Bullet list with olive accents */
.service-bullets {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--rule);
  overflow: hidden;
}

.cream .service-bullets {
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.service-bullets li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-soft);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.2s;
}

.service-bullets li:last-child {
  border-bottom: none;
}

.service-bullets li:hover {
  background: var(--gold-wash);
}



.service-bullets li strong {
  color: var(--dark);
  font-weight: 600;
}

/* In non-cream sections, give bullets a cream bg */
.page-section:not(.cream) .service-bullets {
  background: var(--off-white);
}

/* --- EXPERTISE CARDS — with olive top accent --- */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
}

.expertise-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Olive accent line at top of each card */
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--olive-light) 100%);
}

.expertise-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  padding-top: 0.25rem;
}

.expertise-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 0;
  max-width: none;
}

/* --- CTA BAND — two variants: cream (default) and dark --- */
.cta-band {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  position: relative;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
  font-style: normal;
}

.cta-band h2::before { display: none; } /* no dot on CTA h2 */

.cta-band p {
  font-size: 17px;
  color: var(--dark-soft);
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

/* Dark CTA variant for variety */
.cta-band.dark {
  background: var(--testimonial-bg);
  border-top: none;
}
.cta-band.dark h2 {
  color: var(--white);
}
.cta-band.dark p {
  color: rgba(255,255,255,0.7);
}
.cta-band.dark .btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.cta-band.dark .btn-primary:hover {
  background: #d4b054;
  box-shadow: 0 6px 20px rgba(238, 200, 107, 0.3);
}

/* --- BOOKING PLACEHOLDER --- */
.booking-placeholder {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 3rem 2rem;
  background: var(--cream);
  border: 2px dashed var(--olive-light);
  border-radius: 12px;
  text-align: center;
  color: var(--gray);
}

.booking-placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.booking-placeholder p {
  font-size: 15px;
  max-width: none;
  color: var(--gray);
}

/* --- BLOG / KENNISBANK CARDS — richer design --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 0;
  transition: box-shadow 0.3s, transform 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

/* Colored top accent per tag color */
.blog-card .blog-accent {
  height: 4px;
  background: var(--olive);
}
.blog-card .blog-accent.teal { background: var(--teal); }
.blog-card .blog-accent.gold { background: var(--gold); }
.blog-card .blog-accent.blue { background: var(--blue-light); }

.blog-card-body {
  padding: 1.5rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .blog-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  margin-bottom: 0.65rem;
  display: inline-block;
  background: var(--olive-wash);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  align-self: flex-start;
}

.blog-card .blog-tag.teal { color: var(--teal); background: rgba(57, 148, 193, 0.08); }
.blog-card .blog-tag.gold { color: #8B6914; background: var(--gold-wash); }

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
  max-width: none;
}

.blog-card-footer {
  padding: 0 1.5rem 1.25rem;
}

.blog-card .link-arrow {
  font-size: 13px;
  font-weight: 500;
}

/* --- INVESTMENT BLOCK --- */
.investment-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--gold-wash);
  border-radius: 12px;
  border: 1px solid rgba(238, 200, 107, 0.2);
  margin-top: 2rem;
  max-width: 700px;
}

.investment-block p { max-width: none; }

/* --- TEAM NOTE / ACTION NOTE --- */
.team-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--gold-wash);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 14px;
  color: var(--dark-soft);
}

/* --- CONTACT GRID --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-loc {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.contact-loc:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Olive accent at top */
.contact-loc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--olive);
}

.contact-loc h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-top: 0.25rem;
}

.contact-loc p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
  max-width: none;
  margin-bottom: 0.35rem;
}

.contact-loc a {
  font-size: 15px;
  color: var(--teal);
}

/* --- "WHAT SETS US APART" on Wie we zijn --- */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: diff;
}

@media (max-width: 900px) {
  .differentiator-grid { grid-template-columns: 1fr; }
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.2s;
}
.diff-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--olive-wash);
}

.diff-icon svg { width: 28px; height: 28px; }

.diff-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.diff-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  max-width: none;
  margin: 0;
}

/* --- STATS ROW for sector pages --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

@media (max-width: 768px) {
  .stat-row { grid-template-columns: 1fr; }
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num em {
  font-style: italic;
  color: var(--dark);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.45;
}

/* PARTNERS BAND */
.partners-band {
  padding: 5rem 0;
  border-top: 1px sol