/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0A1628;
  --navy-light: #0F2040;
  --navy-mid: #132B50;
  --navy-surface: #1A3260;
  --gold: #C9A84C;
  --gold-light: #D4BA6A;
  --gold-dark: #A8893D;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --white: #FFFFFF;
  --off-white: #F5F3EE;
  --gray-100: #E8E6E1;
  --gray-200: #D1CFC9;
  --gray-300: #9A9890;
  --gray-400: #6B6960;
  --gray-500: #4A4840;
  --text-primary: #0A1628;
  --text-secondary: #4A4840;
  --text-light: #9A9890;
  --text-on-dark: #F5F3EE;
  --text-on-dark-muted: #9FAABB;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.14);
  --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.18);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.20);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --max-width: 1240px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; font-size: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8rem; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.font-serif { font-family: var(--font-heading); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--text-on-dark); }
.section-off { background: var(--off-white); }
.section-gradient {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  color: var(--text-on-dark);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-heading);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 9px 22px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: var(--shadow-gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text-on-dark-muted);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  box-shadow: var(--shadow-lg);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(170deg, var(--navy) 0%, #0D1E38 40%, var(--navy-light) 80%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-mid), transparent);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.hero h1 .accent {
  color: var(--gold);
  display: inline;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 760px;
  margin: 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
.search-bar select,
.search-bar input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
  min-width: 0;
}
.search-bar select:focus,
.search-bar input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}
.search-bar select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.search-bar select option { background: var(--navy); color: var(--white); }
.search-bar .btn { flex-shrink: 0; padding: 13px 28px; }

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(10, 22, 40, 0.4);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 8px 0;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 168, 76, 0.2);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-dark .section-header p {
  color: var(--text-on-dark-muted);
}

/* ===== EXECUTIVE CARDS ===== */
.exec-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  cursor: pointer;
  overflow: hidden;
}
.exec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.exec-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.12), var(--shadow-md);
  transform: translateY(-3px);
}
.exec-card:hover::before { opacity: 1; }
.exec-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.exec-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.exec-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.exec-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.exec-company {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.exec-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.exec-location i { font-size: 0.72rem; color: var(--gold); }
.exec-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.exec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.exec-tag {
  padding: 4px 10px;
  background: var(--off-white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Dark variant of exec cards */
.section-dark .exec-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section-dark .exec-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
}
.section-dark .exec-info h4 { color: var(--white); }
.section-dark .exec-company { color: var(--text-on-dark-muted); }
.section-dark .exec-location { color: var(--text-on-dark-muted); }
.section-dark .exec-bio { color: var(--text-on-dark-muted); }
.section-dark .exec-tag {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
}

/* ===== ROLE CARDS ===== */
.role-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-base);
  text-align: center;
  cursor: pointer;
}
.role-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1);
}
.role-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}
.role-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.role-card .role-count {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.role-card p {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.25;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 2;
}
.step-item h3 { margin-bottom: 10px; }
.step-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.testimonial-title {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}
.cta-banner h2 { margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p {
  color: var(--text-on-dark-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark-muted);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-base);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}
.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 0.9rem; color: var(--text-light); font-family: var(--font-body); font-weight: 400; }
.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-features li i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.pricing-features li.disabled {
  color: var(--gray-300);
}
.pricing-features li.disabled i {
  color: var(--gray-200);
}

/* ===== BROWSE / DIRECTORY ===== */
.browse-hero {
  padding: 120px 0 40px;
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.browse-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}
.browse-hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
}
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-bar select,
.filter-bar input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition-fast);
  min-width: 160px;
}
.filter-bar select:focus,
.filter-bar input:focus {
  border-color: var(--gold);
}
.filter-bar input { flex: 1; min-width: 200px; }
.results-count {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-left: auto;
  white-space: nowrap;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  padding: 40px 0;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: fadeInUp 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.modal-close:hover { background: var(--gray-100); }
.modal-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding-right: 36px;
}
.modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.modal-header h3 { font-size: 1.4rem; margin-bottom: 2px; }
.modal-body h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  margin-top: 20px;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.modal-tag {
  padding: 5px 12px;
  background: var(--off-white);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: #0A66C2;
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.modal-linkedin:hover { background: #004182; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.about-content h2 {
  margin-bottom: 18px;
  margin-top: 48px;
  color: var(--text-primary);
}
.about-content h2:first-child { margin-top: 0; }
.about-content h3 {
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}
.about-content p {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content ul {
  margin: 16px 0;
  padding-left: 24px;
}
.about-content ul li {
  list-style: disc;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 6px;
}
.about-content strong {
  color: var(--navy);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}
.value-card {
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
}
.blog-card-body {
  padding: 24px;
}
.blog-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.blog-card:hover .blog-card-body h3 { color: var(--gold-dark); }
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== VERIFIED BADGE ===== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.verified-badge i { font-size: 0.65rem; }

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}
.no-results i {
  font-size: 3rem;
  color: var(--gray-200);
  margin-bottom: 16px;
}
.no-results h3 { margin-bottom: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 40px 16px 30px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .search-bar { flex-direction: column; }
  .search-bar select,
  .search-bar input { width: 100%; }
  .stats-inner { gap: 20px; }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .directory-grid { grid-template-columns: 1fr; }
  .filter-bar-inner { flex-direction: column; }
  .filter-bar select,
  .filter-bar input { width: 100%; min-width: auto; }
  .results-count { margin-left: 0; }
  .modal-content { padding: 28px 20px; }
  .role-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .stat-item { min-width: 40%; }
  .role-cards-grid { grid-template-columns: 1fr !important; }
}

/* Role cards grid specific */
.role-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.role-cards-grid .role-card:nth-child(n+5) {
  /* second row of 3 centered */
}
/* Center last row items */
.role-cards-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: calc(75% - 5px);
  margin: 20px auto 0;
}

@media (max-width: 1024px) {
  .role-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .role-cards-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* ===== ARTICLE PAGE ===== */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}
.breadcrumb a {
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb .current { color: var(--gold-light); }

.article-hero {
  padding: 120px 0 50px;
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.article-hero .container { max-width: 820px; }
.article-hero .article-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  flex-wrap: wrap;
}
.article-meta i {
  margin-right: 5px;
  color: var(--gold);
  font-size: 0.8rem;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 24px 60px;
}
.article-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--navy);
}
.article-body h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--navy);
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  margin: 18px 0;
  padding-left: 28px;
}
.article-body ul li, .article-body ol li {
  list-style: disc;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.article-body .callout-box {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.03), rgba(201, 168, 76, 0.06));
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.article-body .callout-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.article-body .callout-box p { margin-bottom: 8px; }
.article-body .callout-box ul { margin: 8px 0; }

.article-cta-box {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 48px 0;
  text-align: center;
  color: var(--white);
}
.article-cta-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-top: 0;
}
.article-cta-box p {
  color: var(--text-on-dark-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.article-cta-box .btn { margin: 0 8px 8px; }

.related-articles {
  padding: 60px 0;
  background: var(--off-white);
}
.related-articles .section-header { margin-bottom: 36px; }
.related-articles .blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Blog index filter tags */
.blog-filter-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.blog-filter-tag {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--gray-100);
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.blog-filter-tag:hover, .blog-filter-tag.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.06);
}

@media (max-width: 768px) {
  .article-hero { padding: 100px 0 36px; }
  .article-body { padding: 36px 16px 48px; }
  .article-meta { gap: 12px; }
  .article-cta-box { padding: 28px 20px; }
  .article-cta-box .btn { display: block; margin: 8px auto; max-width: 280px; }
  .related-articles .blog-grid { grid-template-columns: 1fr; }
}
