:root {
  --navy: #0d1f3c;
  --navy-mid: #152c52;
  --navy-deep: #070f1e;
  --royal: #1a4fa0;
  --royal-bright: #2563eb;
  --steel: #3b5a84;
  --silver: #8fa6c4;
  --light: #e8eff9;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text-dark: #0d1f3c;
  --text-mid: #374151;
  --text-light: #6b7280;
  --gold: #c8a96e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(13, 31, 60, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img {
  height: 72px; width: auto;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--royal-bright);
  color: white !important;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--royal) !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: white; transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(13,31,60,0.96) 0%,
      rgba(21,44,82,0.92) 40%,
      rgba(26,79,160,0.75) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.018) 80px, rgba(255,255,255,0.018) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.018) 80px, rgba(255,255,255,0.018) 81px);
  z-index: 0;
}
.hero-weave {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(37,99,235,0.04) 20px, rgba(37,99,235,0.04) 21px);
  z-index: 0;
}
.hero-accent {
  position: absolute;
  right: -100px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 60px; padding-top: 72px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.eyebrow-text {
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700; color: white;
  line-height: 1.1; letter-spacing: -0.02em;
  max-width: 760px; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 540px; line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  background: var(--royal-bright);
  color: white; text-decoration: none;
  padding: 16px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  border: 2px solid var(--royal-bright);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-secondary {
  background: transparent;
  color: white; text-decoration: none;
  padding: 16px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: white;
  transform: translateY(-2px);
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 60px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 160px;
}
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.trust-label {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.3; letter-spacing: 0.04em;
}

/* ---- SECTION COMMON ---- */
section { padding: 100px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.tag-line { width: 24px; height: 2px; background: var(--royal-bright); }
.tag-text {
  font-size: 11px; font-weight: 600;
  color: var(--royal-bright); letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 16px; font-weight: 300;
  color: var(--text-light);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 60px;
}

/* ---- CAPABILITIES ---- */
.capabilities-section { background: var(--off-white); }
.capabilities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(26,79,160,0.08);
  border-radius: 12px; overflow: hidden;
}
.cap-card {
  background: white; padding: 48px 40px;
  position: relative; transition: all 0.3s;
  cursor: default;
}
.cap-card:hover { background: var(--navy); }
.cap-icon {
  width: 52px; height: 52px;
  background: var(--light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; transition: all 0.3s;
}
.cap-card:hover .cap-icon { background: rgba(37,99,235,0.2); }
.cap-icon svg { transition: all 0.3s; }
.cap-card:hover .cap-icon svg { stroke: var(--royal-bright); }
.cap-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px;
  transition: color 0.3s;
}
.cap-card:hover .cap-title { color: white; }
.cap-desc {
  font-size: 14px; font-weight: 300;
  color: var(--text-light); line-height: 1.7;
  margin-bottom: 24px; transition: color 0.3s;
}
.cap-card:hover .cap-desc { color: rgba(255,255,255,0.62); }
.cap-link {
  font-size: 13px; font-weight: 600;
  color: var(--royal-bright); text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.3s;
}
.cap-card:hover .cap-link { color: var(--gold); }

/* ---- INDUSTRIES ---- */
.industries-section { background: white; }
.industries-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.industries-visual {
  position: relative; height: 480px;
  border-radius: 12px; overflow: hidden;
}
.industries-visual-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--royal) 100%);
}
.vis-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.vis-circles {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vis-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.3);
  animation: pulse-ring 3s ease-in-out infinite;
}
.vis-circle:nth-child(1) { width: 120px; height: 120px; animation-delay: 0s; }
.vis-circle:nth-child(2) { width: 220px; height: 220px; animation-delay: 0.5s; }
.vis-circle:nth-child(3) { width: 320px; height: 320px; animation-delay: 1s; }
.vis-circle:nth-child(4) { width: 420px; height: 420px; animation-delay: 1.5s; }
.vis-center {
  width: 72px; height: 72px;
  background: var(--royal-bright); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.vis-label {
  position: absolute;
  color: white; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  background: rgba(37,99,235,0.7);
  padding: 6px 14px; border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vis-label:nth-of-type(1) { top: 20%; left: 12%; }
.vis-label:nth-of-type(2) { top: 20%; right: 12%; }
.vis-label:nth-of-type(3) { bottom: 20%; left: 18%; }
.vis-label:nth-of-type(4) { bottom: 20%; right: 18%; }

.industries-content { padding: 20px 0; }
.industries-list { list-style: none; margin-bottom: 40px; }
.industries-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light);
  transition: all 0.2s; cursor: default;
}
.industries-list li:first-child { border-top: 1px solid var(--light); }
.industries-list li:hover { padding-left: 8px; }
.ind-number {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  color: var(--royal-bright); min-width: 24px;
  margin-top: 2px;
}
.ind-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.ind-desc { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.5; }

/* ---- QUALITY ---- */
.quality-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.quality-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, transparent 0px, transparent 40px, rgba(37,99,235,0.04) 40px, rgba(37,99,235,0.04) 41px);
}
.quality-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 60px;
}
.quality-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.quality-tag { color: rgba(255,255,255,0.5) !important; }
.quality-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: white;
  line-height: 1.2; margin-bottom: 20px;
}
.quality-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 36px;
}
.quality-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.quality-pillar {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.quality-pillar:hover {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-3px);
}
.pillar-icon { font-size: 24px; margin-bottom: 10px; }
.pillar-title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 6px; }
.pillar-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ---- SUSTAINABILITY ---- */
.sustain-section { background: var(--off-white); }
.sustain-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start;
}
.sustain-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 32px); font-weight: 600;
  color: var(--navy); line-height: 1.25;
  border-left: 3px solid var(--royal-bright);
  padding-left: 24px;
}
.sustain-content { display: flex; flex-direction: column; gap: 28px; }
.sustain-item { display: flex; gap: 20px; align-items: flex-start; }
.sustain-dot {
  width: 10px; height: 10px;
  background: var(--royal-bright);
  border-radius: 50%; margin-top: 6px; flex-shrink: 0;
}
.sustain-text h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.sustain-text p { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.6; }

/* ---- ABOUT ---- */
.about-section { background: white; }
.about-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 80px; align-items: center;
}
.about-body {
  font-size: 18px; font-weight: 300;
  color: var(--text-mid); line-height: 1.8;
  margin-bottom: 36px;
}
.about-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700;
  color: var(--royal-bright); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px; font-weight: 400;
  color: var(--text-light); line-height: 1.3;
}
.about-visual { display: flex; flex-direction: column; gap: 12px; }
.about-badge {
  padding: 20px 24px; border-radius: 8px;
  border: 1px solid var(--light);
  background: var(--off-white);
  transition: all 0.3s; cursor: default;
}
.about-badge:hover {
  border-color: var(--royal-bright);
  background: white;
  transform: translateX(6px);
}
.badge-label {
  font-size: 11px; font-weight: 600;
  color: var(--royal-bright); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 4px;
}
.badge-value { font-size: 15px; font-weight: 500; color: var(--navy); }

/* ---- LEADERSHIP ---- */
.leadership-section { background: var(--off-white); }
.leadership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 0;
}
.leader-card {
  background: white; border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light);
  transition: all 0.3s; cursor: default;
  display: flex; flex-direction: column;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13,31,60,0.1);
  border-color: var(--royal-bright);
}
.leader-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--royal) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.leader-avatar-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}
.leader-initials {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 700;
  color: rgba(255,255,255,0.18);
  position: relative; z-index: 1;
  letter-spacing: -2px;
}
.leader-info { padding: 24px 28px; }
.leader-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.leader-title {
  font-size: 12px; font-weight: 600;
  color: var(--royal-bright);
  letter-spacing: 0.04em; margin-bottom: 14px;
  text-transform: uppercase;
}
.leader-bio {
  font-size: 14px; font-weight: 300;
  color: var(--text-light); line-height: 1.6;
}
.leader-divider {
  width: 32px; height: 2px;
  background: var(--light);
  margin: 14px 0;
}

/* ---- NEWS ---- */
.news-section { background: white; }
.news-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.news-view-all {
  color: var(--navy); border-color: var(--light);
  font-size: 13px; padding: 12px 24px;
}
.news-view-all:hover { border-color: var(--navy); }
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
}
.news-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--light);
  transition: all 0.3s; cursor: pointer;
  text-decoration: none; display: block;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,31,60,0.09);
  border-color: rgba(37,99,235,0.3);
}
.news-card-featured { grid-row: span 2; }
.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-mid), var(--royal));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.news-card-featured .news-thumb { height: 240px; }
.news-thumb-small { height: 140px; }
.news-thumb-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, transparent 0px, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
}
.news-thumb-icon {
  position: relative; z-index: 1;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.news-body { padding: 24px; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news-date {
  font-size: 11px; font-weight: 500;
  color: var(--text-light); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-tag {
  font-size: 10px; font-weight: 600;
  color: var(--royal-bright);
  background: var(--light);
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600;
  color: var(--navy); line-height: 1.35;
  margin-bottom: 10px;
}
.news-card-featured .news-title { font-size: 22px; }
.news-excerpt {
  font-size: 13px; font-weight: 300;
  color: var(--text-light); line-height: 1.6;
}
.news-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--royal-bright);
  margin-top: 14px; letter-spacing: 0.04em;
}

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--royal) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}
.cta-tag { justify-content: center; margin-bottom: 20px; }
.cta-tag-line { background: rgba(255,255,255,0.3) !important; }
.cta-tag-text { color: rgba(255,255,255,0.55) !important; }
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; color: white;
  line-height: 1.2; margin-bottom: 20px;
}
.cta-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 48px;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-btn-primary, .cta-btn-secondary { font-size: 15px; padding: 18px 36px; }
.cta-contact {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-text { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 400; }

.cta-addresses {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.cta-address-label {
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-address-text {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy-deep);
  padding: 48px 60px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-img {
  height: 44px; width: auto;
  opacity: 1;
}
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px; color: #ffffff;
  text-decoration: none; transition: color 0.2s;
  font-weight: 400; letter-spacing: 0.04em;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
.footer-credit {
  font-size: 11px; color: #ffffff;
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.footer-credit a { display: flex; align-items: center; }
.footer-novare-logo {
  height: 22px; width: auto;
  opacity: 1;
  transition: opacity 0.2s;
}
.footer-credit a:hover .footer-novare-logo { opacity: 0.75; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.03); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s ease;
}
.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; }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
  cursor: pointer;
}
.scroll-indicator span {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-row: auto; grid-column: span 2; }
  .quality-grid, .industries-grid, .sustain-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(13,31,60,0.98); flex-direction: column;
    padding: 24px; gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  section { padding: 72px 24px; }
  .trust-strip { padding: 24px; }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }
  .trust-item { min-width: 130px; flex: 1 1 40%; }

  .hero-content { padding: 0 24px; padding-top: 72px; }
  .capabilities-grid { grid-template-columns: 1fr; gap: 2px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: auto; }
  .quality-pillars { grid-template-columns: 1fr; }
  .quality-inner { padding: 0 24px; }
  .cta-addresses { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner, footer { padding: 32px 24px; }
  .industries-visual { height: 360px; }
  .about-stats { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
