/* ============================================================
   FIT FOR PURPOSE QUALITY — GSK-Inspired Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --orange:       #f36633;
  --orange-dark:  #f25218;
  --orange-pale:  #fef3ee;
  --dark:         #151515;
  --dark-mid:     #262626;
  --dark-soft:    #3a3a3a;
  --text:         #151515;
  --text-mid:     #72635d;
  --text-light:   #878280;
  --light:        #f0efed;
  --light-warm:   #f7f6f4;
  --border:       #e5e3e0;
  --white:        #ffffff;
  --green:        #5ba835;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 2px 16px rgba(0,0,0,0.09);
  --shadow-lg:    0 4px 32px rgba(0,0,0,0.12);
  --radius:       8px;
  --radius-lg:    12px;
  --trans:        0.2s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', arial, helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 400; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 400; }
h3 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 0.85rem; }
.section-lead {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.bg-light { background: var(--light-warm); }
.bg-warm { background: var(--light); }
.bg-dark { background: var(--dark-mid); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--trans);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-navy:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}
.btn-text {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--trans);
}
.btn-text:hover { gap: 0.7rem; }

/* ─── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--trans);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.nav-logo img {
  height: 64px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: var(--radius);
  transition: all var(--trans);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--trans);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after { display: none; }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-pale);
  border: 1px solid rgba(243,102,51,0.25);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}
.hero h1 strong {
  font-weight: 700;
  color: var(--orange);
}
.hero-lead {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 0.72rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll i { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  border-bottom: none;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-number span { color: var(--white); }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: var(--orange);
}
.service-card:nth-child(2) .service-icon,
.service-card:nth-child(3) .service-icon {
  background: var(--orange-pale);
  color: var(--orange);
}
.service-card h3 { margin-bottom: 0.6rem; color: var(--dark); }
.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--trans);
}
.service-link:hover { gap: 0.7rem; }

/* ─── About Section ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
  padding: 2rem;
}
.about-img-placeholder i { font-size: 4rem; margin-bottom: 1rem; display: block; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong { display: block; font-size: 1.75rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 0.75rem; opacity: 0.85; }
.about-content .section-lead { max-width: 100%; margin-bottom: 1.5rem; }
.about-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-list li i { color: var(--orange); margin-top: 0.25rem; flex-shrink: 0; }

/* ─── Standards Band ──────────────────────────────────────── */
.standards-band {
  background: var(--dark);
  padding: 3rem 0;
}
.standards-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 1.5rem;
}
.standards-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.std-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.std-pill:hover {
  background: rgba(243,102,51,0.2);
  border-color: rgba(243,102,51,0.4);
  color: var(--orange);
}

/* ─── Why Choose Us ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card { text-align: center; padding: 1.5rem 1rem; }
.why-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--orange);
  transition: all var(--trans);
}
.why-card:nth-child(2) .why-icon,
.why-card:nth-child(3) .why-icon,
.why-card:nth-child(4) .why-icon {
  background: var(--orange-pale);
  color: var(--orange);
}
.why-card:hover .why-icon {
  background: var(--orange);
  color: var(--white);
}
.why-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; }

/* ─── Team Section ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.team-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-info p { font-size: 0.875rem; margin-bottom: 1.25rem; }
.team-creds { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cred-tag {
  background: var(--light);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--dark-mid);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 { color: var(--white); font-weight: 400; margin-bottom: 1rem; }
.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-contact-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.cta-contact-item i { color: var(--orange); }
.cta-contact-item a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--trans);
}
.cta-contact-item a:hover { color: var(--orange); }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: var(--dark-mid);
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,70 40,90 2,70 2,22' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.page-hero .section-label { color: var(--orange); }
.page-hero h1 { color: var(--white); font-weight: 400; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.6rem; }

/* ─── Content Sections ───────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.content-list-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.content-list-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.content-list-item .item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}
.content-list-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--dark); }
.content-list-item p { font-size: 0.85rem; }

/* ─── Audit Grid ─────────────────────────────────────────── */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.audit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--trans);
}
.audit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.audit-card .audit-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.audit-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.audit-card p { font-size: 0.85rem; }

/* ─── Geo Coverage ───────────────────────────────────────── */
.geo-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.geo-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-pale);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
}
.geo-tag i { color: var(--orange); font-size: 0.72rem; }

/* ─── Training Cards ─────────────────────────────────────── */
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.training-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
}
.training-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.training-card .card-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.training-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.training-card p { font-size: 0.875rem; margin-bottom: 1.25rem; }
.training-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.meta-tag i { color: var(--orange); }

/* ─── Enquiry Box ────────────────────────────────────────── */
.enquiry-box {
  background: var(--light-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.enquiry-box h3 { margin-bottom: 0.75rem; }
.enquiry-box p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ─── Contact Items ──────────────────────────────────────── */
.contact-row { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}
.contact-item span { display: block; font-size: 0.7rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.contact-item a, .contact-item p { font-size: 0.875rem; color: var(--dark); font-weight: 500; margin: 0; }
.contact-item a:hover { color: var(--orange); }

/* ─── Consultant Profile ─────────────────────────────────── */
.consultant-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.consultant-photo-wrap {
  position: sticky;
  top: 100px;
}
.consultant-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: var(--light);
}
.consultant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.consultant-sidebar {
  margin-top: 1.5rem;
  background: var(--light-warm);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.consultant-sidebar h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.exp-tag {
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.consultant-bio h2 { margin-bottom: 0.25rem; font-weight: 400; }
.consultant-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}
.bio-section { margin-bottom: 2rem; }
.bio-section h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.bio-section p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.bio-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.bio-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.bio-section ul li i { color: var(--orange); margin-top: 0.2rem; flex-shrink: 0; }

/* ─── Divider ────────────────────────────────────────────── */
.divider {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 0.85rem 0 1.5rem;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: all var(--trans);
}
.social-btn:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-contact-item i { color: var(--orange); margin-top: 0.2rem; flex-shrink: 0; width: 14px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--trans); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--orange); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .consultant-profile { grid-template-columns: 240px 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .nav-menu.open a { padding: 0.9rem 1rem; display: block; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-menu.open .nav-cta { display: block; margin: 1rem 0 0; border-bottom: none; }
  .nav-menu.open .nav-cta a { border-bottom: none; }
  .hero { min-height: auto; padding: 100px 0 56px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-scroll { display: none; }
  .hero-inner { margin-top: 15%; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .audit-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .consultant-profile { grid-template-columns: 1fr; }
  .consultant-photo-wrap { position: static; max-width: 260px; }
  .consultant-photo { aspect-ratio: 1/1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; }
  .cta-actions { flex-direction: column; align-items: center; }
}
