/* ============================================
   PharBioMed Life Sciences — Design System
   Pure HTML/CSS. No frameworks. No JavaScript.
   ============================================ */

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

:root {
  /* Brand palette - hybrid of existing site + refined */
  --navy: #102a55;
  --navy-deep: #081a3a;
  --navy-mid: #1e4a8b;
  --red: #e3242b;
  --red-deep: #c41e24;
  --gold: #f5b942;
  --cream: #faf8f4;
  --white: #ffffff;
  --grey-50: #f7f8fa;
  --grey-100: #eef1f5;
  --grey-200: #dde2eb;
  --grey-400: #8a93a4;
  --grey-600: #4a5468;
  --grey-800: #1f2a3d;
  --black: #0a0f1a;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(16, 42, 85, 0.06);
  --shadow-md: 0 6px 24px rgba(16, 42, 85, 0.10);
  --shadow-lg: 0 18px 48px rgba(16, 42, 85, 0.14);
}

/* ============= Reset ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-mid); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============= Layout ============= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

/* ============= Top Bar ============= */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info a { color: var(--white); display: inline-flex; align-items: center; gap: 8px; }
.top-bar-info a:hover { color: var(--gold); }
.top-bar-social { display: flex; gap: 8px; }
.top-bar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
  color: var(--white);
  font-size: 13px;
  transition: background .2s;
}
.top-bar-social a:hover { background: var(--red); color: var(--white); }

/* ============= Header / Nav ============= */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; gap: 24px; }
.logo img { height: 52px; width: auto; }
.logo-tagline { font-size: 11px; color: var(--grey-600); letter-spacing: .3px; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--grey-800);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease, left .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 32px); left: 16px; }
.nav-item.has-submenu > .nav-link::before {
  content: '▾';
  font-size: 10px;
  margin-right: 6px;
  vertical-align: 2px;
  color: var(--grey-400);
}
.submenu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 280px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 50;
}
.nav-item:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--grey-800);
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
}
.submenu a:hover { background: var(--grey-50); color: var(--red); padding-left: 18px; }
.submenu a small { display: block; color: var(--grey-400); font-weight: 400; font-size: 12px; margin-top: 2px; }

/* Mobile menu - CSS only with checkbox hack */
.mobile-toggle { display: none; font-size: 24px; color: var(--navy); padding: 6px 8px; }
#mobile-menu-toggle { display: none; }

/* ============= Hero / Slider (CSS-only auto-rotate, 5s per slide) ============= */
.hero {
  position: relative;
  height: 540px;
  background: var(--black);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideRotate 10s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
@keyframes slideRotate {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 32px;
  position: absolute;
  bottom: 60px;
  left: 24px;
}

/* ============= Page Banner (interior pages) ============= */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(227, 36, 43, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(245, 185, 66, 0.1) 0%, transparent 50%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}
.page-banner-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(245, 185, 66, .4);
  border-radius: 20px;
}
.breadcrumb { font-size: 14px; margin-top: 16px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: var(--gold); }

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  border-radius: 6px;
  transition: all .25s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(227, 36, 43, 0.3);
}
.btn-primary:hover {
  background: var(--red-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 36, 43, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============= Typography helpers ============= */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--grey-600);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Separator decoration */
.separator {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 0 20px;
  border-radius: 2px;
}
.separator.centered { margin-left: auto; margin-right: auto; }

/* ============= Who We Are section ============= */
.intro-block {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
}
.intro-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(16, 42, 85, .015) 60px, rgba(16, 42, 85, .015) 61px);
  pointer-events: none;
}
.intro-block .container { position: relative; z-index: 2; }
.intro-text p { color: var(--grey-600); line-height: 1.85; margin-bottom: 18px; font-size: 16px; }
.intro-text b, .intro-text strong { color: var(--navy); font-weight: 600; }

/* ============= Vision/Mission split ============= */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}
.vm-card p { color: var(--grey-600); line-height: 1.8; }

/* ============= Values infographic + list ============= */
.values-section {
  padding: 80px 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.values-list { display: flex; flex-direction: column; gap: 22px; }
.values-list-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--grey-50);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  transition: all .25s ease;
}
.values-list-item:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateX(6px); }
.values-list-item .tick {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2px;
}
.values-list-item strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 4px;
}
.values-list-item span { color: var(--grey-600); font-size: 14px; line-height: 1.6; }
.values-image { text-align: center; }
.values-image img { max-width: 460px; margin: 0 auto; }

/* ============= Services Grid ============= */
.services-section {
  padding: 100px 0;
  background: var(--grey-50);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all .3s ease;
  border: 1px solid var(--grey-100);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 84px; height: 84px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f6f9ff 0%, #eaf0fb 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 30px;
  transition: transform .3s ease;
  border: 1px solid rgba(16, 42, 85, 0.08);
}
.service-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.service-card:hover .service-card-icon { transform: scale(1.08) rotate(-5deg); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 20px;
  min-height: 64px;
}
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.service-card .read-more::after { content: '→'; transition: transform .2s; }
.service-card .read-more:hover::after { transform: translateX(4px); }

/* Featured service card (e.g., AI Analytics) */
.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-color: var(--navy-deep);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.85); }
.service-card.featured .service-card-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(255,255,255,0.2);
}
.service-card.featured .service-card-icon img {
  filter: brightness(0) invert(1);
}
.service-card.featured .read-more { color: var(--gold); }
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--red)); transform: scaleX(1); }
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 12px;
}

/* ============= Stats Band ============= */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(227, 36, 43, .15) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(245, 185, 66, .12) 0%, transparent 40%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ============= Page Content (interior) ============= */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-grid.reverse > div:first-child { order: 2; }
.content-grid img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.content-grid h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.content-grid h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin: 28px 0 14px;
  font-weight: 600;
}
.content-grid p { color: var(--grey-600); line-height: 1.8; margin-bottom: 16px; }

/* Bulleted feature lists */
.feature-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--grey-800);
  font-size: 15px;
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(227, 36, 43, .12);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
}

/* Service detail header image - large process diagrams */
.service-hero {
  text-align: center;
  margin-bottom: 48px;
}
.service-hero img {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
}
/* Secondary in-page diagrams */
.service-diagram {
  text-align: center;
  margin: 56px 0;
}
.service-diagram img {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Two-column lists block */
.two-col-block {
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0;
}
.two-col-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Subsections in service pages */
.subsection-header {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--grey-100);
}

/* ============= AI Analytics SaaS Hub ============= */
.category-section { margin-bottom: 72px; }
.category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--grey-100);
}
.category-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}
.category-count {
  color: var(--grey-400);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.module-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.module-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 36, 43, .08);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.module-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.module-card p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.module-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.module-card-cta::after { content: '→'; transition: transform .2s; }
.module-card:hover .module-card-cta { color: var(--red); }
.module-card:hover .module-card-cta::after { transform: translateX(4px); }

/* Engagement model cards */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.engagement-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.engagement-card.center {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.04);
}
.engagement-card.center h3 { color: var(--white); }
.engagement-card.center p { color: rgba(255,255,255,.85); }
.engagement-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy);
}
.engagement-card p { color: var(--grey-600); font-size: 14px; line-height: 1.7; }

/* ============= Tables ============= */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 32px 0;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--grey-100);
  font-size: 14px;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  letter-spacing: .3px;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--grey-50); }

/* ============= CTA Band ============= */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.cta-band p { font-size: 18px; margin-bottom: 32px; opacity: .95; }
.cta-band .btn-primary { background: var(--white); color: var(--red); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.cta-band .btn-primary:hover { background: var(--navy); color: var(--white); }

/* ============= Forms ============= */
.form-block {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--grey-800);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(30, 74, 139, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact info block */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
}
.contact-info-card p { color: rgba(255,255,255,.85); margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
}
.contact-info-list .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info-list .value, .contact-info-list a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.contact-info-list a:hover { color: var(--gold); }

/* ============= Footer ============= */
.footer {
  background: var(--navy-deep);
  color: var(--grey-200);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--red);
}
.footer-logo img { height: 50px; background: var(--white); padding: 8px 12px; border-radius: 6px; margin-bottom: 18px; }
.footer-about { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.7); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all .2s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item .icon { color: var(--gold); font-size: 16px; margin-top: 2px; }
.footer-contact-item .text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.8); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: var(--gold); }

/* ============= Why-pick-us strip ============= */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.why-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  transition: all .25s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-item p { font-size: 13px; color: var(--grey-600); line-height: 1.5; }

/* ============= Reg badges (regulatory compliance) ============= */
.reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 0;
}
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
}
.reg-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ============= Misc ============= */
.text-align-justify { text-align: justify; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mt-2 { margin-top: 16px; }

/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .services-grid, .modules-grid, .engagement-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid, .values-grid, .content-grid, .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse > div:first-child { order: 0; }
}
@media (max-width: 768px) {
  .section, .services-section, .content-section, .values-section, .intro-block { padding: 60px 0; }
  .top-bar { font-size: 12px; }
  .top-bar-info { gap: 12px; }
  .mobile-toggle { display: block; }
  .nav { display: none; }
  #mobile-menu-toggle:checked ~ .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 12px;
    align-items: stretch;
    gap: 0;
  }
  #mobile-menu-toggle:checked ~ .nav .nav-link { padding: 14px 16px; border-bottom: 1px solid var(--grey-100); }
  #mobile-menu-toggle:checked ~ .nav .submenu {
    position: static;
    opacity: 1; visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    transform: none;
    background: var(--grey-50);
    border-radius: 0;
  }
  .header-inner { position: relative; }
  .services-grid, .modules-grid, .engagement-grid, .stats-grid { grid-template-columns: 1fr; }
  .why-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .engagement-card.center { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-block, .contact-info-card { padding: 28px; }
  .hero { height: 380px; }
  .hero-cta { position: static; padding: 0 24px; margin-top: -80px; }
  .stat-number { font-size: 40px; }
  .cta-band h2 { font-size: 28px; }
  .page-banner { padding: 60px 0 40px; }
}
