/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #0F1B3D;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Color Tokens ===== */
:root {
  --primary-900: #7F1D1D;
  --primary-800: #991B1B;
  --primary-700: #B91C1C;
  --primary-600: #DC2626;
  --primary-500: #EF4444;
  --primary-400: #F87171;
  --primary-50:  #FEF2F2;
  --accent-gold: #F59E0B;
  --accent-gold-light: #FCD34D;
  --neutral-900: #1C1917;
  --neutral-700: #44403C;
  --neutral-500: #78716C;
  --neutral-300: #D6D3D1;
  --neutral-100: #F5F5F4;
  --neutral-50:  #FAFAF9;
  --white:       #FFFFFF;
  --shadow-card: 0 4px 24px rgba(127, 29, 29, 0.06);
  --shadow-card-hover: 0 16px 48px rgba(127, 29, 29, 0.12);
  --shadow-lg: 0 24px 64px rgba(127, 29, 29, 0.14);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Layout Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(127, 29, 29, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-smooth);
}
.navbar.scrolled {
  background: rgba(127, 29, 29, 0.96);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}
.navbar-logo:hover { opacity: 0.9; }
.navbar-logo img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.navbar-logo:hover img { transform: scale(1.05); }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}
.navbar-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.navbar-nav a.active {
  color: var(--white);
  font-weight: 600;
}
.navbar-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.navbar-nav a.active:hover::after { width: 36px; }
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--accent-gold);
  color: var(--primary-900);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
}
.navbar-cta:hover {
  background: #FBBF24;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.navbar-cta svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}
.navbar-cta:hover svg { transform: translateX(3px); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.1); }

/* ===== Page Header (subpage banner) ===== */
.page-header {
  position: relative;
  padding-top: 72px;
  background: linear-gradient(135deg, #6B1515 0%, var(--primary-900) 30%, var(--primary-800) 60%, var(--primary-700) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
  animation: pageGlow 6s ease-in-out infinite alternate;
}
@keyframes pageGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.page-header-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  transform: scale(1.05);
}
.page-header-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-header-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-header .breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.page-header .breadcrumb a {
  color: var(--accent-gold);
  transition: all 0.3s ease;
}
.page-header .breadcrumb a:hover { opacity: 0.8; color: var(--accent-gold-light); }
.page-header .breadcrumb span { margin: 0 8px; color: rgba(255, 255, 255, 0.35); }

/* ===== Section Common ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-700);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--primary-400);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1.3;
  margin-bottom: 16px;
  text-wrap: pretty;
  letter-spacing: -0.3px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-900);
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--primary-700);
  color: var(--white);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn-red::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-red:hover::before { transform: translateX(100%); }
.btn-red:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.3);
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  border: 1px solid var(--neutral-100);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(185, 28, 28, 0.02) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(185, 28, 28, 0.08);
}
.card:hover::after { opacity: 1; }

/* ===== Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition-smooth);
}
.feature-item:hover {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.feature-item:hover .feature-icon {
  background: var(--primary-700);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary-700);
  transition: color 0.3s ease;
}
.feature-item:hover .feature-icon svg {
  color: var(--white);
}
.feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== Content Block ===== */
.content-block {
  max-width: 860px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--neutral-900);
  margin: 48px 0 20px;
  letter-spacing: -0.3px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 32px 0 12px;
}
.content-block p {
  font-size: 16px;
  color: var(--neutral-700);
  line-height: 1.9;
  margin-bottom: 20px;
}
.content-block ul, .content-block ol {
  margin: 16px 0 24px 24px;
}
.content-block li {
  font-size: 16px;
  color: var(--neutral-700);
  line-height: 2;
  transition: color 0.3s ease;
}
.content-block li:hover { color: var(--primary-700); }

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-700), var(--primary-400), var(--accent-gold));
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}
.timeline-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(185, 28, 28, 0.1);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 36px;
  width: 14px;
  height: 14px;
  background: var(--primary-700);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary-700);
  transition: transform 0.3s ease;
}
.timeline-item:hover::before { transform: scale(1.3); }
.timeline-year {
  display: inline-block;
  padding: 4px 16px;
  background: var(--primary-700);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 12px;
}
.timeline-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}
.timeline-item p {
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-100);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.faq-item:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(185, 28, 28, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--neutral-900);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary-700); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary-700);
  transition: transform 0.35s ease;
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.8;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open {
  border-color: rgba(185, 28, 28, 0.15);
  box-shadow: var(--shadow-card);
}

/* ===== News Grid ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  border: 1px solid var(--neutral-100);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
  transition: transform 0.6s ease;
}
.news-card:hover .news-card-image { transform: scale(1.05); }
.news-card-body {
  padding: 24px;
}
.news-card-date {
  font-size: 13px;
  color: var(--neutral-500);
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.news-card:hover h3 { color: var(--primary-700); }
.news-card p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--neutral-100);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--neutral-900);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-700);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--neutral-100);
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--neutral-100);
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--neutral-50); }
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}
.stat-item:hover .stat-number { transform: scale(1.05); }
.stat-number .suffix {
  font-size: 20px;
  color: var(--accent-gold);
}
.stat-label {
  font-size: 14px;
  color: var(--neutral-500);
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition-smooth);
}
.value-card:hover {
  border-color: var(--primary-400);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.value-card:hover .value-icon {
  background: var(--primary-700);
  transform: scale(1.1);
}
.value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-700);
  transition: color 0.3s ease;
}
.value-card:hover .value-icon svg { color: var(--white); }
.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== Job List ===== */
.job-list {
  max-width: 860px;
  margin: 0 auto;
}
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-100);
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
}
.job-card:hover {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}
.job-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 6px;
}
.job-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--neutral-500);
}
.job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.job-card .btn-red {
  padding: 10px 24px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  background: #3B0808;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 28px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  background: var(--white);
  padding: 5px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.footer-brand:hover .footer-logo-img { transform: scale(1.05); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 360px;
}
.footer-col h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.footer-col:hover h5::after { width: 32px; }
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer-col a::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.footer-col a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}
.footer-col a:hover::before { width: 100%; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover { color: var(--accent-gold); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-header h1 { font-size: 34px; }
  .section-title { font-size: 34px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar-inner { height: 64px; }
  .navbar-logo { font-size: 18px; }
  .navbar-logo img { height: 40px; padding: 5px 8px; border-radius: 8px; }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px;
    background: rgba(127, 29, 29, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .navbar-nav.mobile-open { display: flex; }
  .navbar-nav a { width: 100%; padding: 14px 16px; }
  .navbar-nav a.active::after { display: none; }
  .navbar-cta { display: none; }
  .menu-toggle { display: block; }
  .page-header { padding-top: 64px; }
  .page-header-content { padding: 56px 0 48px; }
  .page-header h1 { font-size: 28px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .section-eyebrow::before,
  .section-eyebrow::after { display: none; }
  .section-header { margin-bottom: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 16px; }
  .stat-number { font-size: 28px; }
  .content-block h2 { font-size: 26px; }
  .timeline { padding-left: 30px; }
  .timeline-item { padding: 20px 24px; }
  .timeline-item::before { left: -24px; }
  .contact-form { padding: 32px 24px; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}