/* ===== SAKS Public Stylesheet ===== */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%; z-index: 9999;
  background: linear-gradient(90deg, #0D1E4A 0%, #93C5FD 50%, #0D1E4A 100%);
  background-size: 200% 100%;
  animation: progress-shimmer 2.5s linear infinite;
  pointer-events: none;
}
@keyframes progress-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Header shrink on scroll ── */
.site-header { transition: box-shadow .3s ease; }
.site-header.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.45); }
.site-header.scrolled .header-inner { height: 56px; transition: height .3s ease; }

/* ── Back to top button ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(13,30,74,.35);
  opacity: 0; transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease, background .25s ease;
  z-index: 980; pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--green); transform: translateY(-3px); }
:root {
  --blue:   #0D1E4A;
  --green:  #1E40AF;
  --grey:   #374151;
  --muted:  #6B7280;
  --light:  #EFF3FF;
  --dark:   #111827;
  --white:  #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --radius: 10px;
  --transition: all .3s ease;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.8;
  background: var(--white);
}

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #071230;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  padding: 0 2rem;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; height: 70px;
}
.site-logo {
  display: flex; align-items: center; gap: .75rem;
  font-weight: 700; font-size: 1.1rem; color: #fff;
}
.site-logo img { width: 42px; height: 42px; object-fit: contain; }
.logo-text span { color: #93C5FD; }

nav ul {
  list-style: none; display: flex; gap: 2rem; align-items: center;
}
nav ul a {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.82);
  transition: var(--transition); position: relative; padding-bottom: 3px;
}
nav ul a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #93C5FD;
  transition: var(--transition);
}
nav ul a:hover, nav ul a.active { color: #fff; }
nav ul a:hover::after, nav ul a.active::after { width: 100%; }

.btn-cta {
  background: var(--blue); color: var(--white);
  padding: .6rem 1.4rem; border-radius: 6px;
  font-weight: 600; font-size: .95rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-cta:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

/* Hamburger */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span {
  display: block; width: 25px; height: 2px;
  background: rgba(255,255,255,.85); margin: 5px 0; transition: var(--transition);
}

/* ===== HERO ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(.8) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero {
  min-height: 100vh;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}

/* Layer 1 — dark overlay */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(5, 15, 40, 0.88);
}

/* Layer 2 — subtle vignette edges */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* Particles canvas sits between overlay and content */
#heroCanvas {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3; max-width: 80%;
}

/* Staggered fade-in animations */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #BFDBFE; font-size: .95rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem 1.2rem; border-radius: 30px; margin-bottom: 1.5rem;
  animation: badgePop .7s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .1s;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 1.35rem;
  letter-spacing: -.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 0 48px rgba(147,197,253,.25);
  animation: fadeUp .8s ease both;
  animation-delay: .35s;
}
.hero-word {
  display: inline-block;
  animation: word-color-cycle 6s ease-in-out infinite;
}
@keyframes word-color-cycle {
  0%    { color: #93C5FD; }
  16%   { color: #38BDF8; }
  32%   { color: #FCD34D; }
  48%   { color: #6EE7B7; }
  64%   { color: #FB923C; }
  82%   { color: #F472B6; }
  100%  { color: #93C5FD; }
}

.hero p {
  font-size: 1.25rem; color: rgba(255,255,255,.82);
  margin-bottom: 2.2rem; max-width: 600px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
  animation: fadeUp .8s ease both;
  animation-delay: .55s;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s ease both;
  animation-delay: .75s;
}

/* About image cycling pills — circular layout */
.about-image { position: relative; }
.about-pills { position: absolute; inset: 0; pointer-events: none; }
.about-pill {
  position: absolute;
  padding: .65rem 1.6rem; border-radius: 30px;
  font-size: 1.1rem; font-weight: 800; letter-spacing: .05em;
  border: 2px solid rgba(255,255,255,.7);
  background: rgba(13,30,74,.7); color: rgba(255,255,255,.85);
  backdrop-filter: blur(8px); white-space: nowrap;
  animation: pill-flash 4s ease-in-out infinite;
}
/* Top — Research */
.about-pill:nth-child(1) { top: 12%; left: 50%; transform: translateX(-50%); }
/* Right — Results */
.about-pill:nth-child(2) { top: 50%; right: 8%; transform: translateY(-50%); }
/* Bottom — Implementation */
.about-pill:nth-child(3) { bottom: 12%; left: 50%; transform: translateX(-50%); }
/* Left — Growth */
.about-pill:nth-child(4) { top: 50%; left: 8%; transform: translateY(-50%); }

@keyframes pill-flash {
  0%, 15%   { background: rgba(13,30,74,.7); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.6);  box-shadow: none; }
  20%, 45%  { background: #fff;              color: #0D1E4A;               border-color: #fff;                  box-shadow: 0 0 24px rgba(255,255,255,.8), 0 4px 16px rgba(0,0,0,.2); }
  50%, 100% { background: rgba(13,30,74,.7); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.6);  box-shadow: none; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: fadeIn 1s ease both; animation-delay: 1.4s;
}
.hero-scroll-hint span { color: rgba(255,255,255,.45); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.scroll-arrow {
  width: 28px; height: 28px; border: 2px solid rgba(255,255,255,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0);   opacity: .5; }
  50%      { transform: translateY(5px); opacity: 1;  }
}
.scroll-arrow i { color: rgba(255,255,255,.6); font-size: .7rem; }

.btn-primary-hero {
  background: var(--white); color: var(--blue);
  padding: .95rem 2.4rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,255,255,.2);
}
.btn-primary-hero:hover { background: #DBEAFE; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,255,255,.3); }
.btn-outline-hero {
  background: rgba(255,255,255,.07); color: var(--white);
  padding: .95rem 2.4rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.35); transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-outline-hero:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.13); }

/* ===== SECTION COMMONS ===== */
section { padding: 90px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--dark); margin-bottom: .75rem;
}
.section-header p { color: var(--grey); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.section-badge {
  display: inline-block; background: rgba(13,30,74,.08);
  color: var(--blue); font-size: 1.35rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 20px; margin-bottom: .75rem;
}
.divider {
  width: 50px; height: 4px;
  background: var(--blue);
  border-radius: 2px; margin: 1rem auto 0;
}

/* ===== SERVICES ===== */
.services-bg { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white); border-radius: 0;
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--blue);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 58px; height: 58px; border-radius: 12px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon i { color: var(--white); font-size: 1.4rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; color: var(--dark); }
.service-card p { font-size: 1rem; color: var(--grey); }
a.service-card-link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
a.service-card-link:hover h3 { color: var(--blue); }

/* Service card with background image */
.service-card-bg {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.service-card-bg::before { display: none; }
.service-card-bg::after {
  content: ''; position: absolute; inset: 0; border-radius: 0;
  background: linear-gradient(135deg, rgba(13,30,74,.75) 0%, rgba(13,30,74,.60) 100%);
  z-index: 0;
}
.service-card-bg .service-icon,
.service-card-bg h3,
.service-card-bg p { position: relative; z-index: 1; }
.service-card-bg h3 { color: #fff; }
.service-card-bg p  { color: rgba(255,255,255,.82); }
.service-card-bg .service-icon { background: rgba(255,255,255,.18) !important; backdrop-filter: blur(4px); }
a.service-card-link.service-card-bg:hover h3 { color: #fff; }
.service-card-bg:hover { box-shadow: 0 16px 40px rgba(0,0,0,.28); }

/* ── Rectangular service card (clip shapes removed) ── */
.clip-quatrefoil,
.clip-trefoil { clip-path: none; }

.service-card.clip-quatrefoil,
.service-card.clip-trefoil {
  aspect-ratio: unset;
  padding: 0;
  background: var(--blue);
  box-shadow: var(--shadow);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card.clip-quatrefoil::before,
.service-card.clip-trefoil::before { display: none; }
.service-card.clip-quatrefoil:hover,
.service-card.clip-trefoil:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
}

/* Full-card background image */
.svc-bg {
  position: absolute; inset: 0; z-index: 0;
}
.svc-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Dark overlay so text is always readable */
.svc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(13,30,74,.68);
}

/* Centered content on top of the background */
.svc-body {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2.5rem 1.75rem;
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 220px;
}
.svc-body .service-icon {
  background: rgba(255,255,255,.18) !important;
  backdrop-filter: blur(4px);
  margin: 0 auto 1.25rem;
  width: 72px; height: 72px; border-radius: 16px;
  opacity: 0; transform: translateY(-12px) scale(.88);
  transition: opacity .35s ease, transform .35s ease;
}
.svc-body .service-icon i { color: var(--white); font-size: 1.8rem; }
.svc-body h3 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 0;
  transition: margin .35s ease;
}
.svc-body .svc-desc {
  font-size: .97rem; color: rgba(255,255,255,.85);
  line-height: 1.65; margin-top: .75rem;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
}
.svc-read-more {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1.1rem; font-size: .88rem; font-weight: 700;
  color: var(--white); border: 2px solid rgba(255,255,255,.6);
  padding: .45rem 1.25rem; border-radius: 50px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s ease .1s, transform .35s ease .1s,
              background .2s, border-color .2s;
  cursor: pointer;
}

/* Hover: darken overlay, reveal hidden elements */
.service-card.clip-quatrefoil:hover .svc-overlay,
.service-card.clip-trefoil:hover .svc-overlay {
  background: rgba(13,30,74,.84);
}
.service-card.clip-quatrefoil:hover .svc-body .service-icon,
.service-card.clip-trefoil:hover .svc-body .service-icon {
  opacity: 1; transform: translateY(0) scale(1);
}
.service-card.clip-quatrefoil:hover .svc-body .svc-desc,
.service-card.clip-trefoil:hover .svc-body .svc-desc {
  opacity: 1; transform: translateY(0);
}
.service-card.clip-quatrefoil:hover .svc-read-more,
.service-card.clip-trefoil:hover .svc-read-more {
  opacity: 1; transform: translateY(0);
}
.svc-read-more:hover { background: rgba(255,255,255,.15); border-color: #fff; }

a.service-card-link.clip-quatrefoil:hover h3,
a.service-card-link.clip-trefoil:hover h3 { color: var(--white); }

/* ===== SERVICE DETAIL ===== */
.svc-back-link { display:inline-flex; align-items:center; gap:.5rem; color:var(--blue); font-weight:600; font-size:.88rem; margin-bottom:2rem; text-decoration:none; }
.svc-back-link:hover { text-decoration:underline; }
.svc-detail-card { display:flex; gap:2.5rem; align-items:flex-start; background:var(--white); border-radius:var(--radius); padding:2.5rem; box-shadow:var(--shadow); }
.svc-detail-icon { flex-shrink:0; width:80px; height:80px; border-radius:16px; display:flex; align-items:center; justify-content:center; }
.svc-detail-icon i { color:var(--white); font-size:2rem; }
.svc-detail-body h2 { font-size:1.75rem; font-weight:800; margin-bottom:1rem; color:var(--dark); }
.svc-detail-body p { font-size:1.05rem; color:var(--grey); line-height:1.8; }
@media(max-width:600px) { .svc-detail-card { flex-direction:column; gap:1.5rem; } }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

/* 3-column about layout with centred label */
.about-grid-3col {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
}
.about-centre-label {
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem; padding: 0 1.5rem;
}
.about-centre-line {
  width: 2px; height: 60px; background: var(--blue); opacity: .2; border-radius: 2px;
}
.about-centre-badge {
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 1.35rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  white-space: nowrap;
}
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-placeholder {
  background: var(--blue);
  height: 400px; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; font-size: 4rem;
}
.about-placeholder p { font-size: 1rem; margin-top: .5rem; opacity: .8; }
.about-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: var(--grey); margin-bottom: 1rem; font-size: 1.05rem; }
.about-stats {
  display: flex; gap: 2rem; margin-top: 1.5rem;
}
.stat { text-align: center; }
.stat span { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); }
.stat p { font-size: .95rem; color: var(--grey); }

/* ===== ABOUT PAGE — MRC STYLE ===== */
.about-mrc-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.about-mrc-intro {
  padding: 70px 0 60px; background: var(--white);
}
.about-mrc-intro p {
  font-size: 1.05rem; color: var(--grey); line-height: 1.85;
  margin-bottom: 1.1rem; max-width: 860px;
}
.about-mrc-subhead {
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  margin-top: 1.5rem !important; margin-bottom: .5rem !important;
}
.about-mrc-list {
  list-style: none; padding: 0; margin: 0;
}
.about-mrc-list li {
  position: relative; padding-left: 1.5rem;
  font-size: 1rem; color: var(--grey); line-height: 1.8;
  margin-bottom: .55rem;
}
.about-mrc-list li::before {
  content: ''; position: absolute; left: 0; top: .7em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
}

/* Section common */
.about-mrc-section {
  padding: 65px 0; background: var(--white);
}
.mrc-section-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--dark); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: .6rem;
}
.mrc-title-light { color: var(--white); }
.mrc-divider {
  border: none; border-top: 2px solid var(--blue);
  margin: 0 0 2.5rem; width: 60px;
}
.mrc-divider-light { border-top-color: rgba(255,255,255,.4); }

/* Team section */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.team-card {
  position: relative; border-radius: 12px;
  overflow: hidden; height: 360px;
  box-shadow: 0 6px 28px rgba(0,0,0,.13);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: default;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,.22); }

/* Photo fills the whole card */
.team-photo-wrap {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1E3A8A 0%, #071230 100%);
}
.team-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.18); font-size: 5.5rem;
}

/* Overlay: covers full card, flex-col pushes children to bottom */
.team-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(7,18,48,.95) 0%, rgba(7,18,48,.4) 55%, transparent 100%);
  transition: background .35s ease;
}
.team-card:hover .team-card-overlay {
  background: rgba(7,18,48,.86);
}

/* Detail block (bio + social) — fades in on hover */
.team-card-detail {
  padding: 0 1.4rem .5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease .05s, transform .3s ease .05s;
}
.team-card:hover .team-card-detail {
  opacity: 1; transform: translateY(0);
}

/* Caption block (name + position) — always visible */
.team-card-caption { padding: .9rem 1.4rem 1.3rem; }

.team-name {
  font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 .25rem;
}
.team-position {
  font-size: .7rem; font-weight: 700; color: #93C5FD;
  text-transform: uppercase; letter-spacing: .09em; margin: 0;
}
.team-bio {
  font-size: .84rem; color: rgba(255,255,255,.82); line-height: 1.65;
  margin: 0 0 .85rem;
  display: -webkit-box; -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.team-social {
  list-style: none; padding: 0;
  display: flex; gap: .55rem; margin: 0;
}
.team-social li a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: var(--transition); text-decoration: none;
}
.team-social li a:hover { background: #1E40AF; color: #fff; }

/* Capabilities section */
.about-mrc-caps { background: var(--light); }
.capability-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.capability-box {
  background: var(--white); border-radius: 10px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: var(--transition);
}
.capability-box:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.12); }
.capability-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.capability-icon i { color: var(--white); font-size: 1.35rem; }
.capability-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: .65rem;
}
.capability-desc {
  font-size: .92rem; color: var(--grey); line-height: 1.75;
}

/* Global locations section */
.about-mrc-locations {
  padding: 65px 0; background: #F3F4F6;
}
.locations-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 3rem;
}
.locations-list li {
  font-size: 1rem; color: var(--grey);
  padding: .65rem 0; border-bottom: 1px solid #E5E7EB;
  line-height: 1.5;
}
.locations-list li strong { color: var(--dark); font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
  .team-grid,
  .capability-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .team-grid,
  .capability-grid,
  .locations-list { grid-template-columns: 1fr; }
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem;
}
.blog-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(0,0,0,.16); }
.blog-card-img {
  height: 200px; overflow: hidden; background: var(--light);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.08); filter: brightness(1.05); }
.blog-card-img .placeholder-img {
  width: 100%; height: 100%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: .75rem; font-size: .9rem; color: var(--grey); }
.blog-meta .category {
  background: rgba(13,30,74,.08); color: var(--blue);
  padding: .2rem .7rem; border-radius: 20px; font-weight: 600;
}
.blog-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.4; }
.blog-card-body p { font-size: 1rem; color: var(--grey); margin-bottom: 1rem; }
.read-more {
  color: var(--blue); font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .3rem; transition: var(--transition);
}
.read-more:hover { gap: .6rem; }

/* ===== JOURNAL PAGE ===== */

/* Hero */
.jnl-hero {
  background: #0D1E4A; padding: 72px 2rem 64px; text-align: center;
  position: relative; overflow: hidden;
}
.jnl-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(30,64,175,.4) 0%, transparent 65%);
  pointer-events: none;
}
.jnl-hero-body { position: relative; z-index: 1; }
.jnl-hero-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #93C5FD; margin-bottom: 1.5rem;
}
.jnl-overline {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .75rem;
}
.jnl-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800;
  color: #fff; letter-spacing: .01em; line-height: 1.1; margin-bottom: .5rem;
}
.jnl-subtitle {
  font-size: .82rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}

/* Tabs bar */
.jnl-tabs-bar {
  background: #fff; border-bottom: 1px solid #E5E7EB;
  position: sticky; top: 70px; z-index: 90;
}
.jnl-tabs-inner {
  max-width: 90%; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.jnl-tabs-inner::-webkit-scrollbar { display: none; }
.jnl-tab {
  display: inline-block; padding: 1rem 1.3rem; font-size: 1.05rem; font-weight: 600;
  color: var(--grey); white-space: nowrap; border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.jnl-tab:hover { color: var(--dark); }
.jnl-tab.active { color: var(--blue); border-bottom-color: var(--blue); }

/* Body */
.jnl-body { background: #F8F9FC; padding: 3rem 2rem 5rem; }
.jnl-container { max-width: 90%; margin: 0 auto; }

/* 3-column grid */
.jnl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.jnl-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  border: 1px solid #E5E7EB; transition: box-shadow .2s, transform .2s;
}
.jnl-card:hover { box-shadow: 0 10px 32px rgba(13,30,74,.09); transform: translateY(-4px); }
.jnl-card-thumb {
  display: block; height: 200px; overflow: hidden; background: #EFF3FF;
}
.jnl-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.jnl-card:hover .jnl-card-thumb img { transform: scale(1.05); }
.jnl-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #EFF3FF; color: #A5B4FC; font-size: 2.2rem;
}
.jnl-card-info { padding: 1.2rem 1.3rem 1.4rem; }
.jnl-card-meta {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .73rem; color: var(--grey); margin-bottom: .6rem;
}
.jnl-cat-label {
  background: #EFF3FF; color: var(--blue);
  padding: .12rem .55rem; border-radius: 20px; font-weight: 700; font-size: .7rem;
}
.jnl-card-info h3 {
  font-size: 1rem; font-weight: 700; line-height: 1.45;
  margin-bottom: .5rem; color: var(--dark);
}
.jnl-card-info h3 a { color: inherit; }
.jnl-card-info h3 a:hover { color: var(--blue); }
.jnl-card-info p {
  font-size: .85rem; color: var(--grey); line-height: 1.65; margin-bottom: .85rem;
}
.jnl-read-link {
  font-size: .8rem; font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s;
}
.jnl-read-link:hover { gap: .55rem; }

/* Pagination */
.jnl-pagination {
  display: flex; gap: .4rem; justify-content: center; margin-top: 3rem;
}
.jnl-page {
  width: 36px; height: 36px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 600;
  border: 1.5px solid #E5E7EB; color: var(--dark); background: white;
  transition: var(--transition);
}
.jnl-page.active, .jnl-page:hover { background: var(--blue); border-color: var(--blue); color: white; }

/* Empty */
.jnl-empty { text-align: center; padding: 5rem 1rem; color: var(--grey); }
.jnl-empty i { font-size: 3rem; opacity: .15; display: block; margin-bottom: 1rem; }
.jnl-empty p { font-size: 1rem; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: var(--blue); opacity: .07;
  font-family: Georgia, serif; line-height: 1;
}
.stars { color: #F59E0B; margin-bottom: .75rem; font-size: 1rem; }
.testimonial-card p { font-size: 1rem; color: #1F2937; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: var(--light);
  display: flex; align-items: center; justify-content: center; color: var(--grey);
  font-size: 1.2rem; overflow: hidden; flex-shrink: 0;
}
.author-img img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 1rem; }
.author-org { font-size: .9rem; color: var(--grey); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start;
}
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--grey); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .95rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 700; font-size: 1rem; }
.contact-item-text span { font-size: .95rem; color: var(--grey); }

.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block; font-weight: 600; font-size: .95rem;
  margin-bottom: .4rem; color: var(--dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid #E5E7EB; border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition); outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--blue); color: var(--white);
  padding: .85rem 2.2rem; border-radius: 8px;
  font-weight: 700; font-size: 1.05rem; border: none;
  cursor: pointer; transition: var(--transition); width: 100%;
}
.btn-submit:hover { background: var(--green); transform: translateY(-1px); }
.form-msg { margin-top: .75rem; font-size: .95rem; font-weight: 600; }
.form-msg.success { color: var(--green); }
.form-msg.error   { color: #DC2626; }

/* ===== FOOTER ===== */
.site-footer { background: #071230; color: rgba(255,255,255,.75); padding: 60px 2rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem;
}
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo-fallback {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.2rem;
}
.footer-tagline { font-size: .92rem; line-height: 1.75; max-width: 260px; margin-top: .75rem; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .85rem; transition: var(--transition);
}
.social-link:hover { background: white; color: #071230; border-color: white; }
.footer-col h4 { color: white; font-weight: 700; margin-bottom: 1.25rem; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a { font-size: .92rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: rgba(255,255,255,.6); margin-bottom: .65rem; }
.footer-contact-list li i { margin-top: .2rem; color: rgba(255,255,255,.4); font-size: .8rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.35);
  max-width: 1200px; margin: 0 auto;
}

/* ===== PAGE HERO (shared inner-page hero system) ===== */
.page-hero {
  min-height: 55vh;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 130px 2rem 70px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(5, 15, 40, 0.88);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
.page-canvas {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 3; max-width: 700px;
}
.page-hero-content .hero-badge {
  animation: badgePop .6s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: .1s;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.18; margin-bottom: 1rem;
  animation: fadeUp .7s ease both; animation-delay: .3s;
}
.page-hero-content p {
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  max-width: 540px; margin: 0 auto;
  line-height: 1.75;
  animation: fadeUp .7s ease both; animation-delay: .5s;
}

/* Hero animated chart (services page) */
.hero-chart {
  position: absolute; bottom: 0; right: 5%; z-index: 3;
  display: flex; align-items: flex-end; gap: 6px;
  height: 90px; opacity: .18;
  animation: fadeIn 1s ease both; animation-delay: .8s;
}
.hero-chart-bar {
  width: 18px; background: var(--white);
  border-radius: 3px 3px 0 0; transform-origin: bottom;
  animation: barGrow .9s cubic-bezier(.22,.68,0,1.1) both;
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ===== SCROLL-REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }
.stagger-6 { transition-delay: .6s; }

/* ===== JOURNEY (About page — horizontal diamond timeline) ===== */
.journey-grid { display: flex; flex-direction: column; gap: 4rem; }

/* Each row: flex line of [diamond] [node] [diamond] [node] … */
.journey-row {
  display: flex;
  align-items: center;
  position: relative;
}

/* Horizontal track line at the diamond equator — sits inside each row */
.journey-track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

/* RTL rows reverse flow direction */
.journey-row-rtl { flex-direction: row-reverse; }

/* Downward arrowhead (▼) at the bend point of non-last rows */
.journey-row-ltr:not(:last-child)::before,
.journey-row-rtl:not(:last-child)::before {
  content: '';
  position: absolute;
  top: calc(50% + 1px);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 11px solid var(--blue);
  z-index: -1;
  pointer-events: none;
}
.journey-row-ltr:not(:last-child)::before { right: -7px; }
.journey-row-rtl:not(:last-child)::before { left: -7px; }

/* Vertical drop connecting last diamond of row N to first diamond of row N+1 */
.journey-row-ltr:not(:last-child)::after,
.journey-row-rtl:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2px;
  height: calc(100% + 4rem);
  background: var(--blue);
  z-index: -1;
  pointer-events: none;
}
.journey-row-ltr:not(:last-child)::after { right: 0; }
.journey-row-rtl:not(:last-child)::after { left: 0; }

/* Entry arrowhead: ► on left for LTR rows, ◄ on right for RTL rows */
.journey-arrow-tip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: -1;
  pointer-events: none;
}
.journey-row-ltr .journey-arrow-tip {
  left: 0;
  border-left: 16px solid var(--blue);   /* points right ► */
}
.journey-row-rtl .journey-arrow-tip {
  right: 0;
  border-right: 16px solid var(--blue);  /* points left ◄ */
}

/* Item slot — each diamond lives here */
.journey-item {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.journey-item.journey-empty { visibility: hidden; pointer-events: none; }

/* ── HEXAGON CARD (the main shape) ────────────────────────── */
.journey-diamond-card {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.1547;  /* 2/√3 — correct ratio for a regular flat-top hexagon */
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  position: relative;
  overflow: hidden;
  background: var(--blue);
  transition: transform .35s ease, filter .35s ease;
  cursor: default;
}
.journey-diamond-card:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* Uploaded image / video fills the hexagon */
.journey-card-media {
  position: absolute; inset: 0; z-index: 0;
}
.journey-card-media img,
.journey-card-media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Dark gradient — ensures year + text are always readable */
.journey-diamond-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(13,30,74,.10) 0%,
    rgba(13,30,74,.80) 60%);
  z-index: 1;
}

/* Year (header) + title + description inside the hexagon */
.journey-card-body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 18% 20%;
  color: var(--white);
}
.journey-year {
  font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: .4rem; letter-spacing: -.03em;
}
.journey-card-body h4 {
  font-size: .85rem; font-weight: 700;
  color: var(--white); margin-bottom: .25rem; line-height: 1.2;
}
.journey-card-body p {
  font-size: .75rem; color: rgba(255,255,255,.82);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CONNECTING NODE (circle between diamonds) ─────────────── */
.journey-connector {
  flex: 0 0 48px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.journey-connector.journey-empty { visibility: hidden; }

.journey-node {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
  display: block;
  flex-shrink: 0;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 992px) {
  .journey-row { flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
  .journey-row::before { display: none; }
  .journey-connector { display: none; }
  .journey-item { flex: 0 0 auto; }
  .journey-track { display: none; }
  .journey-row:not(:last-child)::before { display: none; }
  .journey-row:not(:last-child)::after { display: none; }
  .journey-arrow-tip { display: none; }
}
@media (max-width: 768px) {
  .journey-diamond-card { width: 240px; max-width: 240px; }
  .journey-year { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .journey-diamond-card { width: 180px; max-width: 180px; }
  .journey-year { font-size: 1.3rem; }
  .journey-card-body p { display: none; }
}

/* ===== CONTACT FORM SLIDE-UP ===== */
.contact-form-wrap {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: .2s;
}
.contact-form-wrap.visible { opacity: 1; transform: translateY(0); }

/* mobile — page-hero */
@media (max-width: 768px) {
  .page-hero { background-attachment: scroll; min-height: 45vh; }
  .hero-chart { display: none; }
}


/* ===== SINGLE POST ===== */
.post-content { max-width: 760px; margin: 0 auto; padding: 60px 2rem; }
.post-header { margin-bottom: 2rem; }
.post-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.post-meta { color: var(--grey); font-size: .95rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.post-image { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }
.post-body { font-size: 1rem; line-height: 1.9; color: #1F2937; }
.post-body h2, .post-body h3 { color: var(--dark); margin: 1.75rem 0 .75rem; font-weight: 700; }
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body img { border-radius: 8px; margin: 1rem 0; }

/* ===== ALERTS ===== */
.alert {
  padding: .9rem 1.2rem; border-radius: 8px;
  font-size: .97rem; font-weight: 500; margin-bottom: 1rem;
}
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid-3col { grid-template-columns: 1fr; }
  .about-centre-label { flex-direction: row; padding: 1rem 0; }
  .about-centre-line { width: 60px; height: 2px; }
  .about-centre-badge { writing-mode: horizontal-tb; transform: none; font-size: 1.1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-inner > .footer-brand { grid-column: 1 / -1; }
  .jnl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner nav, .header-inner .btn-cta { display: none; }
  .menu-toggle { display: block; }
  nav.mobile-open { display: block !important; position: fixed; top: 70px; left: 0; right: 0; background: #071230; padding: 1rem 2rem 2rem; box-shadow: 0 8px 24px rgba(0,0,0,.4); }
  nav.mobile-open ul { flex-direction: column; gap: 0; }
  nav.mobile-open ul li a { display: block; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { gap: 1rem; }
  .hero { background-attachment: scroll; }
  .jnl-grid { grid-template-columns: 1fr; }
  .jnl-tabs-bar { top: 0; }
}
