/* ============================================================
   Multiplier AI — Main Stylesheet
   PHP Hybrid Site | GoDaddy cPanel Ready
   Primary: #7C3784 | Font: Montserrat
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----- Utility ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo img {
  height: 60px;
  width: auto;
}

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

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
  padding: 12px 10px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #7C3784;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover { color: #68266F; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #7C3784;
  padding: 12px 16px;
  border-radius: 31px;
  margin-left: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: #5e2a64; color: #fff; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-btn:hover { color: #68266F; }

.nav-chevron {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e4e7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li { border-top: 1px solid #f0edf5; }
.nav-dropdown-menu li:first-child { border-top: none; }

.nav-dropdown-menu a,
.nav-dropdown-menu .nav-dd-cat {
  display: block;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #414141;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu .nav-dd-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7C3784;
  background: #f9f5fc;
  cursor: default;
  padding: 8px 18px 6px;
}

.nav-dropdown-menu a:hover { background: #f5edf7; color: #68266F; }

/* Sub-dropdown */
.nav-has-sub { position: relative; }

.nav-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 4px;
  background: #ffffff;
  border: 1px solid #e5e4e7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 240px;
  padding: 8px 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-has-sub:hover .nav-sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-arrow { float: right; color: #7C3784; }

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #414141;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 1150px) {
  .navbar-toggle { display: flex; }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 2px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-nav.open { display: flex; }

  .nav-cta { margin-left: 0; margin-top: 8px; }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown-menu.open { display: block; }

  .nav-sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin-left: 12px;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: #F0ECF7;
  padding: 64px 0 110px; /* extra bottom padding = space for the overlapping card */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 32px;
  align-items: flex-end;
}

.hero-left {
  padding-bottom: 72px;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 400;
  color: #333;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-desc strong { font-weight: 700; color: #111; }

.hero-btn {
  display: inline-block;
  padding: 15px 32px;
  background: #7C3784;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 40px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.hero-btn:hover {
  background: #5e2a64;
  color: #fff;
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-right img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

@media (max-width: 1024px) {
  .hero-inner { padding: 0 40px; }
}
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    text-align: center;
    align-items: center;
  }
  .hero-left { padding-bottom: 32px; }
  .hero-right { justify-content: center; order: -1; }
  .hero-right img { max-height: 260px; margin: 0 auto; }
}

/* ============================================================
   TRUSTED LOGOS — floating purple card overlapping hero bottom
   ============================================================ */
.trusted-section {
  background: transparent;  /* see-through so lavender hero shows behind the card */
  padding: 0 60px 0;
  margin-top: -90px;        /* pull up so card overlaps the hero's bottom padding */
  position: relative;
  z-index: 2;               /* float above the hero background */
}

.trusted-inner {
  background: #7C3784;
  border-radius: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 48px 32px;
  box-shadow: 0 12px 48px rgba(60, 10, 80, 0.22);
}

.trusted-title {
  text-align: center;
  font-size: clamp(0.82rem, 1.3vw, 0.97rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

/* Single 4-column grid for 2 rows of logos */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
  align-items: center;
  justify-items: center;
}

/* hide old .trusted-half wrapper — now logos sit directly in grid */
.trusted-half { display: contents; }

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.trusted-logo img {
  max-width: clamp(70px, 10vw, 130px);
  max-height: clamp(28px, 3.2vw, 44px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .trusted-section { padding: 0 20px 0; margin-top: -60px; }
  .trusted-inner { padding: 24px 20px 28px; border-radius: 14px; }
  .trusted-grid { grid-template-columns: repeat(4, 1fr); gap: 14px 12px; }
}
@media (max-width: 600px) {
  .trusted-section { margin-top: -40px; padding: 0 14px 0; }
  .trusted-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================================
   AGENTS SECTION
   ============================================================ */
.agents-section {
  padding: clamp(40px, 5vw, 80px) clamp(20px, 5vw, 60px);
  padding-top: clamp(120px, 12vw, 160px); /* extra top space to clear the overlapping trusted card */
  background: #ffffff;
}

.agents-inner { max-width: 1200px; margin: 0 auto; }

.agents-header { text-align: center; margin-bottom: clamp(28px, 3.5vw, 44px); }

.agents-heading {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 10px;
}

.agents-subheading {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
}

/* Agent card — hover uses only GPU-compositable properties (transform, opacity).
   Color changes are instant (no transition) to avoid non-composited repaints. */
.agent-card {
  background: #F4F1F6;
  border: 1px solid #E6E0EB;
  border-radius: 14px;
  padding: clamp(20px, 2.2vw, 28px) clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.agent-card:hover {
  background: #7C3784;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,58,132,0.22);
}

.agent-card-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7C3784;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-card:hover .agent-card-num { color: rgba(255,255,255,0.6); }

.agent-card-line {
  width: 32px;
  height: 2px;
  background: #7C3784;
  border-radius: 2px;
  transition: background 0.3s;
}

.agent-card:hover .agent-card-line { background: rgba(255,255,255,0.4); }

.agent-card-title {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.35;
}

.agent-card:hover .agent-card-title { color: #ffffff; }

.agent-card-desc {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.65;
}

.agent-card:hover .agent-card-desc { color: #EFD8F5; }

@media (max-width: 1099px) and (min-width: 541px) {
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .agents-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   REAL OUTCOMES
   ============================================================ */
.ro-section { background: #ffffff; padding: clamp(32px, 5vw, 64px) 0; }

.ro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.ro-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.ro-item {
  padding: clamp(14px, 2vw, 22px) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ro-item-content { flex: 1; }

.ro-item-name {
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 8px;
}

.ro-item-desc {
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
}

.ro-item-icon {
  flex-shrink: 0;
  width: clamp(28px, 3vw, 40px);
  height: clamp(28px, 3vw, 40px);
}

.ro-item-icon img { width: 100%; height: 100%; object-fit: contain; }

.ro-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, #7C3784 0%, #7C3784 80%, transparent 100%);
  border: none;
}

.ro-img-main { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

@media (max-width: 600px) {
  .ro-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cs-section { background: #ffffff; }

.cs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 5vw, 60px);
}

.cs-header { text-align: center; margin-bottom: clamp(14px, 2vw, 24px); }

.cs-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cs-subheading {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(16px, 3.5vw, 48px);
  align-items: start;
}

.cs-img-wrap { border-radius: 14px; overflow: hidden; }

.cs-img-wrap img { width: 100%; height: auto; object-fit: contain; border-radius: 14px; }

.cs-right { display: flex; flex-direction: column; gap: 0; }

.cs-accordion { border-bottom: 1px solid #7C3784; }

.cs-accordion-header { padding: 14px 0 6px; }

.cs-accordion-title {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.3;
}

.cs-accordion-body {
  font-size: clamp(0.78rem, 1.1vw, 0.975rem);
  font-weight: 400;
  color: #444444;
  line-height: 1.7;
  padding-bottom: 14px;
}

.cs-accordion.highlight {
  background: #7C3784;
  border-radius: 10px;
  border: none !important;
  padding: 20px;
  margin-top: 16px;
}

.cs-accordion.highlight .cs-accordion-title { font-weight: 700; color: #ffffff; }
.cs-accordion.highlight .cs-accordion-body { color: #ffffff; padding-bottom: 0; }

@media (max-width: 480px) {
  .cs-grid { grid-template-columns: 1fr; }
}

/* ── Case Study page — new elements ─────────────────────── */

/* Stats bar */
.cs-stats-bar {
  background: #1A0B30;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 60px);
}
.cs-stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cs-stat-item { text-align: center; flex: 1; min-width: 140px; }
.cs-stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
.cs-stat-lbl {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  color: #c9b3d9;
  font-weight: 500;
  line-height: 1.4;
}
.cs-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .cs-stats-grid { justify-content: center; gap: 24px 32px; }
  .cs-stat-divider { display: none; }
}

/* Featured badge */
.cs-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f9f4fb;
  border: 1.5px solid #cbb8e0;
  color: #7C3784;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* Tag row under featured image */
.cs-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.cs-industry-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cs-tag-pharma   { background: #e8f4ff; color: #1565c0; border: 1px solid #bbdefb; }
.cs-tag-oncology { background: #fce4ec; color: #b71c1c; border: 1px solid #f8bbd0; }
.cs-tag-agency   { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.cs-tag-hospital { background: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }
.cs-tag-hcp      { background: #f3e5f5; color: #6a1b9a; border: 1px solid #e1bee7; }

/* Metrics row under featured accordion */
.cs-metrics-row {
  display: flex;
  gap: 0;
  margin-top: 24px;
  border: 1.5px solid #e0d5f0;
  border-radius: 12px;
  overflow: hidden;
}
.cs-metric {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1.5px solid #e0d5f0;
}
.cs-metric:last-child { border-right: none; }
.cs-metric-num {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #7C3784;
  line-height: 1;
}
.cs-metric-lbl {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  font-weight: 500;
}

/* Filter bar */
.cs-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 36px;
}
.cs-filter-pill {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid #cbb8e0;
  background: #ffffff;
  color: #7C3784;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.cs-filter-pill:hover,
.cs-filter-pill.active {
  background: #7C3784;
  color: #ffffff;
  border-color: #7C3784;
}

/* Cards grid */
.cs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .cs-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cs-cards-grid { grid-template-columns: 1fr; } }

.cs-card {
  background: #ffffff;
  border: 1.5px solid #e8e2f0;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(124,58,132,0.13);
  border-color: #cbb8e0;
}
.cs-card-top { display: flex; align-items: center; gap: 8px; }
.cs-card-headline {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.35;
}
.cs-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
}
.cs-card-metrics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 16px;
  background: #f9f4fb;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3a1a45;
}
.cs-card-metrics li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.cs-metric-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7C3784;
  margin-top: 5px;
}

/* Process steps */
.cs-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) { .cs-process-grid { grid-template-columns: 1fr; gap: 24px; } }

.cs-process-step { display: flex; flex-direction: column; gap: 12px; }
.cs-process-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #e8d0f0;
  line-height: 1;
}
.cs-process-line {
  width: 48px;
  height: 3px;
  background: #7C3784;
  border-radius: 2px;
}
.cs-process-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}
.cs-process-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Testimonial / Quote */
.cs-quote-section {
  background: linear-gradient(135deg, #7C3784 0%, #4a1a52 100%);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 60px);
  text-align: center;
}
.cs-quote-inner { max-width: 780px; margin: 0 auto; }
.cs-quote-icon {
  font-size: 80px;
  line-height: 0.6;
  color: rgba(255,255,255,0.2);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
}
.cs-quote-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 28px;
}
.cs-quote-role {
  font-size: 14px;
  font-weight: 700;
  color: #f0d8f2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cs-quote-company {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ============================================================
   WHY US
   ============================================================ */
.whyus-section {
  background-image: url('https://mlmsgzbi9bun.i.optimole.com/cb:nQAU.8b/w:auto/h:auto/q:mauto/f:best/https://multiplierai.co/wp-content/uploads/2026/03/Frame-1618873183.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.whyus-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.whyus-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.whyus-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 400;
  color: #D8D5D5;
  line-height: 1.7;
}

.whyus-spacer { height: 20px; }

.whyus-content {
  font-size: 19px;
  font-weight: 400;
  color: #D8D5D5;
  line-height: 1.7;
}

.whyus-bold { font-weight: 700; margin-bottom: 16px; }

.whyus-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.whyus-list li { margin-bottom: 10px; }

@media (max-width: 768px) {
  .whyus-inner { grid-template-columns: 1fr; }
  .whyus-left { display: none; }
}

/* ============================================================
   TRUST & SECURITY
   ============================================================ */
.trust-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 5vw, 60px);
}

.trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.trust-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}

.trust-spacer { height: 28px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.trust-img { width: 80px; height: auto; object-fit: contain; }

.trust-item-title {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.4;
}

.trust-enterprise { font-size: 1rem; color: #1A1A1A; margin-top: 8px; }

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================================
   WHO IS IT FOR
   ============================================================ */
.wif-section {
  background: #F7F6F9;
  margin-top: 40px;
  padding: 40px 0 0;
}

.wif-inner { max-width: 1221px; margin: 0 auto; padding: 0 20px; }

.wif-heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 48px;
  color: #000000;
  text-align: center;
}

.wif-subheading {
  font-size: 20px;
  font-weight: 400;
  color: #161616;
  text-align: center;
  margin-top: 20px;
}

.wif-spacer-md { height: 30px; }

.wif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1170px;
  margin: 0 auto;
}

.wif-role { display: flex; flex-direction: column; align-items: center; padding: 0 16px; }

.wif-role-img { width: 100%; max-width: 100%; border-radius: 12px; }

.wif-role-title {
  font-size: 19px;
  font-weight: 600;
  color: #161616;
  text-align: center;
  margin-top: 15px;
}

.wif-cta-text {
  font-size: 22px;
  font-weight: 500;
  color: #161616;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .wif-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .wif-heading { font-size: 20px; line-height: 1.4; }
  .wif-cta-text { font-size: 18px; }
}

/* ============================================================
   HEALTHCARE OUTCOMES
   ============================================================ */
.hco-section {
  background-image: url('https://mlmsgzbi9bun.i.optimole.com/cb:nQAU.8b/w:1920/h:720/q:mauto/f:best/https://multiplierai.co/wp-content/uploads/2023/12/image-38.png');
  background-size: cover;
  background-position: center;
  padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 40px);
  margin-top: 60px;
}

.hco-inner { max-width: 1140px; margin: 0 auto; }

.hco-heading {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.3;
}

.hco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hco-card {
  background: #89538D;
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hco-icon { width: 36px; height: 36px; color: #fff; }
.hco-icon svg { width: 36px; height: 36px; }

.hco-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.hco-card-desc {
  font-size: 15px;
  font-weight: 300;
  color: #fafafa;
  line-height: 1.6;
}

@media (max-width: 1024px) { .hco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hco-grid { grid-template-columns: 1fr; } }

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-section {
  background: #ffffff;
  text-align: center;
  padding: 30px 20px 50px;
}

.results-heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  color: #000000;
  margin-bottom: 16px;
}

.results-desc {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  max-width: 850px;
  margin: 0 auto 33px;
  line-height: 1.4;
}

.results-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #7C3084 100%, #f2295b 100%);
  color: #ffffff;
  border-radius: 40px;
  padding: 20px 60px;
  font-size: 20px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.results-btn:hover { opacity: 0.9; color: #fff; }

@media (max-width: 767px) {
  .results-heading { font-size: 24px; line-height: 1.3; }
  .results-desc { font-size: 18px; }
  .results-btn { padding: 16px 32px; font-size: 17px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: #ffffff; padding: clamp(40px, 5vw, 72px) 0; }

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.contact-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
}

.required { color: #e53935; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0c8d4;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus { border-color: #7C3784; }

.phone-input-wrap { display: flex; }

.phone-prefix {
  padding: 12px 14px;
  background: #f5edf7;
  border: 1px solid #d0c8d4;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #7C3784;
}

.phone-input-wrap input { border-radius: 0 8px 8px 0; }

.service-select { cursor: pointer; }

.form-consent .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;    /* vertically centres checkbox against the first line of text */
  accent-color: #7C3784;
  cursor: pointer;
}

.consent-label a { color: #7C3784; text-decoration: underline; }

.form-submit-btn {
  background: #7C3784;
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit-btn:hover { background: #5e2a64; }

.contact-right img { max-width: 100%; border-radius: 12px; }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-right { display: none; }
}

/* ============================================================
   LATEST BLOGS
   ============================================================ */
.lb-section { padding: clamp(40px, 5vw, 72px) 0; background: #ffffff; }

.lb-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

.lb-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: clamp(24px, 3vw, 40px);
  text-align: center;
}

.lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lb-card {
  background: linear-gradient(180deg, #F6F1F6 100%, #000 100%);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8dde8;
  transition: box-shadow 0.2s;
  color: #1A1A1A;
}

.lb-card:hover { box-shadow: 0 6px 24px rgba(124,58,132,0.13); }

.lb-card-thumb { display: block; width: 100%; aspect-ratio: 16/9; overflow: hidden; }

.lb-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }

.lb-card:hover .lb-card-thumb img { transform: scale(1.04); }

.lb-card-body { padding: 16px 19px; display: flex; flex-direction: column; flex: 1; gap: 12px; }

.lb-card-title { font-size: 0.95rem; font-weight: 600; color: #000; line-height: 1.4; flex: 1; }

.lb-read-more {
  display: inline-block;
  background: #7C3784;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  align-self: flex-end;
  transition: opacity 0.2s;
}

.lb-read-more:hover { opacity: 0.88; color: #fff; }

.lb-view-all-wrap { text-align: center; margin-top: 40px; }

.lb-view-all {
  display: inline-block;
  padding: 12px 36px;
  background: #7C3784;
  color: #ffffff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s;
}

.lb-view-all:hover { background: #5e2a64; color: #fff; }

@media (max-width: 1024px) { .lb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lb-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #7C3784; font-family: 'Montserrat', sans-serif; color: #ffffff; }

.footer-top {
  max-width: 1470px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 32px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-desc { font-size: 14px; line-height: 1.6; color: #ffffff; margin-bottom: 20px; }

.footer-social-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.5px; }

.footer-socials { display: flex; gap: 12px; }

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: #e6e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 15px;
  color: #7C3784;
}

.footer-social-icon:hover { background: #ffffff; }

.footer-col-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.5px; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.5);
  width: 93%;
  margin: 0 0 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}

.footer-link:hover { opacity: 0.75; }

.footer-contact-item { display: flex; flex-direction: column; margin-bottom: 16px; }

.footer-contact-item strong { font-size: 14px; font-weight: 600; margin-bottom: 4px; }

.footer-address { font-size: 13px; line-height: 1.6; }

.footer-bottom { background: #000000; padding: 12px 24px; }

.footer-bottom p { font-size: 14px; color: #ffffff; max-width: 1470px; margin: 0 auto; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blog-page { background: #fff; min-height: 100vh; }

.blog-hero {
  background: #7C3784;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px) clamp(30px, 5vw, 60px);
  text-align: center;
}

.blog-hero-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.blog-hero-subtitle { color: #f0d8f2; font-size: clamp(0.95rem, 1.6vw, 1.15rem); font-weight: 400; }

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 60px) clamp(16px, 3vw, 40px);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
  background: linear-gradient(180deg, #F6F1F6 100%, #000 100%);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8dde8;
  transition: box-shadow 0.2s;
}

.blog-card:hover { box-shadow: 0 6px 24px rgba(124,58,132,0.13); }

.blog-card-thumb { display: block; width: 100%; aspect-ratio: 16/9; overflow: hidden; }

.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }

.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-body { padding: 16px 19px; display: flex; flex-direction: column; flex: 1; gap: 12px; }

.blog-card-title { font-size: clamp(0.85rem, 1.1vw, 1rem); font-weight: 600; line-height: 1.4; flex: 1; }

.blog-card-title a { color: #000; }
.blog-card-title a:hover { color: #7C3784; }

.blog-card-footer { display: flex; justify-content: flex-end; }

.blog-read-more {
  display: inline-block;
  background: #7C3784;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 50px;
  transition: opacity 0.2s;
}

.blog-read-more:hover { opacity: 0.88; color: #fff; }

.blog-empty { text-align: center; font-size: 1rem; color: #666; padding: 60px 0; }

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e8dde8;
  background: #fff;
  color: #7C3784;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.blog-pagination a:hover { background: #7C3784; color: #fff; }
.blog-pagination .active { background: #7C3784; color: #fff; border-color: #7C3784; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog Detail */
.blog-detail-wrap {
  max-width: min(95vw, 1480px);  /* fills most of wide screens, capped at 1480px */
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 24px);
}

.blog-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 35px); /* 35px on desktop, scales down on mobile */
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-detail-meta { font-family: 'Poppins', sans-serif; font-size: 14px; color: #666; margin-bottom: 24px; }

/* Overview — intro summary displayed below the banner image */
.blog-overview {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -0.1px;
  color: #222;
  background: #f9f4fb;
  border-left: 4px solid #7C3784;
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 32px;
  font-weight: 400;
}

.blog-detail-img { width: 100%; border-radius: 12px; margin-bottom: 32px; object-fit: cover; }

/* ── Section Infographic Images ────────────────────────────────────────── */
.blog-detail-content figure.blog-section-img {
  margin: 28px 0 32px;
  padding: 0;
  display: block;
  text-align: center;
}
.blog-detail-content figure.blog-section-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(124,58,132,0.10);
  display: block;
}
@media (max-width: 900px) {
  .blog-detail-content figure.blog-section-img { margin: 20px 0 24px; }
  .blog-detail-content figure.blog-section-img img { border-radius: 8px; }
}

/* ── Blog content base ─────────────────────────────────────────────────
   Measured directly from reference: multiplierai.co/consent-enforcement…
   ──────────────────────────────────────────────────────────────────── */
.blog-detail-content {
  font-size: 16px;
  line-height: 24px;        /* reference: 24px (1.5×) */
  color: #000;
  letter-spacing: -0.1px;  /* reference: -0.1px */
  word-spacing: 0px;
}

/* ── Headings — Montserrat ─────────────────────────────────────────── */
.blog-detail-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.1px;
  color: #000;
  margin: 48px 0 15px;
}
.blog-detail-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 30px);   /* reference: 30px */
  font-weight: 600;                      /* reference: 600 */
  line-height: 1.15;                     /* reference: ~30px/30px tight */
  letter-spacing: -0.1px;
  color: #000;
  margin: 44px 0 15px;                   /* ref wrapper: margin-bottom 15px */
}
.blog-detail-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.1px;
  color: #000;
  margin: 36px 0 12px;
}
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.1px;
  color: #000;
  margin: 28px 0 10px;
}
/* No top margin when heading is the very first element */
.blog-detail-content > h1:first-child,
.blog-detail-content > h2:first-child,
.blog-detail-content > h3:first-child { margin-top: 0; }

/* ── Paragraphs — Poppins ──────────────────────────────────────────── */
.blog-detail-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;          /* reference: 24px */
  letter-spacing: -0.1px;     /* reference: -0.1px */
  word-spacing: 0px;
  color: #000;
  margin: 0 0 20px;           /* reference: margin-bottom 20px */
  text-align: justify;        /* reference: justify */
}
.blog-detail-content p:empty { display: none; }
.blog-detail-content p:last-child { margin-bottom: 0; }

/* ── Lists — Poppins, same rhythm as paragraphs ────────────────────── */
.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 28px;
  margin: 0 0 20px;
}
.blog-detail-content li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
  color: #000;
  margin-bottom: 8px;
}
.blog-detail-content li:last-child { margin-bottom: 0; }
.blog-detail-content ul ul,
.blog-detail-content ol ol { margin: 8px 0 8px 16px; }

/* ── Inline text ───────────────────────────────────────────────────── */
.blog-detail-content strong,
.blog-detail-content b { font-weight: 700; color: #000; }
.blog-detail-content em,
.blog-detail-content i { font-style: italic; }
.blog-detail-content a { color: #7C3784; text-decoration: underline; text-underline-offset: 3px; }
.blog-detail-content a:hover { color: #5a2062; }

/* ── Blockquote ────────────────────────────────────────────────────── */
.blog-detail-content blockquote {
  font-family: 'Poppins', sans-serif;
  border-left: 4px solid #7C3784;
  background: #f9f4fb;
  padding: 16px 22px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #333;
  font-size: 16px;
  line-height: 24px;
}
.blog-detail-content blockquote p { margin-bottom: 0; text-align: left; }

/* ── Code ──────────────────────────────────────────────────────────── */
.blog-detail-content code {
  background: #f2eef5;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  color: #7C3784;
  letter-spacing: 0;
}
.blog-detail-content pre {
  background: #1a1a2e;
  color: #e8e8e8;
  padding: 20px 24px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 28px 0;
  font-size: 0.9em;
  line-height: 1.6;
}
.blog-detail-content pre code { background: none; color: inherit; padding: 0; font-size: inherit; }

/* ── Images ────────────────────────────────────────────────────────── */
.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 28px auto;
  display: block;
}

/* ── Tables ────────────────────────────────────────────────────────── */
.blog-detail-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.blog-detail-content th {
  font-family: 'Montserrat', sans-serif;
  background: #7C3784; color: #fff; padding: 11px 16px; text-align: left; font-weight: 600;
}
.blog-detail-content td {
  font-family: 'Poppins', sans-serif;
  padding: 10px 16px; border-bottom: 1px solid #ece6f0;
  line-height: 24px;
}
.blog-detail-content tr:nth-child(even) td { background: #faf7fc; }

/* ── Misc ──────────────────────────────────────────────────────────── */
.blog-detail-content hr { border: none; border-top: 1px solid #e4dcea; margin: 36px 0; }
.blog-detail-content mark { background: #fde68a; padding: 1px 4px; border-radius: 3px; }
.blog-detail-content figcaption {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #666; text-align: center; margin-top: 8px;
}

.blog-back {
  display: inline-block;
  margin-bottom: 24px;
  color: #7C3784;
  font-weight: 600;
  font-size: 14px;
}

.blog-back:hover { opacity: 0.8; }

/* ============================================================
   BLOG 3-COLUMN LAYOUT
   Left:   TOC sidebar  (220px, sticky)
   Centre: Article body (1fr — gets the bulk of the space)
   Right:  Related / future sidebar (220px)
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 28px;
  align-items: start;
  margin-top: 32px;
}
/* No TOC → content + right sidebar only */
.blog-layout--no-toc {
  grid-template-columns: 1fr 220px;
}
/* Sticky left TOC */
.blog-toc-sidebar {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0d0e8 transparent;
}
.blog-toc-sidebar::-webkit-scrollbar { width: 4px; }
.blog-toc-sidebar::-webkit-scrollbar-thumb { background: #e0d0e8; border-radius: 4px; }

/* Right sidebar placeholder */
.blog-right-sidebar {
  position: sticky;
  top: 88px;
}
.blog-right-sidebar-inner {
  background: #f9f4fb;
  border: 1px solid #e6d5ec;
  border-radius: 12px;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Responsive breakpoints ──────────────────────────────── */
@media (max-width: 1200px) {
  .blog-layout          { grid-template-columns: 200px 1fr 200px; gap: 22px; }
}
@media (max-width: 1024px) {
  .blog-layout          { grid-template-columns: 200px 1fr; gap: 22px; }
  .blog-layout--no-toc  { grid-template-columns: 1fr; }
  .blog-right-sidebar   { display: none; }
}
@media (max-width: 768px) {
  .blog-layout,
  .blog-layout--no-toc  { grid-template-columns: 1fr; gap: 0; }
  .blog-toc-sidebar     { position: static; max-height: none; margin-bottom: 24px; }
  .blog-right-sidebar   { display: none; }
}
@media (max-width: 600px) {
  .blog-detail-wrap { padding: 20px 14px; }
  .blog-layout      { margin-top: 16px; }
}

/* ── TOC collapse animation ──────────────────────────────── */
.blog-toc-list {
  transition: max-height 0.3s ease, opacity 0.25s ease;
  max-height: 2000px;
  opacity: 1;
  overflow: hidden;
}
.blog-toc--collapsed .blog-toc-list {
  max-height: 0;
  opacity: 0;
}
/* Collapse toggle button */
.toc-collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #7C3784;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.toc-collapse-btn:hover { opacity: 0.7; }
.toc-collapse-chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #7C3784;
  border-bottom: 2px solid #7C3784;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -3px;
}
.blog-toc--collapsed .toc-collapse-chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}
/* Header row: title + collapse button side by side */
.blog-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.blog-toc-header .blog-toc-title { margin-bottom: 0; }

/* ============================================================
   BLOG TABLE OF CONTENTS  (inside the sidebar)
   ============================================================ */
.blog-toc {
  background: #f9f4fb;
  border: 1px solid #e6d5ec;
  border-left: 4px solid #7C3784;
  border-radius: 10px;
  padding: 20px 22px;
}

.blog-toc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7C3784;
  margin: 0 0 14px;
}

/* No numbers — clean bullet-free list */
.blog-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-toc-item {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 6px;
  font-size: 13.5px;
  line-height: 1.5;
}

.blog-toc-item a {
  color: #444;
  text-decoration: none;
  display: block;
  padding: 3px 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.blog-toc-item a:hover,
.blog-toc-item a.active {
  color: #7C3784;
  background: #f0e6f5;
}

/* h3 entries indented */
.blog-toc-level-3 {
  margin-left: 14px;
  font-size: 13px;
}
.blog-toc-level-3 a { color: #666; }
.blog-toc-level-3 a:hover { color: #7C3784; }

/* ============================================================
   BLOG FAQ ACCORDION
   ============================================================ */
.blog-faq { margin: 2.5em 0; }

/* FAQ h2 heading — Montserrat to match other headings */
.blog-faq > h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(22px, 3vw, 30px) !important;
  color: #1A1A1A;
  margin-bottom: 20px !important;
}

.faq-accordion {
  border: 1px solid #e2d5ea;
  border-radius: 14px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e2d5ea;
}
.faq-item:last-child { border-bottom: none; }

/* Question button — Montserrat */
.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  background: #fff;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.5;
}
.faq-question:hover { background: #faf5fc; }
.faq-question[aria-expanded="true"] {
  background: #f5edf7;
  color: #7C3784;
}

.faq-q-text { flex: 1; }

/* The +/− icon via CSS */
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7C3784;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease, background 0.2s;
  position: relative;
}
/* Draw + using pseudo-elements */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px;  height: 10px; }
/* Rotate to × when open */
.faq-question[aria-expanded="true"] .faq-icon { background: #5a2062; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

/* Answer panel — Poppins, hidden by default */
.faq-answer {
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  max-height: 0;
  padding: 0 22px;
  background: #faf6fc;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer.faq-open {
  max-height: 1200px;
  padding: 16px 22px 22px;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.8em;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: #444;
  padding-left: 22px;
  margin-bottom: 0.8em;
}
.faq-answer li { margin-bottom: 4px; }

/* ============================================================
   INNER CONTACT FORM  (reusable — blog + inner pages)
   ============================================================ */
.inner-contact {
  background: #F8F5FF;
  padding: clamp(50px, 6vw, 80px) clamp(16px, 4vw, 40px);
}
.inner-contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.inner-contact-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: #000;
  margin: 0 0 16px;
}
.inner-contact-left p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 20px;
}
.inner-contact-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(124,58,132,0.08);
}
.inner-contact-form { display: flex; flex-direction: column; gap: 16px; }
.inner-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inner-form-group { display: flex; flex-direction: column; gap: 6px; }
.inner-form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.inner-form-group label span { color: #c0392b; }
.inner-form-group input,
.inner-form-group textarea {
  padding: 10px 14px;
  border: 1px solid #cbb8d0;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}
.inner-form-group input:focus,
.inner-form-group textarea:focus { border-color: #7C3784; outline: 2px solid rgba(124,58,132,0.15); }
.inner-form-group textarea { resize: vertical; min-height: 90px; }
.inner-submit {
  align-self: flex-start;
  padding: 13px 36px;
  background: #7C3084;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.inner-submit:hover { background: #68266f; }
@media (max-width: 768px) {
  .inner-contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .inner-form-row { grid-template-columns: 1fr; }
  .inner-contact-form-wrap { padding: 24px 18px; }
}

/* ============================================================
   INNER PAGE HERO (generic)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #7C3784 0%, #4a1a52 100%);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  text-align: center;
  color: #ffffff;
}

.page-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #f0d8f2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #e8d0f0;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.page-hero-cta {
  display: inline-block;
  background: #ffffff;
  color: #7C3784;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 30px;
  transition: background 0.2s;
}

.page-hero-cta:hover { background: #f0d8f2; }

/* ============================================================
   GENERIC CONTENT SECTIONS
   ============================================================ */
.section-light { background: #ffffff; padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px); }

.section-tinted { background: #F7F6F9; padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-subheading {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #555;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading-center { text-align: center; }
.section-subheading-center { margin-left: auto; margin-right: auto; text-align: center; }

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #F4F1F6;
  border: 1px solid #E6E0EB;
  border-radius: 14px;
  padding: 28px 24px;
}

.feature-card-num {
  font-size: 13px;
  font-weight: 700;
  color: #7C3784;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.feature-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card-desc { font-size: 0.95rem; color: #4A4A4A; line-height: 1.65; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* Two-column layout */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 768px) { .two-col-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: #7C3784;
  color: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1; }
.stat-label { font-size: 14px; font-weight: 500; margin-top: 8px; opacity: 0.9; }

@media (max-width: 768px) { .about-stats { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE: ABOUT, CONTACT
   ============================================================ */
.contact-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}

.contact-info-block { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item h4 { font-size: 15px; font-weight: 700; color: #7C3784; margin-bottom: 6px; }

.contact-info-item p, .contact-info-item a {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) { .contact-page-wrap { grid-template-columns: 1fr; } }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: #f9f5fc;
  padding: 12px clamp(20px, 5vw, 60px);
  font-size: 13px;
  color: #666;
}

.breadcrumb a { color: #7C3784; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #666; padding: 0 6px; }

/* ============================================================
   MISC
   ============================================================ */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.text-purple { color: #7C3784; }
.text-center { text-align: center; }
.section-divider { border: none; border-top: 1px solid #e8dde8; margin: 40px 0; }

/* Success message */
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
}

/* Form validation */
input:invalid:not(:placeholder-shown) { border-color: #f87171; }

/* Loading spinner */
.loading { text-align: center; padding: 60px 0; color: #666; font-size: 1rem; }

/* Podcast CTA */
.podcast-cta {
  background: linear-gradient(135deg, #7C3784, #4a1a52);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.podcast-cta h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.podcast-cta p { font-size: 1rem; opacity: 0.9; margin-bottom: 24px; }
.podcast-cta a {
  display: inline-block;
  background: #fff;
  color: #7C3784;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  transition: background 0.2s;
}
.podcast-cta a:hover { background: #f0d8f2; }

/* ============================================================
   AWARDS & RECOGNITIONS PAGE
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────── */
.aw-hero {
  background: linear-gradient(135deg, #5a1468 0%, #3d0d50 60%, #2a0838 100%);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.aw-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 2;
  letter-spacing: 0.01em;
}

/* Diamond decorations */
.aw-diamond {
  position: absolute;
  border: 1.5px solid rgba(255,255,255,0.15);
  transform: rotate(45deg);
  z-index: 1;
}

/* Left cluster */
.aw-d1  { width:55px; height:55px; top:18px;  left:8%;  }
.aw-d2  { width:38px; height:38px; top:50px;  left:14%; border-color:rgba(255,255,255,0.08); }
.aw-d3  { width:70px; height:70px; top:-10px; left:20%; border-color:rgba(255,255,255,0.2); }
.aw-d4  { width:28px; height:28px; top:70px;  left:6%;  background:rgba(255,255,255,0.06); border:none; }
.aw-d5  { width:44px; height:44px; top:30px;  left:29%; border-color:rgba(200,140,220,0.3); }

/* Right cluster */
.aw-d6  { width:60px; height:60px; top:10px;  right:8%;  border-color:rgba(255,255,255,0.18); }
.aw-d7  { width:42px; height:42px; top:55px;  right:16%; border-color:rgba(255,255,255,0.1); }
.aw-d8  { width:80px; height:80px; top:-20px; right:22%; border-color:rgba(200,140,220,0.2); }
.aw-d9  { width:30px; height:30px; top:75px;  right:6%;  background:rgba(255,255,255,0.08); border:none; }
.aw-d10 { width:50px; height:50px; top:20px;  right:30%; border-color:rgba(255,255,255,0.12); }
.aw-d11 { width:22px; height:22px; top:85px;  right:38%; background:rgba(180,100,200,0.25); border:none; }

/* ── Shared section wrapper ─────────────────────────────── */
.aw-white-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 60px);
}

/* ── SPJIMR Featured Card ───────────────────────────────── */
.aw-featured-card {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid #e8e2f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.aw-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.aw-featured-body {
  padding: 24px 28px 30px;
  background: #ffffff;
}

.aw-featured-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #1A0B30;
  margin-bottom: 8px;
  line-height: 1.3;
}

.aw-featured-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ── Split Sections (SHE THE PEOPLE & TAJURBA) ─────────── */
.aw-split-section {
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
}

/* SHE THE PEOPLE — warm pink-lavender gradient */
.aw-she-bg {
  background: linear-gradient(120deg, #fce8f6 0%, #f5d8f0 40%, #ead0f0 100%);
}

/* TAJURBA — white fading to lavender on right */
.aw-tajurba-bg {
  background: linear-gradient(to right, #ffffff 0%, #f6eefc 40%, #e4c8f0 100%);
}

.aw-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

/* Reversed layout (text left, image right) */
.aw-split-reversed {
  direction: rtl;
}
.aw-split-reversed > * {
  direction: ltr;
}

/* ── Circular image with dotted ring ────────────────────── */
.aw-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aw-circle-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

.aw-circle-wrap img,
.aw-circle-placeholder {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

.aw-circle-placeholder {
  background: linear-gradient(135deg, #d8b0e8, #c090d0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  gap: 4px;
}

.aw-circle-placeholder small {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
}

.aw-dotted-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed #c890d8;
}

/* Purple dot accent — top-right by default */
.aw-circle-dot-accent {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7C3784;
  z-index: 3;
}

/* Left-side dot (for reversed layout) */
.aw-dot-left {
  top: 18px;
  left: 14px;
  right: auto;
}

/* ── Award text content ─────────────────────────────────── */
.aw-text-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aw-award-title {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: #4a1a52;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.aw-badge {
  display: inline-block;
  background: #7C3784;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  align-self: flex-start;
}

.aw-award-desc {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.75;
  max-width: 500px;
}

/* ── CEO's Message Video ────────────────────────────────── */
.aw-video-section {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.aw-video-card {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid #e8e2f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.aw-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #0f0f0f;
}

.aw-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.aw-video-body {
  padding: 22px 26px 28px;
  background: #ffffff;
}

.aw-video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #7C3784;
  margin-bottom: 10px;
}

.aw-video-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}

/* ── Media Grid (2 × 2) ─────────────────────────────────── */
.aw-media-section {
  padding-top: 16px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.aw-media-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.aw-media-card {
  border: 1px solid #e8e2f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.aw-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(124,58,132,0.13);
}

.aw-media-link {
  cursor: pointer;
}

.aw-media-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a0b30;
  position: relative;
  flex-shrink: 0;
}

.aw-media-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.aw-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder tiles for missing media */
.aw-media-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3d0d50 0%, #7C3784 100%);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  position: absolute;
  top: 0; left: 0;
}

.aw-media-img-placeholder span {
  font-size: 28px;
  display: block;
}

.aw-placeholder-purple {
  background: linear-gradient(135deg, #4a1252 0%, #9b42a4 100%);
}

.aw-placeholder-light {
  background: linear-gradient(135deg, #f5eefa 0%, #e0c8f0 100%);
  color: #6a1b9a;
}

.aw-media-body {
  padding: 18px 20px 22px;
  flex: 1;
}

.aw-media-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1A0B30;
  line-height: 1.4;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .aw-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 40px 24px;
  }
  .aw-split-reversed { direction: ltr; }
  .aw-text-col { align-items: center; }
  .aw-award-title { text-align: center; }
  .aw-award-desc { margin: 0 auto; }
  .aw-badge { align-self: center; }
  .aw-circle-wrap { width: 250px; height: 250px; }
  .aw-circle-wrap img,
  .aw-circle-placeholder { width: 218px; height: 218px; top: 16px; left: 16px; }
}

@media (max-width: 600px) {
  .aw-media-grid { grid-template-columns: 1fr; }
  .aw-diamond { display: none; }
  .aw-hero-title { font-size: 1.6rem; }
}

/* ============================================================
   FINANCIAL RESULTS PAGE
   ============================================================ */

.fr-hero {
  background: linear-gradient(135deg, #1A0B30 0%, #3b1166 60%, #7C3784 100%);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.fr-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.fr-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a8f0;
  margin: 0 0 14px;
}
.fr-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
}
.fr-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.7;
}

/* Section */
.fr-section {
  padding: 64px 24px 80px;
  background: #f8f6fc;
}
.fr-section-inner { max-width: 1000px; margin: 0 auto; }

.fr-table-header { margin-bottom: 32px; }
.fr-table-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1A0B30;
  margin: 0 0 10px;
}
.fr-table-desc {
  font-size: 0.97rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Table */
.fr-table-wrap {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(124,55,132,0.08);
  overflow: hidden;
  border: 1px solid #ede4f6;
}
.fr-table {
  width: 100%;
  border-collapse: collapse;
}
.fr-table thead tr {
  background: linear-gradient(90deg, #1A0B30 0%, #7C3784 100%);
}
.fr-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  border: none;
  white-space: nowrap;
}
.fr-th-action { text-align: center; }
.fr-table tbody tr.fr-row {
  border-bottom: 1px solid #f0e8fa;
  transition: background 0.18s;
}
.fr-table tbody tr.fr-row:last-child { border-bottom: none; }
.fr-table tbody tr.fr-row:hover { background: #faf5ff; }
.fr-table td {
  padding: 20px 20px;
  vertical-align: middle;
  font-size: 0.95rem;
  color: #333;
}
.fr-year {
  font-weight: 700;
  color: #1A0B30;
  font-size: 1rem;
  white-space: nowrap;
}
.fr-period { color: #555; }
.fr-doctype { color: #333; font-weight: 500; }
.fr-pdf-badge {
  display: inline-block;
  background: #fff0f0;
  color: #c62828;
  border: 1px solid #ffcdd2;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.fr-action { text-align: center; }
.fr-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #7C3784;
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(124,55,132,0.18);
}
.fr-download-btn:hover {
  background: #5e2a66;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(124,55,132,0.28);
}
.fr-dl-icon { width: 16px; height: 16px; flex-shrink: 0; }

.fr-note {
  margin-top: 22px;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}
.fr-note a { color: #7C3784; text-decoration: underline; }

/* Responsive */
@media (max-width: 700px) {
  .fr-table { display: block; overflow-x: auto; white-space: nowrap; }
  .fr-hero { padding: 60px 20px 48px; }
}

/* ============================================================
   COMMITTEE COMPOSITION PAGE
   ============================================================ */

/* Hero — solid purple full-width banner */
.cc-hero {
  background: #7C3784;
  padding: 36px 24px;
  text-align: center;
}
.cc-hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

/* Section wrapper */
.cc-section {
  padding: 52px 24px 80px;
  background: #fff;
}
.cc-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* Individual committee block */
.cc-committee-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #7C3784;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

/* Table */
.cc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.cc-table thead tr {
  background: #c8daea; /* light steel-blue header matching screenshot */
}
.cc-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: #1A0B30;
  border: 1px solid #b0c8dc;
  font-size: 0.92rem;
}
.cc-table tbody tr {
  background: #fff;
  transition: background 0.15s;
}
.cc-table tbody tr:hover {
  background: #f5f9ff;
}
.cc-table tbody td {
  padding: 13px 18px;
  color: #333;
  border: 1px solid #d8dfe8;
  vertical-align: middle;
}

/* ============================================================
   CASE STUDY PAGE — alternating rows
   ============================================================ */

.csp-row {
  padding: 64px 24px;
}
.csp-white { background: #fff; }
.csp-light  { background: #faf8ff; }

.csp-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Reverse: text first, image second on desktop */
.csp-reversed {
  direction: ltr; /* keep readable order for screen readers */
}
.csp-reversed .csp-text-col { order: 1; }
.csp-reversed .csp-img-col  { order: 2; }

/* Image column */
.csp-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.csp-img {
  width: 100%;
  max-width: 440px;
  border-radius: 14px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.10);
  display: block;
}

/* Text column */
.csp-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.csp-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #7C3784;
  margin: 0 0 18px;
  line-height: 1.25;
}
.csp-para {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.85;
  margin: 0 0 28px;
  text-align: justify;
}

/* CTA button */
.csp-cta {
  display: inline-block;
  background: #7C3784;
  color: #fff;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(124,55,132,0.20);
}
.csp-cta:hover {
  background: #5e2a66;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(124,55,132,0.30);
}

/* Responsive */
@media (max-width: 860px) {
  .csp-inner,
  .csp-reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .csp-reversed .csp-text-col { order: 1; }
  .csp-reversed .csp-img-col  { order: 2; }
  .csp-img { max-width: 100%; }
  .csp-para { text-align: left; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* ── Section 1: Mission & Vision ───────────────────────── */
.ab-mission-section {
  padding: 64px 24px 72px;
  background: #fff;
}
.ab-mission-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ab-mission-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #7C3784;
  margin: 0 0 16px;
  line-height: 1.25;
}
.ab-mission-para {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}
.ab-mission-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-mission-img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: block;
}

/* ── Section 2: What Sets Us Apart ─────────────────────── */
.ab-apart-section {
  position: relative;
  padding: 70px 24px 80px;
  background:
    url('https://multiplierai.co/wp-content/uploads/2024/01/team-doctors-meeting.jpg')
    center center / cover no-repeat;
  overflow: hidden;
}
.ab-apart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(100, 28, 112, 0.82);
}
.ab-apart-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
}
.ab-apart-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 44px;
}
.ab-apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ab-apart-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 30px 28px 32px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.ab-apart-card:hover {
  background: rgba(255,255,255,0.2);
}
.ab-apart-icon {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 14px;
}
.ab-apart-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.ab-apart-desc {
  font-size: 0.91rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin: 0;
}

/* ── Section 3: Meet The Founders ──────────────────────── */
.ab-founders-section {
  padding: 70px 24px 80px;
  background: #fff;
}
.ab-founders-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.ab-founders-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1A0B30;
  text-align: center;
  margin: 0 0 52px;
}
.ab-founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ab-founder-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #7C3784;
  margin: 0 0 20px;
}
.ab-founder-photo-wrap {
  width: 100%;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px;
}
.ab-founder-photo {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
}
.ab-founder-bio {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.8;
}
.ab-founder-bio p { margin: 0; }

/* Read More / Less button */
.ab-read-more-btn {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: none;
  color: #7C3784;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ab-read-more-btn:hover { color: #5e2a66; }

/* ── Section 4: How We Work ─────────────────────────────── */
.ab-howwe-section {
  padding: 64px 24px 80px;
  background: #faf8ff;
}
.ab-howwe-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.ab-howwe-heading {
  font-size: 1.55rem;
  font-weight: 700;
  color: #7C3784;
  margin: 0 0 36px;
}
.ab-howwe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ab-howwe-img-wrap { overflow: hidden; border-radius: 10px; }
.ab-howwe-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.10);
}
.ab-howwe-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ab-howwe-step {
  font-size: 0.96rem;
  color: #333;
  line-height: 1.75;
  border-left: 3px solid #7C3784;
  padding-left: 16px;
}
.ab-howwe-step p { margin: 0; }
.ab-howwe-step strong { color: #1A0B30; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .ab-mission-inner,
  .ab-apart-grid,
  .ab-founders-grid,
  .ab-howwe-grid { grid-template-columns: 1fr; }
  .ab-mission-img { max-width: 100%; }
  .ab-apart-section { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .ab-apart-card { padding: 22px 18px; }
  .ab-founders-heading,
  .ab-apart-heading { font-size: 1.35rem; }
}

/* ============================================================
   ADDENDUM TO DRHP — PDF VIEWER PAGE
   ============================================================ */

.drhp-addendum-wrap {
  padding: 32px 24px 60px;
  background: #fff;
}
.drhp-addendum-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title row */
.drhp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.drhp-title-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.drhp-file-icon {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
}
.drhp-file-icon svg { width: 100%; height: 100%; }
.drhp-addendum-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #1A0B30;
  margin: 0;
  line-height: 1.2;
}

/* Download button */
.drhp-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7C3784;
  color: #fff;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(124,55,132,0.18);
}
.drhp-dl-btn:hover {
  background: #5e2a66;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(124,55,132,0.28);
}

/* PDF viewer iframe */
.drhp-viewer-wrap {
  width: 100%;
  border: 1px solid #e0d0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(124,55,132,0.10);
  background: #525659;
}
.drhp-viewer-frame {
  width: 100%;
  height: 82vh;
  min-height: 600px;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .drhp-addendum-title { font-size: 1.2rem; }
  .drhp-viewer-frame { height: 70vh; min-height: 400px; }
  .drhp-title-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   DRAFT RED HERRING PROSPECTUS PAGE
   ============================================================ */

.drhp-section {
  padding: 80px 24px 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drhp-inner {
  display: flex;
  justify-content: center;
}
.drhp-btn {
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: 8px;
  min-width: 260px;
  justify-content: center;
}

/* ============================================================
   ANNUAL REPORTS & RETURNS PAGE
   ============================================================ */

.ar-section {
  padding: 64px 24px 90px;
  background: #fff;
}
.ar-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Each row: 3 buttons side by side */
.ar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Button */
.ar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #7C3784;
  color: #fff;
  border-radius: 8px;
  padding: 16px 22px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  min-height: 58px;
}
.ar-btn:hover {
  background: #5e2a66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,55,132,0.28);
}
.ar-dl-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .ar-row { grid-template-columns: 1fr; }
}

/* ============================================================
   POLICIES PAGE
   ============================================================ */

.pol-section {
  padding: 56px 24px 80px;
  background: #fff;
}
.pol-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* 5-column grid matching the screenshot layout */
.pol-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* Each policy button — solid purple pill */
.pol-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #7C3784;
  color: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  min-height: 68px;
  cursor: pointer;
}
.pol-btn:hover {
  background: #5e2a66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,55,132,0.28);
}

/* Greyed-out state for upcoming PDFs */
.pol-btn-soon {
  background: #7C3784;
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
}

.pol-dl-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.92;
}
.pol-btn-label {
  flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .pol-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .pol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .pol-grid { grid-template-columns: 1fr; }
}

/* Total row (Shareholding) */
.sh-total-row td {
  background: #f5f0fa;
  border-top: 2px solid #c9a8e0;
}

/* Responsive */
@media (max-width: 700px) {
  .cc-table { display: block; overflow-x: auto; white-space: nowrap; }
  .cc-committee-title { font-size: 1rem; }
}
