/* =====================================================
   MOON BEYOND SKIES ADVISORY — Main Stylesheet
   ===================================================== */

/* 1. Custom Properties
   ===================================================== */
:root {
  /* Colors */
  --navy:          #1B3162;
  --navy-800:      #1F3B75;
  --navy-900:      #142548;
  --teal:          #0BB5A4;
  --teal-dark:     #099487;
  --teal-light:    #CCF0EC;
  --teal-bg:       #EAF8F6;
  --white:         #FFFFFF;
  --bg:            #F7F9FC;
  --text:          #1A202C;
  --text-muted:    #4A5568;
  --text-light:    #718096;
  --border:        #E2E8F0;
  --border-dark:   #CBD5E0;
  --gold:          #D4A847;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl:  0 20px 48px rgba(0,0,0,0.13);

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Transitions */
  --t:      0.25s ease;
  --t-slow: 0.4s ease;

  /* Layout */
  --max-w:     1200px;
  --nav-h:     72px;
  --content-w: 720px;
}

/* 2. Reset & Base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }

/* 3. Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--text-muted); line-height: 1.75; }

.text-sm     { font-size: 0.875rem; }
.text-lg     { font-size: 1.125rem; }
.text-xl     { font-size: 1.25rem; }
.text-muted  { color: var(--text-muted); }
.text-light  { color: var(--text-light); }
.text-white  { color: var(--white); }
.text-teal   { color: var(--teal); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }
strong { color: var(--text); font-weight: 600; }

/* 4. Layout
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow { max-width: var(--content-w); }

.section     { padding-block: 5rem; }
.section--lg { padding-block: 7.5rem; }
.section--sm { padding-block: 3.5rem; }
.section--bg   { background: var(--bg); }
.section--navy { background: var(--navy); }
.section--teal { background: var(--teal-bg); }

.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex         { display: flex; }
.flex-center  { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* 5. Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: all var(--t);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,181,164,0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* 6. Navigation
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--t);
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.15;
  transition: color var(--t);
}
.nav:not(.scrolled) .nav__logo-text { color: var(--white); }
.nav.scrolled     .nav__logo-text { color: var(--navy); }
.nav:not(.scrolled) .nav__logo-mark { background: rgba(255,255,255,0.2); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--t), background var(--t);
}
.nav:not(.scrolled) .nav__link { color: rgba(255,255,255,0.88); }
.nav.scrolled     .nav__link { color: var(--text); }
.nav:not(.scrolled) .nav__link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav.scrolled     .nav__link:hover { color: var(--teal); background: var(--bg); }
.nav__link.active { color: var(--teal) !important; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  border: 1px solid var(--border);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-md);
  transition: background var(--t), color var(--t);
}
.nav__dropdown-menu a:hover { background: var(--teal-bg); color: var(--teal-dark); }
.nav__dd-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__dd-icon--blue    { background: #EBF8FF; color: #2B6CB0; }
.nav__dd-icon--teal    { background: var(--teal-bg); color: var(--teal-dark); }
.nav__dd-text-group small { display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 400; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: all var(--t);
}
.nav.scrolled .nav__toggle span { background: var(--navy); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. Hero
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #142548 0%, var(--navy) 45%, #1a4a6e 100%);
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.055;
  background: var(--white);
}
.hero__shape--1 { width: 640px; height: 640px; top: -220px; right: -160px; }
.hero__shape--2 { width: 420px; height: 420px; bottom: -120px; left: -120px; }
.hero__glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,181,164,0.28) 0%, transparent 70%);
  bottom: 5%; right: 8%;
}
/* Subtle grid lines */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative; z-index: 1;
  padding-block: 5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--teal);
}
.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.hero__headline .accent { color: var(--teal); }
.hero__description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__trust-number {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
}
.hero__trust-label { font-size: 0.8125rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.hero__trust-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }

/* Page sub-hero */
.page-hero {
  background: linear-gradient(140deg, #142548 0%, var(--navy) 55%, #1a4a6e 100%);
  padding-block: 5rem;
  padding-top: calc(var(--nav-h) + 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--white);
}
.page-hero__shape--1 { width: 500px; height: 500px; top: -180px; right: -120px; }
.page-hero__shape--2 { width: 280px; height: 280px; bottom: -80px; left: 5%; }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.page-hero__title { color: var(--white); margin-bottom: 1rem; max-width: 600px; }
.page-hero__description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px; line-height: 1.75; margin-bottom: 2rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  margin-top: 2.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--t); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { opacity: 0.4; }

/* 8. Section Headers
   ===================================================== */
.section-header { margin-bottom: 3rem; }
.section-header--center {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--teal);
}
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-eyebrow::before { display: none; }
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-description {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-header--center .section-description { margin-inline: auto; }

/* 9. Service Cards (homepage overview)
   ===================================================== */
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); border-color: var(--teal); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon--finance    { background: #EBF8FF; color: #2B6CB0; }
.service-card__icon--consulting { background: var(--teal-bg); color: var(--teal-dark); }

.service-card__tag {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.service-card__title  { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card__desc   { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-card__list   { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card__list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--text-muted);
}
.service-card__list li::before {
  content: ''; display: block;
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--teal);
  transition: gap var(--t);
}
.service-card__link:hover { gap: 0.875rem; }

/* 10. Feature (Value Prop) Cards
   ===================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.feature-card {
  padding: 2rem;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--t), transform var(--t);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--teal-bg); color: var(--teal-dark);
}
.feature-card__title {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  color: var(--navy); margin-bottom: 0.5rem;
}
.feature-card__desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* 11. Process Steps
   ===================================================== */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.process::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(11,181,164,0.15));
}
.process-step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 1.25rem; font-weight: 700; font-family: var(--font-heading);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--teal-bg);
}
.process-step__title { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step__desc  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* 12. About Preview
   ===================================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.about-preview__image { position: relative; }
.about-preview__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #243d7a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  position: relative;
}
.about-preview__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-preview__initials {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--white);
}
.about-preview__photo-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.about-preview__accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 140px; height: 140px;
  border-radius: var(--r-xl);
  background: var(--teal-bg);
  z-index: -1;
}
.about-preview__badge {
  position: absolute;
  bottom: 1.5rem; left: -2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 210px;
}
.about-preview__badge-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-preview__badge-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.about-preview__badge-sub   { font-size: 0.75rem; color: var(--text-light); }

.cred-list { display: flex; flex-direction: column; gap: 1rem; margin-block: 1.5rem; }
.cred-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.cred-item__icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.cred-item__text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; }
.cred-item__text strong { color: var(--text); }

/* 13. Testimonials
   ===================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: box-shadow var(--t);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card__stars { display: flex; gap: 0.25rem; color: #E5A330; margin-bottom: 1rem; }
.testimonial-card__quote {
  font-size: 0.9375rem; color: var(--text-muted);
  line-height: 1.75; font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--teal-dark); font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9375rem; color: var(--navy); line-height: 1.3; }
.testimonial-card__role { font-size: 0.8125rem; color: var(--text-light); }

/* 14. CTA Banner
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a6e 100%);
  border-radius: var(--r-xl);
  padding: 4rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-banner__circle {
  position: absolute; border-radius: 50%;
  opacity: 0.06; background: var(--white);
}
.cta-banner__circle--1 { width: 320px; height: 320px; top: -110px; right: -60px; }
.cta-banner__circle--2 { width: 220px; height: 220px; bottom: -80px; left: 28%; }
.cta-banner__glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,181,164,0.2) 0%, transparent 70%);
  left: -60px; bottom: -60px;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__eyebrow {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.cta-banner__title    { color: var(--white); margin-bottom: 1rem; }
.cta-banner__desc     {
  color: rgba(255,255,255,0.68); font-size: 1.0625rem;
  max-width: 480px; margin-inline: auto;
  margin-bottom: 2rem; line-height: 1.7;
}
.cta-banner__actions  { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* 15. Blog / Insights Cards
   ===================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card__thumb {
  height: 200px;
  background: linear-gradient(140deg, var(--navy) 0%, #243d7a 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card__thumb-icon { color: rgba(255,255,255,0.15); }
.blog-card__category {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--white); background: var(--teal);
  padding: 0.25rem 0.75rem; border-radius: var(--r-full);
}
.blog-card__body   { padding: 1.5rem; }
.blog-card__meta   { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.375rem; }
.blog-card__title  { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; transition: color var(--t); }
.blog-card:hover .blog-card__title { color: var(--teal-dark); }
.blog-card__excerpt {
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__link {
  font-size: 0.875rem; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: gap var(--t);
}
.blog-card:hover .blog-card__link { gap: 0.5rem; }

/* 16. Contact & Forms
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info__item  { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info__icon  { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--teal-bg); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-info__value { font-size: 0.9375rem; color: var(--text); }

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-box__title { font-size: 1.375rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-box__sub   { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1.75rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }

.form-label  { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-label .req { color: #E53E3E; margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,181,164,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.form-hint  { font-size: 0.8125rem; color: var(--text-light); }
.form-error { font-size: 0.8125rem; color: #E53E3E; display: none; }
.form-group.has-error .form-input,
.form-group.has-error .form-textarea { border-color: #E53E3E; }
.form-group.has-error .form-error { display: block; }

.form-privacy { font-size: 0.8125rem; color: var(--text-light); }
.form-privacy a { color: var(--teal); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto; margin-bottom: 1.25rem;
}
.form-success__title { font-size: 1.375rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success__desc  { color: var(--text-muted); }

/* 17. Footer
   ===================================================== */
.footer { background: #0D1626; color: rgba(255,255,255,0.6); }
.footer__main {
  padding-block: 4.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand .nav__logo-text { color: var(--white); }
.footer__tagline {
  font-size: 0.9375rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-top: 1rem; max-width: 260px;
}
.footer__social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer__social-link {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--t);
}
.footer__social-link:hover { background: var(--teal); color: var(--white); }
.footer__col-title {
  font-size: 0.8125rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link  { font-size: 0.9375rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer__link:hover { color: var(--teal); }
.footer__contact-item {
  display: flex; align-items: flex-start;
  gap: 0.75rem; font-size: 0.9375rem;
  color: rgba(255,255,255,0.5); margin-bottom: 0.875rem;
}
.footer__contact-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy  { font-size: 0.875rem; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.875rem; color: rgba(255,255,255,0.35);
  transition: color var(--t);
}
.footer__legal a:hover { color: var(--teal); }

/* 18. Service Detail Components
   ===================================================== */
.service-list { display: flex; flex-direction: column; gap: 1.25rem; }

.service-item {
  display: flex; gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: box-shadow var(--t), border-color var(--t);
}
.service-item:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.service-item__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--teal-bg); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-item__title { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.375rem; }
.service-item__desc  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* Audience cards */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.audience-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: box-shadow var(--t), transform var(--t);
}
.audience-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.audience-card__icon {
  width: 60px; height: 60px; border-radius: var(--r-lg);
  background: var(--teal-bg); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto; margin-bottom: 1rem;
}
.audience-card__title { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; }
.audience-card__desc  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

/* Stats bar */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); border-radius: var(--r-xl); overflow: hidden;
}
.stats-bar__item { padding: 2rem 1.5rem; text-align: center; position: relative; }
.stats-bar__item + .stats-bar__item::before {
  content: ''; position: absolute; left: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(255,255,255,0.08);
}
.stats-bar__num   { font-size: 2.25rem; font-family: var(--font-heading); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stats-bar__num .accent { color: var(--teal); }
.stats-bar__label { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6;
}
.check-list li::before {
  content: '';
  display: block; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23099487' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 2px;
}

/* Notice / callout block */
.notice {
  background: var(--teal-bg);
  border: 1px solid rgba(11,181,164,0.28);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem; color: var(--text-muted);
}

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col--reversed > *:first-child { order: 2; }
.two-col--reversed > *:last-child  { order: 1; }

/* Inline tag/pill */
.pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.3rem 0.875rem; border-radius: var(--r-full);
}
.pill--teal  { background: var(--teal-light);  color: var(--teal-dark); }
.pill--blue  { background: #EBF8FF; color: #2B6CB0; }
.pill--navy  { background: #e8ecf4; color: var(--navy); }

/* About page bio section */
.bio-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }
.bio-photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy) 0%, #243d7a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.bio-photo__initials {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: var(--white);
}
.bio-photo__label { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.bio-photo__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.bio-photo__badge-text { font-size: 0.875rem; color: var(--white); font-weight: 500; line-height: 1.3; }
.bio-photo__badge-text small { font-size: 0.75rem; opacity: 0.65; display: block; }
.bio-photo__badge-icon { color: var(--teal); flex-shrink: 0; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card {
  padding: 1.5rem;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--white);
}
.value-card__icon { color: var(--teal); margin-bottom: 0.75rem; }
.value-card__title { font-size: 1.0625rem; color: var(--navy); margin-bottom: 0.375rem; }
.value-card__desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* 19. Animations
   ===================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* 20. Responsive
   ===================================================== */
@media (max-width: 1100px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-bar    { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item + .stats-bar__item::before { display: none; }
}

@media (max-width: 900px) {
  .two-col, .about-preview, .bio-layout { grid-template-columns: 1fr; }
  .two-col--reversed > *:first-child { order: 0; }
  .two-col--reversed > *:last-child  { order: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-photo { position: static; }
  .about-preview__badge { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0;
    background: #0D1626;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    z-index: 999;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .nav__links.open      { transform: translateX(0); }
  .nav__link            { font-size: 1.25rem; color: rgba(255,255,255,0.88) !important; padding: 0.75rem 1.5rem; }
  .nav__link:hover      { background: rgba(255,255,255,0.08) !important; color: var(--white) !important; }
  .nav__dropdown-menu   {
    position: static; transform: none;
    opacity: 1; pointer-events: all;
    background: transparent; box-shadow: none; border: none;
    padding: 0;
  }
  .nav__dropdown-menu a { color: rgba(255,255,255,0.65); justify-content: center; }
  .nav__dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
  .nav__dd-icon { display: none; }
  .nav__dd-text-group small { display: none; }
  .nav__links .btn {
    margin-top: 1.5rem; width: 100%; max-width: 280px;
    background: var(--teal); color: var(--white); border-color: var(--teal);
    font-size: 1rem; padding: 0.875rem 1.5rem;
  }

  /* Layouts */
  .service-cards      { grid-template-columns: 1fr; }
  .feature-grid       { grid-template-columns: 1fr; }
  .process            { grid-template-columns: 1fr; }
  .process::before    { display: none; }
  .grid-2, .grid-3    { grid-template-columns: 1fr; }
  .stats-bar          { grid-template-columns: 1fr 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .audience-grid      { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .form-grid          { grid-template-columns: 1fr; }
  .form-group--full   { grid-column: 1; }
  .cta-banner         { padding: 2.5rem 1.5rem; }
  .section            { padding-block: 3.5rem; }
  .section--lg        { padding-block: 5rem; }
  .hero__trust        { flex-wrap: wrap; gap: 1.5rem; }
  .hero__trust-divider { display: none; }
  .footer__main       { grid-template-columns: 1fr; }
  .footer__bottom     { flex-direction: column; text-align: center; }
  .footer__legal      { justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .container { padding-inline: 1rem; }
  .service-card, .cta-banner { padding: 1.5rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .form-box  { padding: 1.5rem; }
}

/* 21. Utilities & Accessibility
   ===================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--teal); color: var(--white);
  padding: 0.75rem 1.5rem; font-weight: 600;
  z-index: 9999; transition: top 0.15s ease;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: var(--r-sm); }

.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── Page-hero small variant (legal / utility pages) ── */
.page-hero--sm {
  padding-block: 3.5rem;
  padding-top: calc(var(--nav-h) + 3.5rem);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.75rem; font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a   { color: rgba(255,255,255,0.75); transition: color var(--t); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep     { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.9); }

/* ── About – bio photo placeholder fill ── */
.bio-photo__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
}

/* ── About – credentials card ── */
.bio-creds {
  margin-top: 1.5rem; padding: 1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.bio-creds__title {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 1rem;
}
.bio-creds__list { display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.bio-creds__list li { display: flex; align-items: center; gap: 0.875rem; }
.bio-creds__list strong {
  display: block; font-size: 0.9375rem; font-weight: 600;
  color: var(--navy); line-height: 1.25;
}
.bio-creds__list span { font-size: 0.8125rem; color: var(--text-muted); }

.bio-cred-badge {
  width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0;
  background: #e8ecf4; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.04em;
}
.bio-cred-badge--teal { background: var(--teal-light); color: var(--teal-dark); }

/* ── About – bio body text & quote ── */
.bio-text {
  font-size: 1.0625rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.bio-quote {
  margin: 2rem 0; padding: 1.5rem 1.75rem 1.5rem 1.75rem;
  background: var(--teal-bg);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.bio-quote p {
  font-family: var(--font-heading); font-size: 1.125rem;
  font-style: italic; color: var(--navy); line-height: 1.65;
}
.bio-quote footer {
  margin-top: 0.75rem; font-size: 0.875rem;
  color: var(--text-muted); font-weight: 500;
}

/* ── Contact page layout ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start;
}
.contact-info__title   { font-size: 1.75rem; color: var(--navy); margin-bottom: 0.75rem; }
.contact-info__intro   { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-info__social  { margin-top: 2rem; }
.contact-info__social p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.625rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; list-style: none; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.9375rem; color: var(--text-muted); }
.contact-details li strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-light); margin-bottom: 0.2rem;
}
.contact-details a { color: var(--navy); transition: color var(--t); }
.contact-details a:hover { color: var(--teal); }
.contact-detail__icon {
  width: 38px; height: 38px; border-radius: var(--r-md); flex-shrink: 0;
  background: var(--teal-bg); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}

/* ── Booking section ── */
.booking-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 3rem; align-items: start; margin-top: 2.5rem;
}
.booking-what__title   { font-size: 1.25rem; color: var(--navy); margin-bottom: 1.25rem; }
.booking-testimonial   {
  margin-top: 2rem; padding: 1.25rem 1.375rem;
  background: var(--teal-bg);
  border-left: 3px solid var(--teal); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.booking-testimonial__quote  { font-size: 0.9375rem; font-style: italic; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.5rem; }
.booking-testimonial__author { font-size: 0.8125rem; color: var(--text-light); font-weight: 500; }

/* ── Form success state ── */
.form-success {
  padding: 2rem; background: var(--teal-bg);
  border: 1px solid rgba(11,181,164,0.25); border-radius: var(--r-lg);
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.form-success__icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.375rem; }
.form-success p  { font-size: 0.9375rem; color: var(--text-muted); }

/* ── Insights – filter controls ── */
.insights-controls { margin-bottom: 2.5rem; }
.insights-filters  { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.filter-btn {
  padding: 0.4375rem 1.125rem;
  font-size: 0.875rem; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: var(--r-full);
  color: var(--text-muted); background: var(--white); cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.filter-btn:hover                    { border-color: var(--teal); color: var(--teal); }
.filter-btn--active,
.filter-btn[aria-pressed="true"]     { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── Blog card image (used in insights, aliases thumb styles) ── */
.blog-card__image {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #243d7a 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card__image--consulting { background: linear-gradient(135deg, #0b3d38 0%, #096b5f 100%); }
.blog-card__image-icon { pointer-events: none; }
.blog-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); background: var(--teal);
  padding: 0.25rem 0.75rem; border-radius: var(--r-full);
}
.blog-card__tag--consulting { background: var(--navy); }

/* ── Newsletter block ── */
.newsletter-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.newsletter-block .section-title { margin-bottom: 0.75rem; }
.newsletter-form        { width: 100%; }
.newsletter-form__row   { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.newsletter-form__row .form-input { flex: 1; }
.newsletter-success     {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--teal-dark);
}

/* ── Legal content (privacy / terms) ── */
.legal-content                 { color: var(--text-muted); }
.legal-content .notice         { margin: 1.5rem 0 2rem; }
.legal-content h2 {
  font-size: 1.25rem; color: var(--navy);
  margin-top: 2.5rem; margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.legal-content h2:first-of-type { margin-top: 1.5rem; }
.legal-content p   { font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul  {
  list-style: disc; padding-left: 1.5rem;
  display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem;
}
.legal-content li  { font-size: 1rem; line-height: 1.7; }
.legal-content a   { color: var(--teal); text-decoration: underline; }
.legal-content a:hover { color: var(--teal-dark); }
.legal-nav {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Badge text color fix — ensure legibility against dark bio-photo background */
.bio-photo__badge strong,
.bio-photo__badge span {
  color: var(--white);
  display: block;
}
.bio-photo__badge strong { font-size: 0.875rem; font-weight: 600; line-height: 1.2; }
.bio-photo__badge span   { font-size: 0.75rem; opacity: 0.65; }

/* ── Responsive additions for new layouts ── */
@media (max-width: 960px) {
  .contact-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .booking-layout  { grid-template-columns: 1fr; }
  .newsletter-block { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .newsletter-form__row { flex-direction: column; }
  .bio-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-photo  { position: static; aspect-ratio: 3/2; }
  .bio-photo__initials { width: 80px; height: 80px; font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .contact-layout { gap: 2rem; }
  .booking-layout { gap: 2rem; }
}
