/* Advance Forgings - stylesheet */

/* Design tokens */
:root {
  /* Primary Palette */
  --color-midnight: #081421;
  --color-navy: #162B42;
  --color-steel-blue: #265F99;
  --color-steel-light: #4A90D9;

  /* Accent / Forge */
  --color-forge-gold: #E8A838;
  --color-molten-amber: #F5C563;
  --color-forge-dark: #C48A20;

  /* Neutrals */
  --color-snow: #F8F9FA;
  --color-mist: #E9ECEF;
  --color-graphite: #6C757D;
  --color-carbon: #212529;
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Semantic */
  --color-success: #28A745;
  --color-danger: #DC3545;

  /* Surfaces */
  --surface-primary: var(--color-white);
  --surface-secondary: var(--color-snow);
  --surface-dark: var(--color-midnight);
  --surface-card: var(--color-white);
  --surface-color: var(--surface-primary);
  --border-subtle: rgba(8, 20, 33, 0.10);

  /* Text */
  --text-primary: var(--color-carbon);
  --text-secondary: var(--color-graphite);
  --text-inverse: var(--color-white);
  --text-accent: var(--color-steel-blue);
  --text-gold: var(--color-forge-gold);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-heading: var(--font-display);

  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.375rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-stat: clamp(2.5rem, 5vw, 4.5rem);

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --section-padding: clamp(4rem, 8vw, 8rem);

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(232,168,56,0.3);
  --shadow-blue: 0 4px 20px rgba(46,109,180,0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Glassmorphism (navbar + news panel) */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: 20px;

  /* Container */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 960px;
  --container-padding: clamp(1rem, 3vw, 2rem);

  /* Z-index */
  --z-preloader: 9999;
  --z-nav: 1000;
  --z-floating: 900;
  --z-modal: 1100;
  --z-tooltip: 1200;
}

/* Dark mode override */
[data-theme="dark"] {
  --surface-primary: #0D1117;
  --surface-secondary: #161B22;
  --surface-dark: #010409;
  --surface-card: #161B22;
  --text-primary: #E6EDF3;
  --text-secondary: #8B949E;
  --text-inverse: var(--color-carbon);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --glass-bg: rgba(22, 27, 34, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--surface-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: var(--lh-tight);
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p { margin-bottom: var(--space-md); }

.text-gold { color: var(--text-gold); }
.text-blue { color: var(--text-accent); }
.text-graphite { color: var(--text-secondary); }
.text-center { text-align: center; }

.display-text {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

.section-label {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-forge-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-forge-gold);
  display: inline-block;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: var(--lh-relaxed);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between;
  align-items: flex-start; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-midnight);
  z-index: var(--z-preloader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--color-forge-gold);
  letter-spacing: 0.05em;
}
.preloader__logo span { color: var(--color-forge-gold); }
.preloader__bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.preloader__bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-forge-gold), var(--color-molten-amber));
  border-radius: var(--radius-full);
  animation: preloaderProgress 1.5s ease-in-out forwards;
}
@keyframes preloaderProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.preloader__logo-img {
  width: 216px;
  height: 216px;
  object-fit: contain !important;
  margin-bottom: var(--space-sm);
  animation: logoPulse 2s infinite ease-in-out;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(232, 168, 56, 0.25)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 15px rgba(232, 168, 56, 0.6)); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 18px 0;
  transition: all var(--transition-base);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(8, 20, 33, 0.88);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 10;
}
.navbar__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: -3.5mm;
}
.navbar__logo-mark img {
  height: 112px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: transform var(--transition-base) !important;
}
.navbar__logo:hover .navbar__logo-mark img {
  transform: scale(1.05);
}
.navbar__logo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 0;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #D4A962;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.navbar__logo-text span {
  color: #D4A962;
  text-transform: uppercase;
}
.navbar__logo-tagline {
  color: #D4A962;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 4px;
  white-space: nowrap;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(18px);
}
.navbar__link {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  position: relative;
  transition: color var(--transition-base);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.09);
}
.navbar__link::after {
  display: none;
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}
.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color var(--transition-base);
}
.navbar__dropdown-trigger:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.09);
}
.navbar__dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-base);
}
.navbar__dropdown:hover .navbar__dropdown-trigger svg {
  transform: rotate(180deg);
}
.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}
.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar__dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-small);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.navbar__dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-forge-gold);
  padding-left: calc(var(--space-md) + 4px);
}

/* CTA Button in Nav */
.navbar__cta {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-forge-dark));
  color: var(--color-midnight);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.quote-ribbon {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: var(--z-floating);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  padding: 18px 12px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--color-forge-gold), var(--color-forge-dark));
  color: var(--color-midnight);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(232,168,56,0.35);
}
.quote-ribbon:hover {
  color: var(--color-midnight);
  transform: translateY(-50%) translateX(-3px);
}
.quote-ribbon svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
}
.floating-btn--quote,
.floating-btn--whatsapp {
  display: none;
}
.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,168,56,0.4);
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 10;
}
.navbar__toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-midnight);
}
#forgeHeroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.in-view .hero__bg img {
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.8) 100%
  );
  z-index: 2;
}

/* Hero two-column layout */
.hero__layout {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 220px;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  flex: 1;
  min-width: 0;
}

/* Hero news panel */
.hero-news-panel {
  position: relative;
  z-index: 10;
  width: 340px;
  flex-shrink: 0;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 1.3s forwards;
  overflow: hidden;
}
.hero-news-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-forge-gold), var(--color-molten-amber), transparent);
  border-radius: 16px 16px 0 0;
}

.hero-news-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-news-panel__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-forge-gold);
  animation: newsPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes newsPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(232, 168, 56, 0); }
}

.hero-news-panel__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-forge-gold);
}

.hero-news-panel__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual news item inside hero panel */
.hero-news-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.hero-news-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 168, 56, 0.15);
  transform: translateX(3px);
}

.hero-news-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-forge-gold), #d4942a);
  border-radius: 8px;
  flex-shrink: 0;
  padding: 4px 8px;
}
.hero-news-item__day {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-news-item__month {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.hero-news-item__body {
  flex: 1;
  min-width: 0;
}
.hero-news-item__cat {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-forge-gold);
  background: rgba(232, 168, 56, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.hero-news-item__title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  margin: 0;
}
.hero-news-item__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 3px 0 0;
  word-break: break-word;
}
.hero__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-forge-gold);
  margin-bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}
.hero__label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-forge-gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-molten-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__description {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 580px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s forwards;
}

/* Hero Stats Bar */
.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  opacity: 0;
  animation: fadeInUp 0.8s 1.1s forwards;
}
.hero__stat {
  text-align: left;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-xs);
  white-space: nowrap;
}
.hero__stat-number .suffix {
  font-size: 0.5em;
  color: var(--color-forge-gold);
}
.hero__stat-subnumber {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-forge-gold);
  line-height: 1;
  margin-top: 0.2rem;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}
.hero__stat-label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 25px;
  right: var(--container-padding);
  left: auto;
  transform: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-forge-gold);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-forge-dark));
  color: var(--color-midnight);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,168,56,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--color-forge-gold);
  color: var(--color-forge-gold);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--color-midnight);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--color-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-small);
}
.btn-lg {
  padding: 18px 40px;
  font-size: var(--fs-body-lg);
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}
.btn:hover svg { transform: translateX(4px); }

/* Products */
.products {
  background: var(--surface-secondary);
}
.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
}
.products__header-right {
  max-width: 400px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__image {
  transform: scale(1.08);
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.95) 100%);
  z-index: 2;
  transition: background var(--transition-base);
}
.product-card:hover .product-card__overlay {
  background: linear-gradient(180deg, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.8) 50%, rgba(10,22,40,0.98) 100%);
}
.product-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 3;
}
.product-card__number {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-forge-gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.product-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--space-sm);
}
.product-card__desc {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.product-card:hover .product-card__desc {
  max-height: 180px;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-forge-gold);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}
.product-card:hover .product-card__link {
  opacity: 1;
  transform: translateY(0);
}
.product-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}
.product-card__link:hover svg { transform: translateX(4px); }

/* Why us */
.why-us {
  background: var(--surface-primary);
  overflow: hidden;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

[data-theme="dark"] .why-us__grid {
  border-color: rgba(255,255,255,0.08);
}

.why-us__card {
  padding: var(--space-2xl);
  border-right: 1px solid var(--color-mist);
  border-bottom: 1px solid var(--color-mist);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .why-us__card {
  border-color: rgba(255,255,255,0.08);
}

.why-us__card:nth-child(3n) { border-right: none; }
.why-us__card:nth-child(n+4) { border-bottom: none; }

.why-us__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,109,180,0.04), rgba(232,168,56,0.04));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.why-us__card:hover::before { opacity: 1; }
.why-us__card:hover { transform: translateY(-2px); }

.why-us__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46,109,180,0.1), rgba(46,109,180,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-steel-blue);
}
.why-us__icon svg {
  width: 28px;
  height: 28px;
}
.why-us__card-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}
.why-us__card-text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

/* Infrastructure */
.infrastructure {
  background: var(--color-midnight);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.infrastructure__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, var(--color-steel-blue) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, var(--color-forge-gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.infrastructure__content {
  position: relative;
  z-index: 2;
}
.infrastructure .section-subtitle { color: rgba(255,255,255,0.6); }

.infrastructure__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
  position: relative;
}
.infrastructure__image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.infrastructure__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--color-midnight) 0%, transparent 40%);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  position: relative;
}
.process-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-forge-gold), var(--color-steel-blue));
  opacity: 0.3;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}
.process-step:hover .process-step__dot {
  background: rgba(232,168,56,0.15);
  border-color: var(--color-forge-gold);
  transform: scale(1.1);
}
.process-step__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}
.process-step__subtitle {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

/* Certifications */
.certifications {
  background: var(--surface-secondary);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.cert-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.cert-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-forge-gold);
}
.cert-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(46,109,180,0.1), rgba(232,168,56,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.cert-card__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}
.cert-card__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cert-card--proof {
  text-align: left;
  padding: var(--space-xl);
  border: 1px solid var(--border-subtle);
  min-height: 100%;
}
.cert-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-midnight);
  color: var(--color-forge-gold);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
}
.cert-card__meta {
  display: grid;
  gap: 6px;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}
.cert-card__meta strong {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

/* Client logos */
.clients {
  background: var(--surface-primary);
  overflow: hidden;
}
.clients__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-md);
}
.client-logo-card {
  min-height: 92px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,249,250,0.92)),
    radial-gradient(circle at top right, rgba(232,168,56,0.14), transparent 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  color: var(--color-midnight);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.client-logo-card span {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.trust-strip__item {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
}
.trust-strip__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-midnight);
  margin-bottom: 4px;
}
.trust-strip__label {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee__item {
  flex-shrink: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.5);
  transition: all var(--transition-base);
}
.marquee__item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}
.marquee__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.marquee__item .logo-placeholder {
  padding: 8px 24px;
  background: var(--color-mist);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-graphite);
  white-space: nowrap;
}

[data-theme="dark"] .marquee__item .logo-placeholder {
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
}

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

/* Insights */
.insights {
  background: var(--surface-secondary);
}
.insights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
}
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.blog-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-mist);
}

[data-theme="dark"] .blog-card {
  border-color: rgba(255,255,255,0.06);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card__image {
  height: 220px;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__body {
  padding: var(--space-xl);
}
.blog-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(46,109,180,0.1);
  color: var(--color-steel-blue);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-snug);
}
.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-md);
}
.blog-card__meta {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.evidence-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  min-height: 100%;
  box-shadow: var(--shadow-sm);
}
.evidence-card__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--color-forge-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.evidence-card h3 {
  margin-bottom: var(--space-sm);
}
.evidence-card p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner__pattern {
  position: absolute;
  pointer-events: none;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,168,56,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-banner__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.cta-banner__text {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--space-2xl);
}
.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--color-midnight);
  color: rgba(255,255,255,0.7);
  padding: 0;
  position: relative;
}
.footer__accent {
  height: 3px;
  background: var(--color-forge-gold);
  margin-bottom: var(--space-4xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl) var(--space-xl);
  align-items: flex-start;
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__col--brand {
  padding-right: var(--space-xl);
}
.footer__brand img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}
.footer__brand-desc {
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-lg);
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}
.footer__heading {
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}
.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-forge-gold);
  border-radius: 1px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 10px;
}
.footer__links a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color-forge-gold);
  transition: width 0.3s ease;
}
.footer__links a:hover {
  color: var(--color-forge-gold);
  padding-left: 0;
}
.footer__links a:hover::before {
  width: 12px;
}

/* Footer Contact List */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer__contact li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-forge-gold);
  margin-top: 2px;
}
.footer__contact li a:hover {
  color: var(--color-forge-gold);
}

/* Footer Certification Badges */
.footer__certs {
  display: flex;
  gap: 8px;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.footer__cert-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: var(--color-forge-gold);
  border: 1px solid rgba(232,168,56,0.25);
  border-radius: var(--radius-full);
  background: rgba(232,168,56,0.06);
  white-space: nowrap;
}

/* Footer Social */
.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: rgba(255,255,255,0.5);
}
.footer__social-link:hover {
  background: var(--color-forge-gold);
  color: var(--color-midnight);
  transform: translateY(-3px);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* Footer Bottom */
.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.3);
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-xl);
}
.footer__bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover {
  color: var(--color-forge-gold);
}

/* Floating buttons */
.floating-ctas {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-floating);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}
.floating-btn:hover {
  transform: scale(1.1);
}
.floating-btn--whatsapp {
  background: #25D366;
  color: white;
}
.floating-btn--quote {
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-forge-dark));
  color: var(--color-midnight);
}
.floating-btn--top {
  background: var(--color-midnight);
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.floating-btn--top.visible {
  opacity: 1;
  visibility: visible;
}
.floating-btn svg {
  width: 22px;
  height: 22px;
}

/* Dark mode toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: rgba(255,255,255,0.7);
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-forge-gold);
}
.theme-toggle svg { width: 18px; height: 18px; }

/* Inner page hero */
.page-hero {
  background: var(--color-midnight);
  padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__content {
  position: relative;
  z-index: 2;
}
.page-hero .section-label { color: var(--color-forge-gold); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  color: var(--color-white);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-md);
}
.page-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--color-forge-gold); }
.breadcrumb__sep { margin: 0 4px; }

/* About */
.about-section {
  background: var(--surface-primary);
}
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-forge-dark));
  color: var(--color-midnight);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  box-shadow: var(--shadow-gold);
}
.about-section__image-badge span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-mist);
}

[data-theme="dark"] .timeline::before {
  background: rgba(255,255,255,0.1);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-xl);
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 6px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-forge-gold);
  border: 3px solid var(--surface-primary);
}

[data-theme="dark"] .timeline__item::before {
  border-color: var(--surface-primary);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-forge-gold);
  margin-bottom: var(--space-xs);
}
.timeline__text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-mist);
  transition: all var(--transition-base);
}

[data-theme="dark"] .stat-card {
  border-color: rgba(255,255,255,0.06);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-forge-gold);
}
.stat-card__number {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-steel-blue);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.stat-card__number .suffix {
  color: var(--color-forge-gold);
}
.stat-card__label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
}

/* Contact page */
.contact-section {
  background: var(--surface-primary);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}
.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: rgba(46,109,180,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-steel-blue);
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: 0;
}

.contact-form {
  background: var(--surface-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-mist);
}

[data-theme="dark"] .contact-form {
  border-color: rgba(255,255,255,0.06);
}

.form-group {
  margin-bottom: var(--space-lg);
}
.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-secondary);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--fs-body);
  transition: all var(--transition-base);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select {
  border-color: rgba(255,255,255,0.1);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-steel-blue);
  box-shadow: 0 0 0 3px rgba(46,109,180,0.15);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  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; }

/* Responsive */
@media (max-width: 1024px) {
  .products__grid,
  .products__grid[style] { grid-template-columns: repeat(2, 1fr) !important; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .why-us__card:nth-child(2n) { border-right: none; }
  .why-us__card:nth-child(n+5) { border-bottom: none; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .insights__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(3, 1fr); }
  .process-flow::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section__grid { grid-template-columns: 1fr; }
  .contact-section__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: var(--space-xl); }
  .client-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__logo {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    position: relative;
    z-index: 1001;
  }
  .navbar__logo-mark {
    margin-top: 0;
  }
  .navbar__logo img {
    top: 0;
    height: 36px;
    max-height: 36px;
  }
  .navbar__logo-content {
    align-items: flex-start;
    margin-left: 0;
  }
  .navbar__logo-text {
    font-size: 1.1rem;
  }
  .navbar__logo-tagline {
    display: none;
  }
  .navbar__toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  
  .navbar__menu { 
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: 100px var(--space-xl) var(--space-xl) var(--space-xl);
    border: 0;
    border-radius: 0;
    background: rgba(8, 20, 33, 0.98);
    z-index: 999;
    overflow-y: auto;
  }
  .navbar__menu.open { display: flex; }
  
  .navbar__dropdown-menu {
    position: static;
    min-width: auto;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: var(--space-sm) 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }
  .navbar__dropdown.open .navbar__dropdown-menu {
    display: block;
  }
  .navbar__link,
  .navbar__dropdown-trigger {
    font-size: var(--fs-body-lg);
  }
  .navbar__dropdown-item {
    font-size: var(--fs-body);
    text-align: center;
  }

  /* Responsive Grid utilities stacking on mobile */
  .grid-2,
  .grid-3,
  .cert-grid--3 {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }

  .hero__layout { flex-direction: column; padding-top: 160px; gap: 2rem; }
  .hero__content { padding-top: 0; }
  .hero__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero__stats { flex-wrap: wrap; gap: var(--space-xl); }
  .hero__stat { min-width: 120px; }
  .hero__scroll { display: none; }
  .hero-news-panel { width: 100%; }

  .products__grid,
  .products__grid[style] { grid-template-columns: 1fr !important; }
  .product-card { aspect-ratio: 16/9; }

  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__card { border-right: none !important; }
  .why-us__card:last-child { border-bottom: none; }

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

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

  .insights__grid { grid-template-columns: 1fr; }
  .insights__header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }

  .products__header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-banner__actions { flex-direction: column; align-items: center; }

  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .client-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-ribbon {
    top: auto;
    right: 14px;
    bottom: 18px;
    writing-mode: horizontal-tb;
    transform: none;
    border-radius: var(--radius-full);
    padding: 13px 18px;
    letter-spacing: 0.04em;
  }
  .quote-ribbon:hover { transform: translateY(-2px); }
  .quote-ribbon svg { transform: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; gap: var(--space-lg); }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .client-logo-grid,
  .trust-strip { grid-template-columns: 1fr; }
}

/* ========== MISSING STYLES - ADDED FOR FULL COVERAGE ========== */

/* Background Light Section */
.bg-light {
  background: var(--surface-secondary);
}

/* Inner Page Hero */
.hero--inner {
  min-height: 45vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hero--inner .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero--inner .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--inner .hero__overlay {
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.8), rgba(10,10,15,0.6));
  z-index: -1;
}
.hero--inner .hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.hero--inner .hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}
.breadcrumb a {
  color: var(--color-forge-gold);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb__sep { color: var(--text-tertiary); }

/* About Section Variants (engineering, csr, about inner pages) */
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.about-section__content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}
.about-section__content ul {
  color: var(--text-secondary);
  line-height: 2;
  padding-left: 1.5rem;
}
.about-section__content ul li::marker {
  color: var(--color-forge-gold);
}
.about-section__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.about-section__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.about-section__image-wrapper:hover img {
  transform: scale(1.03);
}
.about-section__experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-forge-gold);
  color: var(--color-dark);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.about-section__experience-badge .number {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-section__experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact Form Styles */
.contact-form {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}
.contact-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.contact-form__input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form__input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-forge-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* Mission Vision Cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
.mv-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-forge-gold), var(--color-primary));
}
.mv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.mv-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-dark);
}
.mv-card__title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.mv-card__text {
  color: var(--text-secondary);
  line-height: 1.8;
}
.mv-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.6;
}
.mv-card__list li {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
}
.mv-card__list li .bullet {
  color: var(--color-forge-gold);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: -2px;
}

/* Leadership Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.leader-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.leader-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-forge-gold), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  font-family: var(--font-heading);
}
.leader-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.leader-card__role {
  font-size: 0.9rem;
  color: var(--color-forge-gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.leader-card__bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Product Detail Sections */
.product-detail {
  padding: var(--space-3xl) 0;
}
.product-detail:nth-child(even) {
  background: var(--surface-secondary);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}
.product-detail__grid--reverse {
  grid-template-columns: 1.2fr 1fr;
}
.product-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.product-detail__image img {
  width: 100%;
  display: block;
  transition: transform 0.6s;
}
.product-detail__image:hover img {
  transform: scale(1.03);
}
.product-detail__content h3 {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}
.product-detail__content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.product-detail__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.product-detail__list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.product-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-forge-gold);
  font-weight: 700;
}

/* Facility Cards for Infrastructure */
.facility-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.facility-card__image {
  height: 220px;
  overflow: hidden;
}
.facility-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.facility-card:hover .facility-card__image img {
  transform: scale(1.08);
}
.facility-card__body {
  padding: var(--space-lg);
}
.facility-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.facility-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .about-section__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .product-detail__grid,
  .product-detail__grid--reverse { grid-template-columns: 1fr; }
  .product-detail__list { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* Visual elements */
.tech-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(74, 144, 217, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 217, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.tech-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(74, 144, 217, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 217, 0.015) 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: center;
}

[data-theme="dark"] .tech-grid-bg {
  background-image: 
    linear-gradient(rgba(74, 144, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 217, 0.04) 1px, transparent 1px);
}
[data-theme="dark"] .tech-grid-bg::after {
  background-image: 
    linear-gradient(rgba(74, 144, 217, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 217, 0.01) 1px, transparent 1px);
}

.cad-axis {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.3;
  pointer-events: none;
}
.cad-axis::before, .cad-axis::after {
  content: '';
  position: absolute;
  background: var(--color-steel-light);
}
.cad-axis::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
.cad-axis::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.process-flow-container {
  position: relative;
  overflow: hidden;
}
.process-flow__svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 120px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.process-flow__path {
  stroke: url(#flowGrad);
  stroke-width: 2;
  stroke-dasharray: 8, 4;
  fill: none;
  animation: dashFlow 15s linear infinite;
}
@keyframes dashFlow {
  to {
    stroke-dashoffset: -200;
  }
}

.dim-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--color-steel-light);
  border-left: 1px solid var(--color-steel-light);
  border-right: 1px solid var(--color-steel-light);
  padding: 0 6px;
  position: relative;
  margin-top: var(--space-xs);
}
.dim-label::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--color-steel-light);
  z-index: -1;
  opacity: 0.5;
}

.hero__blueprint-container {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .hero__blueprint-container {
    right: 2%;
    width: 420px;
    height: 420px;
    opacity: 0.6;
  }
}
@media (max-width: 991px) {
  .hero__blueprint-container {
    display: none;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Product Interactive Cards */
.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(196, 138, 32, 0.3);
}

.product-card .gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .gallery-img {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.8) 70%, transparent 100%);
  padding: var(--space-xl) var(--space-md) var(--space-md);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__overlay {
  transform: translateY(0);
}

.product-card__title {
  color: var(--color-forge-gold);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.product-card__spec {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.product-card__spec strong {
  color: var(--text-primary);
}


/* Certificate Hover Effects */
.cert-hoverable {
  position: relative;
  overflow: hidden;
}

.cert-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1.05);
  z-index: 2;
  border-radius: inherit;
}

.cert-hoverable:hover .cert-hover-img {
  opacity: 1;
  transform: scale(1);
}


/* Sector sections */
.sector-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sector-header {
  margin-bottom: 4rem;
  text-align: left;
}
.sector-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sector-title span {
  color: var(--color-forge-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(196,138,32,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.sector-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.sector-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.4s ease;
}
.sector-gallery img:hover {
  transform: scale(1.05);
}
.sector-gallery img.large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--surface-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.data-table th {
  background: rgba(255,255,255,0.05);
  color: var(--color-forge-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.data-table td {
  padding: 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  line-height: 1.6;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table strong {
  color: var(--color-white);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
@media (max-width: 1024px) {
  .sector-grid { grid-template-columns: 1fr; }
}


.hero__particles { pointer-events: none; }


/* Ensure hero and cta containers stack on top of overlays */
.hero .container {
  position: relative;
  z-index: 5;
}
.cta-banner .container {
  position: relative;
  z-index: 5;
}

/* Reset logo alignment specifically in footer */
.footer .navbar__logo-content {
  margin-left: 0 !important;
}

/* Journey timeline */
.journey-timeline-section {
  padding: var(--space-4xl) 0;
  background: var(--surface-secondary);
}
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0A1628; /* Dark blue vertical line as in screenshot */
  border-radius: var(--radius-full);
}
[data-theme="dark"] .journey-timeline::before {
  background: var(--color-forge-dark);
}
.journey-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  align-items: center;
  margin-bottom: var(--space-xl);
  position: relative;
}
.journey-year {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A1628; /* Dark blue year */
  line-height: 1;
}
[data-theme="dark"] .journey-year {
  color: var(--color-white);
}
.journey-node {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.journey-circle {
  width: 18px;
  height: 18px;
  background: #E8A838; /* Gold circle */
  border-radius: 50%;
  border: 4px solid var(--surface-primary);
  transition: all 0.3s ease;
}
[data-theme="dark"] .journey-circle {
  border-color: var(--surface-secondary);
}
.journey-item:hover .journey-circle {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(232, 168, 56, 0.2);
}
.journey-desc {
  font-size: var(--fs-small);
  color: var(--text-primary);
  line-height: 1.6;
  padding-left: var(--space-md);
  font-weight: 500;
}
[data-theme="dark"] .journey-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive journey */
@media (max-width: 600px) {
  .journey-timeline::before {
    left: 70px;
  }
  .journey-item {
    grid-template-columns: 55px 30px 1fr;
    margin-bottom: var(--space-lg);
  }
  .journey-year {
    font-size: 1.1rem;
  }
  .journey-desc {
    padding-left: var(--space-xs);
    font-size: 0.85rem;
  }
}

/* Facility cards */
.about-section__facilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 480px) {
  .about-section__facilities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  .about-section__facilities {
    grid-template-columns: 1fr;
  }
}
.about-section__facilities .facility-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 200px;
}
.about-section__facilities .facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.about-section__facilities .facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facility-card__badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 6px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Engineering capabilities */
.engineering-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
@media (max-width: 991px) {
  .engineering-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  .engineering-hero-grid div {
    text-align: center !important;
  }
  .engineering-hero-grid p {
    margin: 0 auto !important;
  }
}

.process-flow-container {
  position: relative;
  width: 100%;
}
.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 1100px) {
  .process-flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}
@media (max-width: 650px) {
  .process-flow-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.process-card {
  background: var(--surface-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
[data-theme="light"] .process-card {
  background: var(--color-white);
  border-color: rgba(0,0,0,0.05);
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-forge-gold);
}
.process-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid #0A1628;
  padding-bottom: var(--space-sm);
}
[data-theme="light"] .process-card__header {
  border-color: rgba(10, 22, 40, 0.1);
}
.process-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-forge-gold);
  line-height: 0.9;
}
.process-card__title {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
[data-theme="light"] .process-card__title {
  color: var(--color-midnight);
}
.process-card__icons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.process-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forge-gold);
}
[data-theme="light"] .process-card__icon {
  background: rgba(10, 22, 40, 0.04);
}
.process-card__icon svg {
  width: 24px;
  height: 24px;
}
.process-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.process-card__bullets li {
  font-size: var(--fs-small);
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-left: var(--space-md);
  text-align: left;
}
[data-theme="light"] .process-card__bullets li {
  color: var(--text-secondary);
}
.process-card__bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-forge-gold);
  font-weight: bold;
}

/* Horizontal Flow Arrows */
.process-card__arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
}
[data-theme="light"] .process-card__arrow {
  color: rgba(10, 22, 40, 0.2);
}
.process-card__arrow svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 1100px) {
  .process-card__arrow {
    display: none;
  }
}

/* Light Theme Data Table Overrides */
[data-theme="light"] .data-table {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
[data-theme="light"] .data-table th {
  background: rgba(10, 22, 40, 0.02);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}
[data-theme="light"] .data-table td {
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}
[data-theme="light"] .data-table strong {
  color: var(--color-midnight);
}

/* Compact unit cards */
.units-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
@media (min-width: 480px) {
  .units-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.unit-compact-card {
  background: var(--surface-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: all var(--transition-base);
  text-align: left;
}
[data-theme="light"] .unit-compact-card {
  background: var(--color-white);
  border-color: rgba(10, 22, 40, 0.05);
}
.unit-compact-card:hover {
  border-color: var(--color-forge-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.unit-compact-badge {
  background: #B8860B; /* Gold background */
  color: var(--color-white);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.unit-compact-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}
[data-theme="dark"] .unit-compact-text {
  color: rgba(255, 255, 255, 0.7);
}

/* Pillars Grid (CSR & Team page) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* News section */
.news-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.news-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-forge-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-left-color: var(--color-forge-gold);
}

.news-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-forge-gold), #d4942a);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  padding: var(--space-xs) var(--space-sm);
}
.news-card__day {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.news-card__month {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.news-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-forge-gold);
  background: rgba(232, 168, 56, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}

.news-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-forge-gold);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.news-card__link:hover {
  gap: 10px;
}

/* News Section Responsive */
@media (max-width: 991px) {
  .news-ticker {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .news-card {
    flex-direction: column;
    gap: var(--space-md);
  }
  .news-card__date {
    flex-direction: row;
    width: auto;
    height: auto;
    padding: var(--space-xs) var(--space-md);
    gap: 6px;
    align-self: flex-start;
  }
}

/* News popup */
.news-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.news-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.news-popup {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s ease;
}
.news-popup-overlay.active .news-popup {
  transform: translateY(0) scale(1);
}

.news-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.news-popup__close:hover {
  color: var(--text-primary);
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.news-popup__header {
  text-align: center;
  padding: var(--space-2xl) var(--space-2xl) var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}
.news-popup__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.15), rgba(232, 168, 56, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-forge-gold);
}
.news-popup__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.news-popup__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.news-popup__body {
  padding: var(--space-3xl) var(--space-2xl) var(--space-md) var(--space-2xl);
  overflow-y: auto;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.news-popup__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--surface-secondary);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--color-forge-gold);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.news-popup__item:hover {
  border-left-color: #d4942a;
}

.news-popup__item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-forge-gold), #d4942a);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  padding: 2px 6px;
}
.news-popup__item-day {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.news-popup__item-month {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1px;
}

.news-popup__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.news-popup__item-cat {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-forge-gold);
  align-self: flex-start;
}
.news-popup__item-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.news-popup__item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.news-popup__footer {
  padding: var(--space-xs) var(--space-2xl) var(--space-xl) var(--space-2xl);
  border-top: none;
  text-align: center;
}

/* Admin button styles reused on homepage for popup dismiss */
.btn--admin {
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: var(--font-body);
}
.btn--admin-primary {
  background: linear-gradient(135deg, var(--color-forge-gold), #d4942a);
  color: #fff;
}
.btn--admin-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.3);
}

@media (max-width: 480px) {
  .news-popup {
    max-height: 90vh;
    border-radius: var(--radius-lg);
  }
  .news-popup__header {
    padding: var(--space-xl) var(--space-lg) var(--space-md);
  }
  .news-popup__body {
    padding: var(--space-md) var(--space-lg);
  }
  .news-popup__footer {
    padding: var(--space-md) var(--space-lg);
  }
  .news-popup__item {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .news-popup__item-date {
    flex-direction: row;
    width: auto;
    height: auto;
    gap: 4px;
    padding: 4px 10px;
    align-self: flex-start;
  }
}
