@import url("../../../shared/css/design-tokens.css");

:root {
  --primary: #0f2f4f;
  --primary-dark: #091f34;
  --primary-light: #1d4d78;
  --accent: #d11717;
  --accent-light: #e14a4a;
  --gold: #d4a843;
  --gold-light: #e8c76a;
  --banner-height: var(--wg-banner-height);
  --navbar-height: var(--wg-navbar-height);
  --content-width: var(--wg-content-width);
  --white: #ffffff;
  --gray-100: #e4ebf2;
  --gray-400: #8291a4;
  --gray-600: #566577;
  --gray-800: #1f2d3d;
  --dark: #0b1420;
  --shadow-sm: var(--wg-shadow-sm);
  --shadow-md: var(--wg-shadow-lg);
  --shadow-lg: var(--wg-shadow-xl);
  --transition: var(--wg-transition-smooth);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--wg-font-alt-body);
  color: var(--gray-800);
  background:
    radial-gradient(circle at top left, rgba(214, 166, 76, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
  line-height: var(--wg-line-height-relaxed);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding-top: var(--navbar-height);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--wg-font-alt-heading);
  color: var(--primary);
  line-height: var(--wg-line-height-tight);
  font-weight: var(--wg-font-weight-bold);
  letter-spacing: -0.03em;
}
p { color: var(--gray-600); font-size: var(--wg-font-size-base); line-height: var(--wg-line-height-normal); }
body,
p,
li,
span {
  font-weight: 400;
}
a { font-weight: inherit; }
.container {
  width: min(100% - 36px, var(--content-width));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--wg-radius-pill);
  font-family: var(--wg-font-alt-heading);
  font-weight: var(--wg-font-weight-bold);
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover,
.btn-accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline,
.btn-outline-dark { background: transparent; border: 1.5px solid currentColor; }
.btn-outline { color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark { color: var(--primary); border-color: rgba(15, 47, 79, 0.18); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.site-banner {
  position: relative;
  z-index: 900;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  min-height: var(--banner-height);
}
.site-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--banner-height);
  padding: 6px 0;
}
.site-banner-link { color: var(--gold-light); font-weight: 700; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  min-height: var(--navbar-height);
  padding: 8px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(9, 31, 52, 0.08);
}
.navbar.scrolled {
  top: 0;
  padding: 8px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-logo img { height: 66px; width: auto; max-width: min(32vw, 360px); }
.nav-logo-text { display: none; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.nav-links a {
  position: relative;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gray-800);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--gray-800); }
.nav-links .nav-cta,
.nav-links .nav-group-link {
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
}
.nav-links .nav-group-link { border: 1px solid rgba(15, 47, 79, 0.15); }
.navbar.scrolled .nav-links .nav-group-link { border-color: rgba(15, 47, 79, 0.15); }
.nav-cta::after,
.nav-group-link::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--primary); }

.hero,
.page-hero { position: relative; overflow: hidden; }
.hero {
  min-height: calc(100vh - (var(--banner-height) + var(--navbar-height)));
  display: flex;
  align-items: center;
  padding: 28px 0 74px;
}
.page-hero { padding: 72px 0 88px; }
.hero-bg,
.page-hero-bg { position: absolute; inset: 0; }
.hero-bg img,
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.06) 0%, rgba(8, 18, 32, 0.22) 100%),
    linear-gradient(120deg, rgba(7, 17, 30, 0.14) 0%, rgba(7, 17, 30, 0.08) 100%);
}
.page-hero::before {
  background:
    linear-gradient(110deg, rgba(15, 38, 71, 0.9) 0%, rgba(27, 58, 107, 0.74) 46%, rgba(27, 58, 107, 0.44) 100%),
    linear-gradient(180deg, rgba(15, 38, 71, 0.18) 0%, rgba(15, 38, 71, 0.58) 100%);
}
.hero .container,
.page-hero .container { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.hero-content {
  min-width: 0;
  width: min(100%, 1200px);
  max-width: 1200px;
  padding: 22px 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(16, 18, 28, 0.58) 0%, rgba(18, 21, 31, 0.34) 48%, rgba(14, 18, 28, 0.28) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(8, 16, 28, 0.28);
}
.hero-tag,
.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-tag {
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.28);
  color: var(--gold-light);
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero h1 {
  max-width: 1080px;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.hero h1 span { color: var(--gold-light); }
.hero p,
.page-hero p { color: rgba(255, 255, 255, 0.82); }
.hero p {
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  max-width: 980px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  line-height: 1.58;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}
.hero-buttons,
.cta-buttons,
.profile-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-buttons { justify-content: flex-start; }
.hero-buttons .btn {
  min-height: 48px;
  padding-inline: 22px;
}
.cta-buttons {
  justify-content: center;
  align-items: center;
}
.hero-panel-icon,
.insight-icon,
.value-card-icon,
.accred-icon,
.company-link-icon,
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 47, 79, 0.08);
}
.profile-hero-panel { min-width: 0; }
.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(34, 45, 62, 0.86), rgba(34, 45, 62, 0.86));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 16px 18px 10px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.stat-label { font-size: 0.68rem; color: rgba(255, 255, 255, 0.72); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }

.section { padding: 96px 0; }
.section-surface { background: var(--white); }
.section-muted { background: linear-gradient(180deg, rgba(238, 243, 248, 0.72) 0%, rgba(244, 247, 250, 0.96) 100%); }
.section-header { text-align: center; margin-bottom: 58px; }
.section-tag,
.eyebrow { background: rgba(214, 166, 76, 0.14); color: #9c7429; margin-bottom: 18px; }
.section-header h2 { font-size: clamp(1.95rem, 3.5vw, 2.75rem); margin-bottom: 14px; }
.section-header p { max-width: 680px; margin: 0 auto; font-size: 0.96rem; font-weight: 500; }
.section-divider {
  width: 68px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  margin: 18px auto 0;
  border-radius: 999px;
}

.proof-strip .section-header {
  margin-bottom: 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.proof-card {
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.96));
  border: 1px solid rgba(15, 47, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(214, 166, 76, 0.14);
  color: #9c7429;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.proof-card p {
  margin: 0;
}

.spotlight-grid,
.about-grid,
.mission-vision,
.company-link-card { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.spotlight-copy h2,
.about-text h2 { font-size: clamp(1.85rem, 3.25vw, 2.35rem); margin-bottom: 18px; }
.spotlight-copy p,
.about-text p { margin-bottom: 16px; }
.spotlight-metrics,
.services-grid,
.insight-grid,
.capability-grid,
.values-grid,
.accreditation-grid { display: grid; gap: 24px; }
.spotlight-metrics { grid-template-columns: repeat(3, 1fr); margin: 28px 0 34px; }
.spotlight-metric,
.service-card,
.insight-card,
.mv-card,
.value-card,
.team-card,
.accred-card,
.capability-card,
.industry-card,
.company-link-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 47, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.spotlight-metric,
.insight-card,
.mv-card,
.value-card,
.accred-card,
.capability-card { border-radius: 10px; padding: 28px; }
.spotlight-metric strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.65rem; color: var(--primary); }
.spotlight-metric span { font-size: 0.84rem; font-weight: 800; }
.spotlight-media { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; }
.media-card,
.media-stack img,
.about-image { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-card { position: relative; min-height: 520px; }
.media-card img,
.media-stack img,
.service-card-img img,
.about-image img,
.industry-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(9, 31, 52, 0) 0%, rgba(9, 31, 52, 0.72) 100%);
}
.media-card-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; color: var(--white); z-index: 2; }
.media-stack { display: grid; gap: 18px; }
.media-stack img { height: 251px; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.service-card { border-radius: 10px; overflow: hidden; }
.service-card-img { height: 240px; overflow: hidden; }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.16rem; }
.service-card:hover,
.insight-card:hover,
.mv-card:hover,
.value-card:hover,
.team-card:hover,
.accred-card:hover,
.capability-card:hover,
.industry-card:hover,
.company-link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.insight-grid,
.capability-grid,
.values-grid,
.accreditation-grid { grid-template-columns: repeat(3, 1fr); }
.insight-icon,
.value-card-icon,
.accred-icon,
.company-link-icon { width: 56px; height: 56px; border-radius: 8px; margin-bottom: 18px; }
.insight-icon svg,
.value-card-icon svg,
.accred-icon svg,
.company-link-icon svg,
.value-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
}
.about-preview { background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 243, 248, 0.82) 100%); }
.about-image img { height: 540px; }
.about-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 8px;
  background: rgba(9, 31, 52, 0.86);
  color: var(--white);
}
.badge-number { font-family: 'Sora', sans-serif; font-size: 2rem; color: var(--accent-light); font-weight: 800; }
.badge-number { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.badge-text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.value-icon { width: 42px; height: 42px; border-radius: 14px; flex-shrink: 0; }
.value-item span { font-weight: 700; color: var(--primary); }
.capability-card ul { margin-top: 14px; display: grid; gap: 10px; }
.capability-card li { position: relative; padding-left: 18px; color: var(--gray-600); }
.capability-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.mv-card { border-top: 4px solid var(--primary); }
.mv-card.accent-border { border-top-color: var(--accent); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { border-radius: 10px; overflow: hidden; }
.team-avatar {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-info { padding: 20px; }
.team-info h4 { font-family: 'Manrope', sans-serif; font-weight: 800; margin-bottom: 4px; }
.team-info p { font-size: 0.86rem; color: var(--gray-400); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.industry-card { border-radius: 10px; overflow: hidden; }
.industry-card img { height: 200px; }
.industry-card-body { padding: 22px; }
.industry-card-body h3 { font-size: 1.14rem; }
.company-link-card {
  grid-template-columns: 66px 1fr auto;
  gap: 20px;
  border-radius: 10px;
  padding: 32px;
}
.company-link-icon { width: 66px; height: 66px; border-radius: 8px; margin-bottom: 0; }

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1c537f 100%);
  text-align: center;
  padding: 86px 0;
}
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255, 255, 255, 0.8); font-size: 0.96rem; max-width: 660px; margin: 0 auto 30px; }
.cta-section .btn {
  min-width: 210px;
}

.footer { background: var(--dark); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img { width: auto; max-width: min(100%, 148px); max-height: 72px; object-fit: contain; display: block; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p {
  max-width: 320px;
  line-height: 1.55;
}
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer p,
.footer ul li a,
.footer-contact li { color: var(--gray-400); font-size: 0.9rem; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a:hover { color: var(--accent-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.8; flex-shrink: 0; margin-top: 4px; }
.footer-bottom { padding: 22px 0; text-align: center; }

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
}

.footer-socials-title {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-socials-links a,
.footer-bottom a {
  color: var(--gray-300);
  font-size: 0.88rem;
}

.footer-socials-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}

.footer-socials-links a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials-links a:hover,
.footer-bottom a:hover {
  color: var(--accent-light);
}

.footer-socials-links a:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.page-hero h1 { color: var(--white); max-width: 100%; font-size: clamp(2.55rem, 4.8vw, 4.2rem); line-height: 0.96; letter-spacing: -0.05em; margin-bottom: 14px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 0.92rem; }
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { color: rgba(255, 255, 255, 0.72); }
.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.profile-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 900px;
}

.page-hero-content,
.profile-hero-copy {
  max-width: 100%;
}

.page-hero p,
.profile-hero-copy p:last-child { max-width: 760px; font-size: clamp(1rem, 1.2vw, 1.16rem); }
.hero-disclosure {
  margin-top: 18px;
  max-width: 560px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.hero-disclosure summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-disclosure summary::-webkit-details-marker {
  display: none;
}
.hero-disclosure summary::after {
  content: '+';
  float: right;
  color: var(--accent-light);
  font-size: 1.1rem;
  line-height: 1;
}
.hero-disclosure[open] summary::after {
  content: '-';
}
.hero-disclosure-list {
  padding: 0 18px 18px;
}
.profile-hero-panel {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}
.profile-hero-panel h3 {
  color: var(--white);
  margin-bottom: 14px;
}
.profile-detail-list {
  display: grid;
  gap: 12px;
}
.profile-detail-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.profile-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}
.profile-preview-card,
.profile-summary-panel,
.highlight-card,
.feature-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 47, 79, 0.08);
  box-shadow: var(--shadow-sm);
}
.profile-preview-card,
.profile-summary-panel,
.feature-panel {
  border-radius: 24px;
  padding: 28px;
}
.profile-card-kicker {
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9c7429;
}
.profile-document-card {
  min-height: 320px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-document-pill {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 166, 76, 0.14);
  color: #9c7429;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.profile-document-logo {
  width: min(100%, 280px);
  margin: 26px 0 18px;
}
.profile-document-copy h2 {
  font-size: 1.34rem;
  margin-bottom: 8px;
}
.profile-document-meta {
  margin-top: 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-600);
}
.profile-summary-text {
  margin: 16px 0 0;
}
.profile-listing {
  display: grid;
  gap: 12px;
}
.profile-listing li {
  position: relative;
  padding-left: 20px;
  color: var(--gray-600);
}
.profile-listing li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.mini-badges span,
.profile-signal-band span,
.mini-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 47, 79, 0.07);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}
.profile-viewer-section {
  padding-top: 72px;
}
.profile-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  border-radius: 22px;
  padding: 28px;
}
.highlight-card h3 {
  margin-bottom: 12px;
}
.highlight-card h3,
.feature-panel h3,
.capability-card h3,
.value-card h3,
.mv-card h3,
.insight-card h3,
.accred-card h4,
.company-link-card h3 {
  font-size: 1.14rem;
}
.profile-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: start;
}
.profile-section-head {
  text-align: left;
  margin-bottom: 24px;
}
.profile-section-head p,
.profile-section-head h2 {
  margin-left: 0;
  margin-right: 0;
}
.feature-panel h3 {
  margin-bottom: 12px;
}
.feature-panel p {
  margin-bottom: 18px;
}
.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.pdf-viewer {
  width: 100%;
  height: 80vh;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 47, 79, 0.08);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.pdf-viewer iframe { width: 100%; height: 100%; border: none; }

.fade-in,
.fade-in-left,
.fade-in-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in { transform: translateY(32px); }
.fade-in-left { transform: translateX(-32px); }
.fade-in-right { transform: translateX(32px); }
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible { opacity: 1; transform: translate(0, 0); }

@media (max-width: 1360px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.78rem; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.2rem, 3.7vw, 3.1rem); }
  .spotlight-grid,
  .about-grid,
  .profile-grid,
  .profile-capability-layout,
  .company-link-card {
    gap: 26px;
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .profile-hero-shell,
  .profile-grid,
  .spotlight-grid,
  .about-grid,
  .mission-vision,
  .company-link-card,
  .profile-capability-layout { grid-template-columns: 1fr; }
  .insight-grid,
  .capability-grid,
  .values-grid,
  .accreditation-grid,
  .profile-highlight-grid,
  .industries-grid,
  .team-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats {
    position: relative;
    margin-top: 0;
  }
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .media-card { min-height: 420px; }
  .about-image img { height: 460px; }
  .company-link-card {
    grid-template-columns: 56px 1fr;
    align-items: start;
  }
  .company-link-card .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  :root {
    --banner-height: 42px;
    --navbar-height: 72px;
  }
  .nav-logo img { height: 62px; max-width: min(54vw, 360px); }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    padding: 88px 28px 28px;
    background: rgba(9, 31, 52, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { display: flex; }
  .nav-links a { color: rgba(255, 255, 255, 0.92) !important; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger span { background: var(--primary); }
  .navbar,
  .navbar.scrolled { top: 0; }
  body { padding-top: var(--navbar-height); }
  .hero { padding-top: 20px; padding-bottom: 0; }
  .page-hero { padding-top: 56px; }
  .spotlight-media { grid-template-columns: 1fr; }
  .media-stack { grid-template-columns: repeat(2, 1fr); }
  .media-stack img { height: 240px; }
  .hero-buttons .btn,
  .cta-buttons .btn { min-height: 50px; }
}

@media (max-width: 768px) {
  :root {
    --banner-height: 48px;
    --navbar-height: 68px;
  }
  .site-banner .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
  }
  .site-banner {
    font-size: 0.78rem;
  }
  .site-banner-link {
    font-size: 0.76rem;
  }
  .navbar,
  .navbar.scrolled { top: 0; }
  .nav-logo img { height: 64px; max-width: min(68vw, 360px); }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  body { padding-top: var(--navbar-height); }
  .hero {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 0;
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  .hero-tag {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 7px 12px;
  }
  .hero-stats .container,
  .spotlight-metrics,
  .proof-grid,
  .services-grid,
  .insight-grid,
  .about-values,
  .capability-grid,
  .values-grid,
  .accreditation-grid,
  .profile-highlight-grid,
  .team-grid,
  .industries-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 {
    font-size: 1.85rem;
    line-height: 0.98;
    letter-spacing: -0.05em;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .hero-content {
    width: 100%;
    padding: 18px 16px 18px;
    border-radius: 18px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn,
  .profile-actions .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  .hero-stats {
    margin-top: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 14px 12px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.68rem; }
  .section-header { margin-bottom: 38px; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 1rem; }
  .spotlight-media { gap: 14px; }
  .media-card {
    min-height: 280px;
    border-radius: 20px;
  }
  .media-card-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .media-stack { grid-template-columns: 1fr; }
  .media-stack img,
  .service-card-img { height: 210px; }
  .about-image img { height: 340px; }
  .about-image-badge {
    left: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }
  .about-text h2,
  .spotlight-copy h2 { font-size: 1.85rem; }
  .about-values { margin: 22px 0; }
  .value-item { padding: 12px 14px; }
  .service-card,
  .insight-card,
  .capability-card,
  .value-card,
  .accred-card,
  .highlight-card,
  .feature-panel,
  .profile-summary-panel,
  .profile-preview-card {
    border-radius: 18px;
  }
  .service-card-body,
  .insight-card,
  .capability-card,
  .value-card,
  .accred-card,
  .highlight-card,
  .feature-panel,
  .profile-summary-panel,
  .profile-preview-card,
  .mv-card {
    padding: 20px;
  }
  .team-avatar { height: 300px; }
  .industry-card img { height: 220px; }
  .company-link-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .company-link-icon { width: 54px; height: 54px; }
  .profile-document-card {
    min-height: 0;
    padding: 20px;
  }
  .profile-document-logo {
    width: min(100%, 210px);
    margin: 20px 0 14px;
  }
  .section { padding: 72px 0; }
  .page-hero {
    padding-top: 38px;
    padding-bottom: 56px;
  }
  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.06;
  }
  .page-hero p { font-size: 0.96rem; }
  .breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.84rem;
  }
  .pdf-viewer { height: 62vh; }
  .footer { padding-top: 56px; }
  .footer-brand p { max-width: none; }
  .profile-actions,
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-section .btn {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .nav-logo img { max-width: min(76vw, 320px); }
  .nav-links {
    width: min(100%, 100vw);
    padding: 82px 22px 24px;
  }
  .hero h1,
  .page-hero h1 { font-size: 1.58rem; }
  .section-header h2,
  .about-text h2,
  .spotlight-copy h2 { font-size: 1.6rem; }
  .profile-document-card,
  .profile-summary-panel,
  .feature-panel,
  .highlight-card { padding: 18px; }
  .pdf-viewer { height: 56vh; }
}
