:root {
  --navy: #0A192F;
  --navy-light: #172a45;
  --navy-dark: #060e1a;
  --gold: #D4AF37;
  --gold-hover: #c49f27;
  --gold-light: #fdf8e6;
  --terracotta: #E2725B;
  --slate: #334155;
  --slate-muted: #64748B;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 25, 47, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Global Link Rules */
a {
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:visited {
  color: var(--navy);
}
a:hover {
  color: var(--gold);
}

.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10, 25, 47, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none !important;
  color: var(--navy) !important;
}

.brand-logo-svg { width: 38px; height: 38px; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy) !important;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link,
.nav-link:visited {
  text-decoration: none !important;
  color: var(--slate) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy) !important; }

.nav-cta,
.nav-cta:visited {
  background-color: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-cta:hover { background-color: var(--navy-light) !important; transform: translateY(-1px); }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112240 100%);
  color: var(--white);
  padding: 6.5rem 2rem 6.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary,
.btn-primary:visited {
  background-color: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover { background-color: var(--gold-hover) !important; transform: translateY(-2px); }

.btn-secondary,
.btn-secondary:visited {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1) !important; border-color: var(--white) !important; }

.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-tag {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc { color: var(--slate); font-size: 1.1rem; }

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(10, 25, 47, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.5);
}
.pillar-card.featured {
  border: 2px solid var(--gold);
  background: #FFFFFF;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-card.featured .pillar-icon-box { background: var(--navy); color: var(--gold); }

.pillar-division {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.pillar-name {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.pillar-description {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pillar-link,
.pillar-link:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy) !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.pillar-link:hover { color: var(--gold) !important; gap: 0.75rem; }

.common-thread {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  margin: 1rem auto;
  max-width: 1200px;
}
.thread-quote {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1.5;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}
.thread-author { color: #CBD5E1; font-size: 1rem; font-weight: 400; }

.footer {
  background: var(--navy-dark);
  color: #94A3B8;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-brand p { color: #94A3B8; font-size: 0.95rem; max-width: 360px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a,
.footer-col a:visited {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold) !important; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .nav-links { display: none; }
  .footer-content { grid-template-columns: 1fr; }
  .common-thread { padding: 2rem 1.5rem; }
  .thread-quote { font-size: 1.35rem; }
}


.brand-link {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none !important;
  color: var(--navy) !important;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}






.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none !important;
  color: var(--navy) !important;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 1;
}

.brand-name-primary {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0A192F !important;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-name-secondary {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: #D4AF37 !important;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
  margin-left: 1px;
  text-shadow: 0 1px 2px rgba(10, 25, 47, 0.2);
}
