/* Corporate Light Theme Additions */

.hq-main {
  background: var(--hq-bg);
  color: var(--hq-text);
}

.light-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.light-section-alt {
  background: #ffffff;
  border-top: 1px solid var(--hq-border);
  border-bottom: 1px solid var(--hq-border);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0f172a;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--hq-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Global Metrics Bar */
.metrics-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.metric-item {
  text-align: center;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.metric-lbl {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--hq-muted);
  letter-spacing: 1px;
}

/* Two Column Layout (About / Vision) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.text-content p {
  color: var(--hq-muted);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.vision-mission-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vm-card {
  background: var(--hq-glass);
  border: 1px solid var(--hq-border);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.vm-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--hq-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Light Theme Venture Cards */
.venture-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.venture-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.venture-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.venture-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venture-visual {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 300px;
}

.venture-card.reverse .venture-visual {
  order: -1;
}

.v-icon {
  font-size: 5rem;
  color: #fff;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s;
}

.venture-card:hover .v-icon {
  transform: scale(1.1);
}

.v-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}

.v-desc {
  font-size: 1.05rem;
  color: var(--hq-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.v-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.v-features li {
  font-size: 0.95rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.v-features li i {
  color: var(--hq-accent);
}

.v-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hq-accent);
  font-weight: 600;
  font-size: 1rem;
  transition: gap 0.2s;
}
.v-link:hover {
  gap: 15px;
}

/* Ecosystem Directory */
.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 36px;
}

.ecosystem-intro {
  background: #ffffff;
  border: 1px solid var(--hq-border);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.ecosystem-intro h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: #0f172a;
  margin: 0 0 18px;
}

.ecosystem-intro p {
  color: var(--hq-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.ecosystem-intro p:last-child {
  margin-bottom: 0;
}

.ecosystem-stats {
  display: grid;
  gap: 16px;
}

.eco-stat {
  background: #ffffff;
  border: 1px solid var(--hq-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.eco-stat span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--hq-accent);
  margin-bottom: 10px;
}

.eco-stat p {
  color: #334155;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

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

.ecosystem-card {
  background: #ffffff;
  border: 1px solid var(--hq-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.09);
}

.ecosystem-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--hq-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.ecosystem-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #0f172a;
  margin: 0 0 12px;
}

.ecosystem-card p {
  color: var(--hq-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.ecosystem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ecosystem-card li {
  color: #334155;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}

.ecosystem-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hq-accent);
}

.ecosystem-note {
  margin-top: 30px;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  padding: 20px 24px;
  color: #1e3a8a;
  line-height: 1.6;
}

/* Capabilities Grid */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cap-card {
  background: #fff;
  border: 1px solid var(--hq-border);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.cap-card:hover {
  border-color: var(--hq-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37,99,235,0.1);
}

.cap-icon {
  width: 48px;
  height: 48px;
  background: rgba(37,99,235,0.1);
  color: var(--hq-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cap-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.cap-desc {
  font-size: 0.9rem;
  color: var(--hq-muted);
  line-height: 1.5;
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  text-align: center;
}

.leader-img {
  width: 200px;
  height: 200px;
  background: #e2e8f0;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #cbd5e1;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 5px;
}

.leader-role {
  font-size: 1rem;
  color: var(--hq-accent);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Map / Footprint */
.map-container {
  width: 100%;
  height: 400px;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid var(--hq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.map-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at center, rgba(37,99,235,0.1) 0%, transparent 70%);
}

.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--hq-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
  animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.loc-item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.c-icon {
  width: 50px;
  height: 50px;
  background: rgba(37,99,235,0.1);
  color: var(--hq-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-text h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #0f172a;
}

.c-text p {
  color: var(--hq-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .two-col, .venture-card, .venture-card.reverse, .contact-grid { grid-template-columns: 1fr; }
  .ecosystem-layout { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .venture-card.reverse .venture-visual { order: 0; }
  .metric-val { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-intro, .ecosystem-card { padding: 24px; }
  .cap-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}

/* --- REDESIGNED PREMIUM HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  padding-top: 5px;
  padding-bottom: 5px;
}

.shell-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s;
}

.site-header.scrolled .shell-wrap {
  padding: 10px 24px;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--hq-muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.premium-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
  margin: 0 20px;
}

.nav-item {
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-item:hover, .nav-item.active {
  color: var(--hq-accent);
  background: rgba(37, 99, 235, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-leadership {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.btn-leadership:hover {
  background: var(--hq-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

@media (max-width: 992px) {
  .premium-nav { display: none; }
  .header-actions { display: none; }
}

/* Mobile Nav Enhancements */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}
