/* ============================================================
   11 Cyber Services — Main Stylesheet
   Color System:
   Base     : --navy     #0D1B2A  (navbar, hero, footer, dark sections)
   Accent   : --red      #1B6DB8  (borders, labels, CTAs, active states — brand blue)
   Secondary: --steel    #4A7FA8  (card icons, links, highlights — steel blue)
   Surface  : --bg-*               (layered content areas)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600&family=Montserrat:wght@600;700;800&display=swap');

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #132233;
  --navy-light:  #1C2E42;
  --red:         #1B6DB8;
  --red-hover:   #1559A0;
  --red-glow:    rgba(27, 109, 184, 0.22);
  --red-subtle:  rgba(27, 109, 184, 0.09);
  --steel:       #4A7FA8;
  --steel-hover: #3A6A90;
  --steel-light: rgba(74, 127, 168, 0.12);
  --white:       #ffffff;
  --gray-light:  #F3F5F8;
  --gray-mid:    #DDE3EA;
  --gray-text:   #2E3A48;
  --text-muted:  #6B7E90;
  --text-light:  #B0C4D6;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-red:  rgba(27, 109, 184, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--gray-text);
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p {
  max-width: 68ch;
  color: var(--gray-text);
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark p {
  color: var(--text-light);
}

.section--dark h2 {
  color: var(--white);
}

.section--gray {
  background: var(--gray-light);
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 52px;
  max-width: 60ch;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 4px 18px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}

.btn--outline-navy:hover {
  background: var(--steel);
  color: var(--white);
}

.btn--outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn--outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #B8BEC9;
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo-badge {
  background: transparent;
  border-radius: 6px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar__logo-badge img {
  height: 38px;
  width: auto;
  display: block;
}

.navbar__logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.navbar__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #3a4455;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.navbar__nav a:hover {
  color: var(--navy);
  background: rgba(0, 0, 0, 0.1);
}

.navbar__nav a.active {
  color: var(--red);
  background: var(--red-subtle);
}

.navbar__cta {
  margin-left: 12px;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,25,41,0.98) 0%, rgba(11,25,41,0.82) 55%, rgba(15,33,53,0.70) 100%),
    url('../images/joc_image.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Subtle circuit-grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,109,184,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,109,184,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Diagonal accent line */
.hero__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(135deg, transparent 45%, rgba(27,109,184,0.07) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

.hero__badge--red {
  color: rgba(255, 160, 160, 0.9);
  border-color: var(--border-red);
  background: var(--red-subtle);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.hero__badge-dot--red {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 62ch;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Stats bar inside hero */
.hero__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--border-dark);
  padding-top: 36px;
  flex-wrap: wrap;
  gap: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Hero Slash Tagline ───────────────────────────────────── */
.hero__slash-tag {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__slash-tag span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.hero__slash-tag .slash {
  color: rgba(255,255,255,0.2);
  margin: 0 14px;
  font-weight: 300;
  font-size: 1rem;
}

/* ── Hero Network Animation ───────────────────────────────── */
.hero__network {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}

.hero__network svg {
  width: 100%;
  height: 100%;
}

.net-node {
  fill: var(--red);
}

.net-node-ring {
  fill: none;
  stroke: var(--red);
  stroke-width: 1;
}

.net-line {
  stroke: var(--red);
  stroke-width: 0.6;
}

.net-node-a { animation: nodePulse 4s ease-in-out infinite; }
.net-node-b { animation: nodePulse 4s ease-in-out infinite 0.8s; }
.net-node-c { animation: nodePulse 4s ease-in-out infinite 1.6s; }
.net-node-d { animation: nodePulse 4s ease-in-out infinite 2.4s; }
.net-node-e { animation: nodePulse 4s ease-in-out infinite 3.2s; }
.net-node-f { animation: nodePulse 4s ease-in-out infinite 0.4s; }
.net-node-g { animation: nodePulse 4s ease-in-out infinite 1.2s; }
.net-node-h { animation: nodePulse 4s ease-in-out infinite 2.0s; }

.net-line-a { animation: lineFade 5s ease-in-out infinite; }
.net-line-b { animation: lineFade 5s ease-in-out infinite 1s; }
.net-line-c { animation: lineFade 5s ease-in-out infinite 2s; }
.net-line-d { animation: lineFade 5s ease-in-out infinite 3s; }
.net-line-e { animation: lineFade 5s ease-in-out infinite 4s; }
.net-line-f { animation: lineFade 5s ease-in-out infinite 0.5s; }
.net-line-g { animation: lineFade 5s ease-in-out infinite 1.5s; }
.net-line-h { animation: lineFade 5s ease-in-out infinite 2.5s; }

@keyframes nodePulse {
  0%, 100% { opacity: 0.5; r: 4; }
  50%       { opacity: 1;   r: 6; }
}

@keyframes lineFade {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.6; }
}

/* ── Partner / Trust Strip ────────────────────────────────── */
.partner-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 36px 0;
  overflow: hidden;
}

.partner-strip__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.partner-strip__track-wrap {
  overflow: hidden;
  position: relative;
}

.partner-strip__track-wrap::before,
.partner-strip__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partner-strip__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.partner-strip__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.partner-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: partnerScroll 28s linear infinite;
  white-space: nowrap;
}

.partner-strip__track:hover {
  animation-play-state: paused;
}

.partner-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  border-right: 1px solid var(--gray-mid);
}

.partner-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.partner-item__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.partner-item__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

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

/* ── Stats Bar (section) ──────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-dark);
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border-dark);
  text-align: center;
}

.stat-item__number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Capability Cards ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-top-color 0.25s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(27, 109, 184, 0.12);
  transform: translateY(-3px);
}

.card--dark {
  background: var(--navy-light);
  border-color: var(--border-dark);
  border-top-color: var(--red);
}

.card--dark h3 {
  color: var(--white);
}

.card--dark p {
  color: var(--text-light);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}

.card__link:hover {
  gap: 10px;
}

/* ── Two-Column Layout ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__text h2 {
  margin-bottom: 20px;
}

.two-col__text p {
  margin-bottom: 16px;
}

.two-col__list {
  margin-top: 24px;
}

.two-col__list li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
}

.two-col__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--red);
}

.two-col__visual {
  position: relative;
}

.two-col__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--red);
  border-radius: 2px;
  opacity: 0.15;
  pointer-events: none;
}

/* ── Visual Box ───────────────────────────────────────────── */
.visual-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-dark);
}

.visual-box__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.visual-box__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(27, 109, 184, 0.5);
  text-align: center;
}

/* ── Certifications / Credentials Strip ───────────────────── */
.cred-strip {
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 32px 0;
}

.cred-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cred-item__icon {
  width: 36px;
  height: 36px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-item__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

.cred-item__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 36px;
  font-size: 1.05rem;
  max-width: 50ch;
}

.cta-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Services Detail (services.html) ──────────────────────── */
.service-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block--alt {
  background: var(--gray-light);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.service-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  opacity: 0.25;
  flex-shrink: 0;
  width: 60px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-content h2 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--gray-text);
}

.feature-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.feature-item--dark {
  background: var(--navy-light);
  border-color: var(--border-dark);
  border-left-color: var(--red);
  color: var(--text-light);
}

.feature-check {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,109,184,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,109,184,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 58ch;
  position: relative;
  z-index: 1;
}

/* ── About Page ───────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 24px;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--gray-mid);
  border-left: 1px solid var(--gray-mid);
  border-right: 1px solid var(--gray-mid);
  background: var(--white);
  border-radius: 8px;
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.leader-card {
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.leader-card__img {
  width: 100%;
  height: 200px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--red);
}

.leader-card__img svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,0.15);
  fill: none;
  stroke-width: 1;
}

.leader-card__body {
  padding: 24px;
}

.leader-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.leader-card__title {
  font-size: 0.8rem;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.leader-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Contracting Section ──────────────────────────────────── */
.contract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.contract-card {
  background: var(--navy-light);
  border: 1px solid var(--border-dark);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
  border-radius: 8px;
}

.contract-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contract-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contract-card__badge {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  color: rgba(255, 160, 160, 0.9);
  border-radius: 2px;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__brand-badge {
  background: var(--white);
  border-radius: 6px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__brand-badge img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer__brand-name span {
  display: block;
  font-size: 0.62rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 30ch;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.footer__social a:hover {
  background: var(--red-subtle);
  border-color: var(--border-red);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.footer__social a:hover svg {
  stroke: var(--red);
}

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__links li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--white);
}

.footer__credit {
  text-align: center;
  padding: 14px 0 4px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer__credit a {
  color: var(--white);
  font-weight: 900;
  font-family: 'Arial Black', Arial, sans-serif;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer__credit a:hover {
  color: var(--red);
}

.footer__credit .sigma {
  color: #FFC000;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--reverse {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .navbar__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #B8BEC9;
    flex-direction: column;
    padding: 16px 0 24px;
    border-bottom: 2px solid var(--red);
    gap: 0;
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__nav a {
    padding: 14px 24px;
    font-size: 0.9rem;
    width: 100%;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero__stats {
    gap: 20px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cred-strip__inner {
    gap: 24px;
  }

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

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

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