:root {
  --primary: #1a4cd8;
  --primary-light: #3d7aff;
  --primary-dark: #0033a0;
  --background: #050510;
  --background-alt: #0c0c1a;
  --surface: #12121f;
  --text: #f0f0f5;
  --text-bright: #ffffff;
  --text-muted: #a0a5b5;
  --accent: #1e1e35;
  --border: #2a2a45;
  --gold: #c9b107;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

.site-header {
  background: rgba(12, 12, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.5px;
  z-index: 102;
}

.logo span {
  color: var(--primary-light);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  padding: 0.5rem 0;
  z-index: 100;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-bright);
}

.nav-links .dropdown {
  position: relative;
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted) !important;
  padding: 0.25rem 0;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  background: var(--surface);
  list-style: none;
  padding: 0.75rem 0;
  min-width: 280px;
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.dropdown-products {
  min-width: 320px;
  padding: 0.5rem 0;
}

.dropdown-products li {
  padding: 0;
}

.product-link {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem !important;
  transition: background 0.2s ease;
}

.product-link:hover {
  background: var(--accent) !important;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 8px;
  font-size: 1.25rem;
  color: var(--text-bright);
  flex-shrink: 0;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-name {
  font-weight: 600;
  color: var(--text-bright);
  font-size: 1rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a i {
  margin-right: 0.75rem;
  width: 1.25rem;
  text-align: center;
  color: var(--primary-light);
}

.dropdown-menu a:hover {
  background: var(--accent);
  color: var(--text-bright);
  border-left-color: var(--primary-light);
}

main {
  min-height: calc(100vh - 200px);
}

.site-footer {
  background: var(--surface);
  text-align: center;
  padding: 2.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--text-bright);
  transform: translateY(-2px);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: 
    linear-gradient(to bottom, rgba(5, 5, 16, 0.85) 0%, rgba(5, 5, 16, 0.95) 100%),
    url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(26, 76, 216, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 76, 216, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

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

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-bright);
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-bright);
  border: none;
  box-shadow: 0 4px 15px rgba(26, 76, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 76, 216, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-bright);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-bright);
  letter-spacing: -0.5px;
}

.content-section {
  padding: 5rem 2rem;
}

.content-section:nth-child(even) {
  background: var(--background-alt);
}

.page-content {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-bright);
  font-weight: 700;
}

.page-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--text-bright);
  font-weight: 600;
}

.page-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
  font-weight: 600;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-content strong {
  color: var(--text-bright);
  font-weight: 600;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-content hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stakeholder-card {
  background: var(--surface);
  padding: 0;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: block;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.stakeholder-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.stakeholder-card-content {
  padding: 1.5rem;
}

.stakeholder-card h3 {
  color: var(--text-bright);
  margin-bottom: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.stakeholder-card h3 i {
  color: var(--primary-light);
  margin-right: 0.75rem;
}

.stakeholder-card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-bright);
  box-shadow: 0 4px 15px rgba(26, 76, 216, 0.4);
  margin-top: -3rem;
  margin-bottom: 1rem;
  position: relative;
}

.stakeholder-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--surface), transparent);
}

.stakeholder-card-icon {
  position: absolute;
  top: 140px;
  left: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-bright);
  box-shadow: 0 4px 15px rgba(26, 76, 216, 0.4);
  z-index: 2;
}

.stakeholder-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(26, 76, 216, 0.2);
}

.stakeholder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stakeholder-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(26, 76, 216, 0.2);
}

.stakeholder-card:hover::before {
  transform: scaleX(1);
}

.stakeholder-card h3 {
  color: var(--text-bright);
  margin-bottom: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.stakeholder-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.stakeholder-card:hover .card-link::after {
  transform: translateX(4px);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-item {
  padding: 2rem;
  background: var(--surface);
  border-radius: 2px;
  border: 1px solid var(--border);
  text-align: center;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-bright);
}

.advantage-item h4 {
  color: var(--text-bright);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.advantage-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(26, 76, 216, 0.1) 0%, transparent 50%),
    var(--surface);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-bright);
  font-weight: 700;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.parallax-section {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 5rem 2rem;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 5, 16, 0.85) 0%, rgba(5, 5, 16, 0.75) 100%);
}

.parallax-content {
  position: relative;
  z-index: 1;
}

.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: 
    linear-gradient(to bottom, rgba(5, 5, 16, 0.85) 0%, rgba(12, 12, 26, 0.95) 100%),
    var(--background-alt);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.page-hero-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 16, 0.7) 0%, rgba(12, 12, 26, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

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

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-bright);
  font-weight: 700;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    border-left: 1px solid var(--border);
  }
  
  .nav-links.active {
    display: flex;
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }
  
  .nav-links a {
    display: block;
    padding: 0.5rem 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stakeholder-grid {
    grid-template-columns: 1fr;
  }
}

.info-box {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(26, 76, 216, 0.1) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-light);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 2px;
  position: relative;
}

.info-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  opacity: 0.1;
  pointer-events: none;
}

.info-box h4 {
  color: var(--text-bright);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.info-box h4 i {
  color: var(--primary-light);
  font-size: 1.25rem;
}

.info-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.info-box strong {
  color: var(--text-bright);
}

.info-box-accent {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(201, 177, 7, 0.1) 100%);
  border-left-color: var(--gold);
}

.info-box-accent h4 i {
  color: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--text-bright);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.features-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.feature-list-item i {
  font-size: 1.25rem;
  color: var(--primary-light);
  margin-top: 0.25rem;
}

.feature-list-item div {
  flex: 1;
}

.feature-list-item strong {
  display: block;
  color: var(--text-bright);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-list-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-align: center;
}

.logo-item i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

.logo-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

/* History Page Styles */
.history-page .history-hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.history-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(26, 76, 216, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 177, 7, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.history-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.history-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text-bright) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.history-hero .highlight {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.history-hero .hero-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* Timeline Styles */
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, var(--gold) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 50px;
  height: 50px;
  background: var(--surface);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(26, 76, 216, 0.4);
}

.timeline-marker i {
  font-size: 1.1rem;
  color: var(--primary-light);
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 60px;
  text-align: left;
}

.era-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-bright);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.era-badge i {
  font-size: 0.65rem;
}

.timeline-content h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-bright);
}

.timeline-content h2 .highlight {
  color: var(--gold);
}

.timeline-content p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.timeline-content p strong {
  color: var(--text);
}

.timeline-content p em {
  color: var(--primary-light);
  font-style: normal;
}

.feature-list {
  list-style: none;
  margin: 1rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline-item:nth-child(odd) .feature-list li {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-list li i {
  color: var(--primary-light);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.feature-list li strong {
  color: var(--text);
}

.quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--primary-light);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1rem 0;
}

.timeline-item:nth-child(odd) .quote {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 1rem;
}

.award-cards {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.award-card {
  background: linear-gradient(135deg, var(--background-alt) 0%, var(--surface) 100%);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1rem;
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.award-card i {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.award-card h3 {
  font-size: 0.9rem;
  color: var(--text-bright);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.award-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.award-source {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}

.milestone-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.milestone-tag i {
  color: var(--gold);
  font-size: 0.75rem;
}

.timeline-item:nth-child(odd) .milestone-tag {
  margin-left: auto;
}

.timeline-item:nth-child(even) .milestone-tag {
  margin-right: auto;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 70px;
}

.stat-item i {
  font-size: 1.1rem;
  color: var(--primary-light);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-row .milestone-tag {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 25px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 25px;
    width: 40px;
    height: 40px;
  }
  
  .timeline-marker i {
    font-size: 0.9rem;
  }
  
  .timeline-content {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(odd) .feature-list li {
    flex-direction: row;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .quote,
  .timeline-item:nth-child(even) .quote {
    border-left: 3px solid var(--gold);
    border-right: none;
    padding-left: 1rem;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(odd) .milestone-tag,
  .timeline-item:nth-child(even) .milestone-tag {
    margin: 0.75rem 0 0 0;
  }
  
  .stats-row {
    gap: 1.5rem;
  }
}

.timeline-content h2 .highlight {
  color: var(--gold);
}

.timeline-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.timeline-content p strong {
  color: var(--text);
}

.timeline-content p em {
  color: var(--primary-light);
  font-style: normal;
}

.feature-list {
  list-style: none;
  margin: 1rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.timeline-item:nth-child(odd) .feature-list li {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-list li i {
  color: var(--primary-light);
  margin-top: 3px;
}

.feature-list li strong {
  color: var(--text);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary-light);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0 !important;
}

.timeline-item:nth-child(odd) .quote {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 1rem;
}

.award-cards {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.award-card {
  background: linear-gradient(135deg, var(--background-alt) 0%, var(--surface) 100%);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.award-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.award-card h3 {
  font-size: 0.95rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.award-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.award-source {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

  .stats-row {
    gap: 1.5rem;
  }
}

/* Section Breather */
.section-breather {
  background: linear-gradient(90deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}

.section-breather::before,
.section-breather::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-breather::before {
  left: 0;
}

.section-breather::after {
  right: 0;
}

.breather-content {
  text-align: center;
  width: 100%;
}

.breather-content h2 {
  font-size: 1.75rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.breather-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Hero Icon */
.hero-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(26, 76, 216, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201, 177, 7, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

/* Enhanced Timeline Markers */
.timeline-marker i {
  font-size: 1.2rem;
  color: var(--primary-light);
}

.timeline-content {
  width: calc(50% - 50px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 60px;
  text-align: left;
}

/* Era Badge with Icon */
.era-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-bright);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.era-badge i {
  font-size: 0.7rem;
}

/* Milestone Tag */
.milestone-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.milestone-tag i {
  color: var(--gold);
}

.timeline-item:nth-child(odd) .milestone-tag {
  margin-left: auto;
}

.timeline-item:nth-child(even) .milestone-tag {
  margin-right: auto;
}

/* Enhanced Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--primary-light);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced Manifesto */
.manifesto-section {
  background: var(--surface);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(26, 76, 216, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201, 177, 7, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.manifesto-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.manifesto-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-bright);
}

.manifesto-section blockquote {
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
}

.manifesto-section blockquote p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.manifesto-section blockquote strong {
  color: var(--gold);
}

.cta-box {
  background: linear-gradient(135deg, var(--background-alt) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.cta-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-bright);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(26, 76, 216, 0.4);
  color: var(--text-bright);
}

@media (max-width: 768px) {
  .history-hero h1 {
    font-size: 2rem;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    padding-left: 70px;
  }
  
  .timeline-marker {
    left: 30px;
    width: 50px;
    height: 50px;
  }
  
  .timeline-content {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(odd) .feature-list li {
    flex-direction: row;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .quote,
  .timeline-item:nth-child(even) .quote {
    border-left: 3px solid var(--gold);
    border-right: none;
    padding-left: 1rem;
    padding-right: 0;
  }
  
  .stats-row {
    gap: 1.5rem;
  }
}