@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f3d;
  --navy-700: #162a4a;
  --navy-600: #1e3a5f;
  --gold-500: #c8a951;
  --gold-400: #d4bb6e;
  --gold-300: #e0cd8b;
  --bg-light: #f8fafc;
  --card-white: #ffffff;
  --text-primary: #0a1628;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;
  --border-color: #e2e8f0;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.06);
  --card-hover-shadow: 0 8px 30px rgba(200,169,81,0.15);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --max-width: 1360px;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--card-white);
  transition: background 0.3s, box-shadow 0.3s;
  height: var(--nav-height);
}

.nav-wrapper.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper.nav-dark {
  background: var(--navy-900);
}

.nav-wrapper.nav-dark .nav-logo-text {
  color: #ffffff;
}

.nav-wrapper.nav-dark .nav-link {
  color: rgba(255,255,255,0.85);
}

.nav-wrapper.nav-dark .nav-link:hover,
.nav-wrapper.nav-dark .nav-link.active {
  color: #ffffff;
}

.nav-wrapper.nav-dark .nav-link::after {
  background: var(--gold-500);
}

.nav-wrapper.nav-dark .hamburger span {
  background: #ffffff;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-900);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-900);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link .arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-item:hover .nav-link .arrow {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: var(--font-body);
}

.btn-cta:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-cta-outline:hover {
  background: #ffffff;
  color: var(--navy-900);
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-cta-gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200,169,81,0.4);
}

.btn-cta-navy {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--navy-900);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-cta-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  background: var(--card-white);
  border-top: 3px solid var(--gold-500);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 1001;
  min-width: 700px;
  padding: 32px 36px;
  display: flex;
  gap: 36px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-columns {
  display: flex;
  gap: 36px;
  flex: 1;
}

.dropdown-col {
  flex: 1;
}

.dropdown-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-link {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.15s, padding-left 0.15s;
}

.dropdown-link:hover {
  color: var(--navy-900);
  padding-left: 6px;
}

.dropdown-featured {
  flex-shrink: 0;
  width: 260px;
  background: var(--bg-light);
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
}

.dropdown-featured img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.dropdown-featured-content {
  padding: 16px;
}

.dropdown-featured-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 8px;
}

.dropdown-featured-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
}

.dropdown-featured-title:hover {
  color: var(--navy-700);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: all 0.3s;
}

.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);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-white);
  z-index: 999;
  overflow-y: auto;
  padding: 100px 24px 40px;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
}

.mobile-nav-link .arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.mobile-nav-item.open .mobile-nav-link .arrow {
  transform: rotate(180deg);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.mobile-nav-item.open .mobile-dropdown {
  max-height: 1000px;
}

.mobile-dropdown-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  padding: 12px 16px 8px;
}

.mobile-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.mobile-dropdown a:hover {
  color: var(--navy-900);
  background: var(--bg-light);
}

.mobile-cta {
  margin-top: 24px;
}

.mobile-cta .btn-cta-gold {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,31,61,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-asterisk {
  width: 320px;
  height: 320px;
  opacity: 0.15;
}

/* ===== SECTION HELPERS ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy-900);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255,255,255,0.75);
}

.section-navy-800 {
  background: var(--navy-800);
}

.section-navy-800 h2, .section-navy-800 h3 {
  color: #ffffff;
}

.section-navy-800 p {
  color: rgba(255,255,255,0.75);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: var(--navy-800);
  padding: 60px 0;
}

.promo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.promo-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.promo-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.promo-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.promo-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.promo-sector-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.promo-sector-link:hover {
  background: rgba(200,169,81,0.15);
  border-color: var(--gold-500);
  color: #ffffff;
}

.promo-sector-link .arrow-sm {
  font-size: 18px;
  color: var(--gold-500);
}

.promo-visual {
  display: flex;
  justify-content: center;
}

.promo-visual img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* ===== TECHNOLOGY SECTION ===== */
.tech-section {
  background: var(--bg-light);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tech-image {
  border-radius: 4px;
  overflow: hidden;
}

.tech-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.tech-content h2 {
  margin-bottom: 16px;
}

.tech-content p {
  margin-bottom: 24px;
  font-size: 17px;
}

.tech-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-feature {
  padding: 20px;
  background: var(--card-white);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.tech-feature:hover {
  border-color: var(--gold-500);
  box-shadow: var(--card-hover-shadow);
}

.tech-feature h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tech-feature p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--navy-900);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(200,169,81,0.08);
  border-color: rgba(200,169,81,0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold-500);
}

.feature-card h4 {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== FEATURED ARTICLE ===== */
.featured-article {
  background: var(--bg-light);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-image {
  border-radius: 4px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.featured-content .section-label {
  text-align: left;
}

.featured-content h2 {
  margin-bottom: 16px;
}

.featured-content p {
  font-size: 17px;
  margin-bottom: 32px;
}

/* ===== SECTORS GRID ===== */
.sectors-section {
  background: #ffffff;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sector-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  group: true;
}

.sector-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}

.sector-card:hover img {
  transform: scale(1.08);
}

.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s;
}

.sector-card:hover .sector-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, rgba(10,22,40,0.1) 100%);
}

.sector-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 8px;
}

.sector-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.sector-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.sector-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.sector-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all 0.3s;
}

.sector-card:hover .sector-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy-900);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== AWARDS ===== */
.awards-section {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.awards-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-500);
  margin-bottom: 40px;
}

.awards-scroll {
  display: flex;
  gap: 48px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.award-year {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-500);
  font-family: var(--font-body);
}

.award-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
}

.award-org {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.awards-scroll:hover {
  animation-play-state: paused;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--navy-900);
  padding: 80px 0;
}

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

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-500);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ===== INSIGHTS ===== */
.insights-section {
  background: var(--bg-light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: var(--card-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}

.insight-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-4px);
}

.insight-card-image {
  overflow: hidden;
}

.insight-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s;
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.05);
}

.insight-card-body {
  padding: 24px;
}

.insight-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.insight-card h4 {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.35;
}

.insight-card h4:hover {
  color: var(--navy-700);
}

.insight-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.insight-card-meta {
  font-size: 12px;
  color: var(--text-light-muted);
  margin-top: 12px;
}

/* ===== HELP CTA ===== */
.help-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  text-align: center;
  padding: 100px 0;
}

.help-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.help-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900);
  padding: 60px 0 0;
  border-top: 3px solid var(--gold-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: var(--gold-500);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy-900);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(15,31,61,0.88));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.7;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.content-card {
  background: var(--card-white);
  border-radius: 4px;
  padding: 36px 28px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.content-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-4px);
}

.content-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,81,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-500);
}

.content-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.content-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--card-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-4px);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-img .initials {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold-500);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 13px;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card-body .team-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== LOCATION GRID ===== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 28px;
  transition: all 0.2s;
}

.location-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--card-hover-shadow);
}

.location-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.location-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--card-white);
  border-radius: 4px;
  padding: 48px;
  box-shadow: var(--card-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-light);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .nav-link {
    padding: 0 10px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .promo-inner {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-menu {
    display: none;
  }

  .nav-cta-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tech-features {
    grid-template-columns: 1fr;
  }

  .content-grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .dropdown {
    min-width: 100%;
    left: 0;
    transform: translateY(10px);
  }

  .nav-item:hover .dropdown {
    transform: translateY(0);
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .promo-sectors {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-4 { margin-top: 32px !important; }
.text-center { text-align: center !important; }
.text-gold { color: var(--gold-500) !important; }

/* Alliance partner logos section */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.partner-logo {
  opacity: 0.5;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--card-white);
  box-shadow: 0 0 0 2px var(--gold-500);
}

.timeline-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-item .year {
  font-size: 13px;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-muted);
}