/* ============================================================
   DIANA BOMBOKO — Brand Stylesheet
   Palette: Deep Navy #0D1F3C | Warm Ivory #F8F4EE |
            Soft White #FFFFFF | Muted Gold #B89140 |
            Warm Terracotta #C26748
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

:root {
  --navy: #0D1F3C;
  --navy-light: #162d52;
  --ivory: #F8F4EE;
  --white: #FFFFFF;
  --gold: #B89140;
  --gold-light: #d4aa5a;
  --terra: #C26748;
  --terra-light: #d97d60;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9a9a9a;
  --gray-600: #555555;
  --gray-800: #222222;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(13, 31, 60, 0.08);
  --shadow-md: 0 4px 24px rgba(13, 31, 60, 0.12);
  --shadow-lg: 0 8px 48px rgba(13, 31, 60, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-terra { color: var(--terra); }
.text-navy { color: var(--navy); }
.text-ivory { color: var(--ivory); }
.text-white { color: var(--white); }

/* ── Layout Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-navy { background: var(--navy); }
.section-ivory { background: var(--ivory); }
.section-gold { background: var(--gold); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ── Section Headers ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1.5rem; }
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider-left { margin: 1.5rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(184, 145, 64, 0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184, 145, 64, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-terra {
  background: var(--terra);
  color: var(--white);
}
.btn-terra:hover {
  background: var(--terra-light);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-lang {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.nav-lang:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Nav ── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.5rem;
}
#mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.97) 0%, rgba(13,31,60,0.82) 60%, rgba(194,103,72,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-portrait {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,145,64,0.3);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,145,64,0.08), transparent);
}
.hero-portrait i {
  font-size: 4rem;
  color: rgba(184,145,64,0.35);
  position: relative;
  z-index: 1;
}
.hero-portrait span { position: relative; z-index: 1; }

/* ── Credibility Bar ── */
.cred-bar {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cred-item i {
  font-size: 1.2rem;
  color: var(--gold);
}
.cred-item-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  font-family: var(--font-head);
  line-height: 1.2;
}
.cred-item-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-body { padding: 2rem; }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(184,145,64,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon i {
  font-size: 1.3rem;
  color: var(--gold);
}
.card-icon.terra { background: rgba(194,103,72,0.1); }
.card-icon.terra i { color: var(--terra); }
.card-icon.navy { background: rgba(13,31,60,0.08); }
.card-icon.navy i { color: var(--navy); }
.card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p { font-size: 0.9rem; color: var(--gray-600); }

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--terra);
}
.service-card h4 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.05rem; }
.service-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}
.service-card ul li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Package Cards ── */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,145,64,0.2), var(--shadow-md);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.package-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.package-card .package-sub {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.package-card ul { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.package-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}
.package-card ul li i { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; font-size: 0.7rem; }

/* ── Lifecycle ── */
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.lifecycle-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}
.lifecycle-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--terra);
}
.lifecycle-item:nth-child(odd) { border-bottom-color: var(--gold); }
.lifecycle-item:nth-child(even) { border-bottom-color: var(--terra); }
.lifecycle-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.4rem;
}
.lifecycle-icon {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.lifecycle-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  display: block;
}

/* ── Methodology ── */
.method-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--terra));
}
.method-step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
  padding-top: 5.5rem;
}
.method-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  z-index: 1;
}
.method-circle i { font-size: 1.2rem; color: var(--gold); }
.method-step-num {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
}
.method-step h5 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.method-step p {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin: 0;
}

/* ── Philosophy ── */
.philosophy-flow {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.philosophy-step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.philosophy-box {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 180px;
  max-width: 200px;
}
.philosophy-box i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.philosophy-box strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.philosophy-box span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.philosophy-arrow {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── Journey / Digitalisation ── */
.journey-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.journey-step:last-child { border-bottom: none; }
.journey-num {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}
.journey-content h4 { color: var(--navy); margin-bottom: 0.4rem; }
.journey-content p { font-size: 0.9rem; margin: 0; }
.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0.5rem 0;
}

/* ── Performance Cycle ── */
.perf-cycle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.perf-item {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 140px;
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
}
.perf-item i { font-size: 1.2rem; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.perf-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0.5rem;
}

/* ── Audience Grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.audience-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.audience-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.audience-item i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.audience-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: block;
}

/* ── Principles ── */
.principle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.principle-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.principle-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.principle-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.principle-card p { font-size: 0.88rem; margin: 0; }

/* ── Training ── */
.training-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.training-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.training-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.training-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.training-card p { font-size: 0.84rem; margin-bottom: 0.75rem; }
.training-tag {
  display: inline-block;
  background: rgba(184,145,64,0.1);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}
.format-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.format-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.format-card h5 { color: var(--navy); margin-bottom: 0.35rem; font-size: 0.95rem; }
.format-card p { font-size: 0.8rem; margin: 0; }

/* ── AtineHR ── */
.atinehr-feature {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.atinehr-feature::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(184,145,64,0.08);
}
.atinehr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,145,64,0.15);
  border: 1px solid rgba(184,145,64,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* ── Forms ── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-label .required { color: var(--terra); }
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,64,0.12);
}
.form-control.error { border-color: var(--terra); }
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23555'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,64,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
}
.form-checkbox span {
  font-size: 0.88rem;
  color: var(--gray-600);
}
.form-error {
  font-size: 0.78rem;
  color: var(--terra);
  margin-top: 0.35rem;
  display: none;
}
.form-error.show { display: block; }
.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.35rem;
}

/* ── Notification ── */
.notification {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  max-width: 380px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  z-index: 2000;
  box-shadow: var(--shadow-md);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.notification.show { transform: translateX(0); }
.notification.success { background: #2e7d32; }
.notification.error { background: var(--terra); }
.notification i { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,0.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: transform var(--transition);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.25rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--navy); }
.modal-header {
  margin-bottom: 1.5rem;
  position: relative;
  padding-right: 2rem;
}
.modal-header h3 { font-size: 1.4rem; color: var(--navy); }
.modal-header p { font-size: 0.88rem; color: var(--gray-600); margin-top: 0.35rem; }

/* ── Resource Cards ── */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.resource-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}
.resource-type.guide { background: rgba(184,145,64,0.1); color: var(--gold); }
.resource-type.template { background: rgba(13,31,60,0.08); color: var(--navy); }
.resource-type.checklist { background: rgba(194,103,72,0.1); color: var(--terra); }
.resource-type.framework { background: rgba(46,125,50,0.1); color: #2e7d32; }
.resource-card h4 { color: var(--navy); font-size: 1rem; }
.resource-card p { font-size: 0.85rem; margin: 0; flex: 1; }
.resource-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.resource-meta { font-size: 0.75rem; color: var(--gray-400); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover;
  opacity: 0.07;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .page-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(184,145,64,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(194,103,72,0.06);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 2rem; position: relative; z-index: 1; font-size: 1.1rem; }
.cta-section .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── Disclaimer ── */
.disclaimer-box {
  background: rgba(194,103,72,0.08);
  border: 1px solid rgba(194,103,72,0.25);
  border-left: 4px solid var(--terra);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.disclaimer-box i { color: var(--terra); flex-shrink: 0; margin-top: 0.15rem; }
.info-box {
  background: rgba(13,31,60,0.04);
  border: 1px solid rgba(13,31,60,0.12);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ── Stat Cards ── */
.stat-card {
  text-align: center;
  padding: 2rem;
}
.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── About Biography ── */
.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.bio-portrait {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-400);
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem;
  border: 2px dashed var(--gray-200);
  position: relative;
}
.bio-portrait i { font-size: 3.5rem; color: rgba(184,145,64,0.35); }
.bio-portrait span { color: var(--gray-400); font-size: 0.78rem; }
.bio-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.bio-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
}
.bio-tag i { color: var(--gold); width: 16px; }

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 7px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.timeline-role {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.timeline-org {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.35rem;
}
.timeline-desc { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(184,145,64,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: var(--gold); font-size: 1rem; }
.contact-info-text strong { display: block; font-size: 0.82rem; color: var(--gray-400); font-weight: 500; margin-bottom: 0.2rem; }
.contact-info-text span { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.placeholder-tag {
  display: inline-block;
  background: rgba(194,103,72,0.1);
  color: var(--terra);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.25rem 0 1rem;
}
.footer-bio { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-col h6 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }
.footer-tech {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding-bottom: 1rem;
}
.footer-tech a { color: var(--gold); transition: color var(--transition); }
.footer-tech a:hover { color: var(--gold-light); }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.1);
}
#cookie-banner.show { display: flex; }
#cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin: 0; flex: 1; min-width: 200px; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ── Mobile CTA Bar ── */
#mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  padding: 0.875rem 1.5rem;
  z-index: 900;
  text-align: center;
}
#mobile-cta a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 404 ── */
.not-found {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found-code {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

/* ── Legal Pages ── */
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.35rem; }
.legal-content p { font-size: 0.9rem; }

/* ── Loading Spinner ── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-grid { grid-template-columns: repeat(4, 1fr); }
  .method-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .method-steps::before { display: none; }
  .method-step { padding-top: 1.5rem; }
  .method-circle { position: relative; top: unset; left: unset; transform: none; margin: 0 auto 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-portrait { aspect-ratio: 4/3; max-width: 360px; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }
  .nav-menu, .nav-actions .nav-lang { display: none; }
  .nav-cta.nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  #mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { display: none; }
  .cred-bar { gap: 1.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .lifecycle-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .philosophy-flow { gap: 0.25rem; }
  .philosophy-box { min-width: 140px; padding: 1rem; }
  .page-hero { padding: 6rem 0 3rem; }
  .atinehr-feature { padding: 2rem; }
}

@media (max-width: 480px) {
  .lifecycle-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-section .btn-group { align-items: center; }
  .cred-bar { flex-direction: column; gap: 1rem; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .philosophy-flow { flex-direction: column; align-items: stretch; }
  .philosophy-arrow { transform: rotate(90deg); text-align: center; }
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form-main,
.contact-form-header {
  background: var(--white);
  border-radius: var(--radius);
}
.contact-form-header {
  margin-bottom: 0;
  padding: 0;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-info-card.highlight-card {
  border-left: 3px solid var(--gold);
}
.sidebar-heading {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-heading i { color: var(--gold); }
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.sidebar-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.sidebar-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.lang-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.lang-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.atinehr-sidebar-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3660 100%);
  color: var(--white);
  border: none;
}
.atinehr-sidebar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,145,64,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}
.atinehr-sidebar-card p { color: rgba(255,255,255,0.85); }
.atinehr-sidebar-card a { color: var(--gold); }

.general-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.form-note i { color: var(--navy); margin-top: 2px; flex-shrink: 0; }
.required { color: var(--terracotta); font-size: 0.85em; }
.optional { color: var(--text-muted); font-size: 0.82em; font-style: italic; }

/* ═══════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════ */
.legal-section .container {
  max-width: 820px;
}
.legal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
@media (max-width: 768px) {
  .legal-content { padding: 1.75rem 1.25rem; }
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-heading);
}
.legal-content h2:first-of-type { margin-top: 1.5rem; }
.legal-content h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-heading);
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-body);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content a:hover { color: var(--terracotta); }
.legal-content code {
  background: var(--ivory);
  border: 1px solid var(--border-light);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: monospace;
  color: var(--navy);
}

.legal-notice-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.legal-notice-box i {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-notice-box p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-body);
}

.legal-block {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border-light);
}
.legal-block p { margin: 0; font-size: 0.93rem; }

.legal-nav-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

/* Disclaimer highlight box */
.disclaimer-highlight-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff8ee;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}
.disclaimer-icon {
  font-size: 1.75rem;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer-highlight-box h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.disclaimer-highlight-box p { margin: 0; font-size: 0.93rem; line-height: 1.7; color: var(--text-body); }

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.cookie-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.cookie-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: top;
  line-height: 1.55;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--ivory); }

/* Placeholder badge (used across pages) */
.placeholder-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: monospace;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  padding: 0.1em 0.5em;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================================
   BOMBOKO HERITAGE SECTION
   ============================================================ */
.bomboko-heritage-section {
  background: linear-gradient(135deg, #0a1a30 0%, var(--navy) 60%, #0f2240 100%);
  border-top: 1px solid rgba(184,145,64,0.2);
  border-bottom: 1px solid rgba(184,145,64,0.2);
  position: relative;
  overflow: hidden;
}
.bomboko-heritage-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,145,64,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.heritage-inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: center;
}
.heritage-crest {
  text-align: center;
}
.heritage-crest-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(184,145,64,0.08);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}
.heritage-crest-circle::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(184,145,64,0.35);
}
.heritage-crest-icon {
  font-size: 4rem;
  color: var(--gold);
}
.heritage-crest-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.heritage-crest-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.heritage-content .section-label {
  color: var(--gold);
}
.heritage-content h2.section-title {
  color: var(--white);
}
.heritage-quote-block {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  background: rgba(184,145,64,0.06);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.heritage-quote-block p {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}
.heritage-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.heritage-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-top: 0.75rem;
  transition: gap 0.25s;
}
.heritage-link-btn:hover { gap: 0.9rem; color: var(--gold); }

@media (max-width: 768px) {
  .heritage-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .heritage-crest { display: none; }
}

/* ============================================================
   CONGO ADVISORY SECTION (Home page teaser)
   ============================================================ */
.congo-section {
  background: var(--ivory);
  border-top: 3px solid var(--terracotta);
  padding: 5rem 0;
}
.congo-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.congo-flag-accent {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #009A44 33%, #FBDE4A 33% 66%, #CE1021 66%);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.congo-content .section-label { color: var(--terracotta); }
.congo-content h2.section-title { color: var(--navy); }
.congo-content p { color: #4a5568; line-height: 1.8; margin-bottom: 0.9rem; }
.congo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-top: 0.75rem;
  transition: gap 0.25s;
}
.congo-link-btn:hover { gap: 0.9rem; color: var(--terracotta); }
.congo-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.congo-stat-card {
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.congo-stat-card:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.09); }
.congo-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(194,103,72,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.congo-stat-icon i { font-size: 1.2rem; color: var(--terracotta); }
.congo-stat-text strong { display: block; font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.congo-stat-text span { font-size: 0.8rem; color: #6b7280; }

@media (max-width: 768px) {
  .congo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   NAVBAR LOGO IMAGE
   ============================================================ */
.logo-nav-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 220px;
  object-fit: contain;
}

/* ============================================================
   CONGO.HTML PAGE — Hero + Sectors + Advisory
   ============================================================ */
.congo-page-hero {
  background: linear-gradient(135deg, #0a1a30 0%, var(--navy) 70%);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.congo-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1564760290292-23341e4df6ec?w=1600&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.congo-page-hero-flag {
  display: flex;
  gap: 6px;
  margin-bottom: 1.75rem;
}
.flag-stripe {
  height: 6px;
  border-radius: 3px;
  flex: 1;
}
.flag-green { background: #009A44; }
.flag-yellow { background: #FBDE4A; }
.flag-red { background: #CE1021; }
.congo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.congo-hero-text .hero-label { color: var(--gold); }
.congo-hero-text h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); line-height: 1.2; margin-bottom: 1.25rem; }
.congo-hero-text h1 span { color: var(--terracotta); }
.congo-hero-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.congo-diplomat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,145,64,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
.congo-diplomat-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(184,145,64,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.congo-diplomat-icon i { font-size: 2.5rem; color: var(--gold); }
.congo-diplomat-card h3 { color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.5rem; }
.congo-diplomat-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; }
.congo-diplomat-card .diplomat-tag { display: inline-block; background: rgba(184,145,64,0.15); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 20px; padding: 0.3rem 0.85rem; margin-top: 0.9rem; border: 1px solid rgba(184,145,64,0.3); }

@media (max-width: 768px) {
  .congo-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .congo-diplomat-card { display: none; }
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.sector-card {
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); border-color: var(--terracotta); }
.sector-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(194,103,72,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.sector-icon i { font-size: 1.4rem; color: var(--terracotta); }
.sector-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.sector-card p { font-size: 0.83rem; color: #6b7280; line-height: 1.6; margin: 0; }

@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sector-grid { grid-template-columns: 1fr; } }

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.positioning-card {
  background: rgba(184,145,64,0.06);
  border: 1px solid rgba(184,145,64,0.2);
  border-radius: 12px;
  padding: 1.75rem;
}
.positioning-card i { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 0.85rem; }
.positioning-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.positioning-card p { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

@media (max-width: 900px) { .positioning-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .positioning-grid { grid-template-columns: 1fr; } }
