/* ══ HERO ══ */
.mv-hero {
  background: linear-gradient(135deg, #0b3d6e 0%, #1578be 55%, #d40000 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.mv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,.06), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(212,0,0,.18), transparent);
  pointer-events: none;
}
.mv-hero::after {
  content: "◎";
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: var(--fw-xbold);
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mv-hero-inner { position: relative; z-index: 1; }
.mv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.mv-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.mv-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin-bottom: 10px;
  line-height: var(--lh-heading);
}
.mv-hero p.hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}
.mv-hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mv-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
}
.mv-chip i { color: rgba(255,255,255,.7); font-size: var(--text-sm); }

/* ══ MAIN ══ */
.mv-main {
  background: #f5f6f8;
  padding: 48px 0 72px;
}

/* ══ MISSION / VISION CARDS ══ */
.mv-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.mv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(11,18,32,.07);
  background: linear-gradient(135deg, rgba(21,120,190,.05), rgba(212,0,0,.03));
}
.mv-card-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1578be, #d40000);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: var(--text-xl);
  box-shadow: 0 4px 14px rgba(21,120,190,.28);
}
.mv-card-header-text h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.9);
  margin-bottom: 2px;
}
.mv-card-header-text p {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.45);
  margin: 0;
}
.mv-card-body {
  padding: 24px 28px 28px;
}

/* ══ MISSION BLOCK ══ */
.mv-block {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(11,18,32,.06);
  background: #fff;
  margin-bottom: 16px;
  transition: box-shadow .2s, border-color .2s;
}
.mv-block:last-child { margin-bottom: 0; }
.mv-block:hover {
  box-shadow: 0 6px 24px rgba(21,120,190,.1);
  border-color: rgba(21,120,190,.2);
}
.mv-block-icon {
  width: 52px; height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1578be, #0b3d6e);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-2xl);
  color: #fff;
  box-shadow: 0 4px 14px rgba(21,120,190,.28);
  margin-top: 2px;
}
.mv-block-text h5 {
  font-size: var(--text-md);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.88);
  margin-bottom: 8px;
}
.mv-block-text p {
  font-size: var(--text-base);
  line-height: var(--lh-loose);
  color: rgba(11,18,32,.65);
  margin: 0;
}

/* ══ SIDEBAR QUICK LINKS ══ */
.ql-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.ql-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #0b3d6e, #1578be);
  position: relative;
  overflow: hidden;
}
.ql-header::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.ql-header h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin: 0;
  position: relative; z-index: 1;
}
.ql-header p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  margin: 4px 0 0;
  position: relative; z-index: 1;
}
.ql-body { padding: 12px 14px; }
.ql-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,18,32,.78);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  transition: background .18s, color .18s, gap .18s;
  border-bottom: 1px solid rgba(11,18,32,.05);
}
.ql-item:last-child { border-bottom: none; }
.ql-item:hover {
  background: rgba(21,120,190,.07);
  color: #1578be;
  gap: 13px;
  text-decoration: none;
}
.ql-icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  transition: background .18s, color .18s, border-color .18s;
}
.ql-item:hover .ql-icon {
  background: #1578be;
  color: #fff;
  border-color: transparent;
}
.ql-arrow {
  margin-left: auto;
  font-size: var(--text-xs);
  color: rgba(11,18,32,.25);
  transition: color .18s, transform .18s;
}
.ql-item:hover .ql-arrow {
  color: #1578be;
  transform: translateX(3px);
}
.ql-contact {
  margin: 8px 14px 14px;
  background: linear-gradient(135deg, rgba(21,120,190,.08), rgba(212,0,0,.06));
  border: 1px solid rgba(21,120,190,.15);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.ql-contact p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.6);
  margin-bottom: 10px;
  line-height: var(--lh-body);
}
.ql-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1578be, #d40000);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.ql-contact a:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

@media (max-width: 768px) {
  .mv-card-body { padding: 18px 16px 22px; }
  .mv-block { flex-direction: column; gap: 12px; }
  .ql-card { position: static; }
}
/* ══ HERO ══ */
.obj-hero {
  background: linear-gradient(135deg, #0b3d6e 0%, #1578be 55%, #d40000 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.obj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,.06), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(212,0,0,.18), transparent);
  pointer-events: none;
}
.obj-hero::after {
  content: "◎";
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: var(--fw-xbold);
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.obj-hero-inner { position: relative; z-index: 1; }
.obj-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.obj-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.obj-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin-bottom: 10px;
  line-height: var(--lh-heading);
}
.obj-hero p.hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}
.obj-hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.obj-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
}
.obj-chip i { color: rgba(255,255,255,.7); font-size: var(--text-sm); }

/* ══ MAIN ══ */
.obj-main {
  background: #f5f6f8;
  padding: 48px 0 72px;
}

/* ══ OUTER CARD ══ */
.obj-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.obj-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(11,18,32,.07);
  background: linear-gradient(135deg, rgba(21,120,190,.05), rgba(212,0,0,.03));
}
.obj-card-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1578be, #d40000);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: var(--text-xl);
  box-shadow: 0 4px 14px rgba(21,120,190,.28);
}
.obj-card-header-text h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.9);
  margin-bottom: 2px;
}
.obj-card-header-text p {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.45);
  margin: 0;
}
.obj-card-body {
  padding: 24px 28px 28px;
}

/* ══ INTRO ══ */
.obj-intro {
  background: linear-gradient(135deg, rgba(21,120,190,.06), rgba(212,0,0,.03));
  border-left: 4px solid #1578be;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: rgba(11,18,32,.72);
  line-height: var(--lh-loose);
  margin-bottom: 28px;
}

/* ══ SECTION BLOCK ══ */
.obj-section {
  margin-bottom: 28px;
}
.obj-section:last-child { margin-bottom: 0; }

.obj-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.obj-section-icon {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  color: #1578be;
}
.obj-section-title {
  font-size: var(--text-md);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.82);
  margin: 0;
}

/* ══ NUMBERED LIST — FAQ counter pattern ══ */
.obj-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: obj-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
.obj-list li {
  counter-increment: obj-counter;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  padding: 16px 18px;
  transition: box-shadow .22s, border-color .22s;
}
.obj-list li:hover {
  box-shadow: 0 6px 24px rgba(21,120,190,.1);
  border-color: rgba(21,120,190,.2);
}

/* Badge — mirrors .faq-num */
.obj-list li::before {
  content: counter(obj-counter, decimal-leading-zero);
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #1578be;
  margin-top: 1px;
}
.obj-list li:hover::before {
  background: linear-gradient(135deg, #1578be, #d40000);
  border-color: transparent;
  color: #fff;
}

.obj-list-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}
.obj-list-content-icon {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  margin-top: 1px;
  transition: background .22s, color .22s, border-color .22s;
}
.obj-list li:hover .obj-list-content-icon {
  background: #1578be;
  color: #fff;
  border-color: transparent;
}
.obj-list-content span {
  font-size: var(--text-base);
  line-height: var(--lh-loose);
  color: rgba(11,18,32,.65);
}
.obj-list-content span strong {
  color: rgba(11,18,32,.82);
  font-weight: var(--fw-bold);
}

/* ══ DIVIDER ══ */
.obj-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}
.obj-divider .line {
  flex: 1; height: 1px;
  background: rgba(11,18,32,.08);
}
.obj-divider span {
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(11,18,32,.35);
  white-space: nowrap;
}

/* ══ SIDEBAR QUICK LINKS ══ */
.ql-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.ql-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #0b3d6e, #1578be);
  position: relative;
  overflow: hidden;
}
.ql-header::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.ql-header h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin: 0;
  position: relative; z-index: 1;
}
.ql-header p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  margin: 4px 0 0;
  position: relative; z-index: 1;
}
.ql-body { padding: 12px 14px; }
.ql-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,18,32,.78);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  transition: background .18s, color .18s, gap .18s;
  border-bottom: 1px solid rgba(11,18,32,.05);
}
.ql-item:last-child { border-bottom: none; }
.ql-item:hover {
  background: rgba(21,120,190,.07);
  color: #1578be;
  gap: 13px;
  text-decoration: none;
}
.ql-icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  transition: background .18s, color .18s, border-color .18s;
}
.ql-item:hover .ql-icon {
  background: #1578be;
  color: #fff;
  border-color: transparent;
}
.ql-arrow {
  margin-left: auto;
  font-size: var(--text-xs);
  color: rgba(11,18,32,.25);
  transition: color .18s, transform .18s;
}
.ql-item:hover .ql-arrow {
  color: #1578be;
  transform: translateX(3px);
}
.ql-contact {
  margin: 8px 14px 14px;
  background: linear-gradient(135deg, rgba(21,120,190,.08), rgba(212,0,0,.06));
  border: 1px solid rgba(21,120,190,.15);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.ql-contact p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.6);
  margin-bottom: 10px;
  line-height: var(--lh-body);
}
.ql-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1578be, #d40000);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.ql-contact a:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

@media (max-width: 768px) {
  .obj-card-body { padding: 18px 16px 22px; }
  .ql-card { position: static; }
}
/* ══ HERO ══ */
.about-hero {
  background: linear-gradient(135deg, #0b3d6e 0%, #1578be 55%, #d40000 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,.06), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(212,0,0,.18), transparent);
  pointer-events: none;
}
.about-hero::after {
  content: "ℹ";
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: var(--fw-xbold);
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-hero-inner { position: relative; z-index: 1; }
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.about-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.about-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin-bottom: 10px;
  line-height: var(--lh-heading);
}
.about-hero p.hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}
.about-hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
}
.about-chip i { color: rgba(255,255,255,.7); font-size: var(--text-sm); }

/* ══ MAIN ══ */
.about-main {
  background: #f5f6f8;
  padding: 48px 0 72px;
}

/* ══ CONTENT CARD ══ */
.about-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.about-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(11,18,32,.07);
  background: linear-gradient(135deg, rgba(21,120,190,.05), rgba(212,0,0,.03));
}
.about-card-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1578be, #d40000);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: var(--text-xl);
  box-shadow: 0 4px 14px rgba(21,120,190,.28);
}
.about-card-header-text h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.9);
  margin-bottom: 2px;
}
.about-card-header-text p {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.45);
  margin: 0;
}

/* ══ BODY ══ */
.about-body {
  padding: 24px 28px 28px;
  font-size: var(--text-md);
  line-height: var(--lh-loose);
  color: rgba(11,18,32,.65);
}
.about-body p { margin-bottom: 1.2rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: rgba(11,18,32,.82); font-weight: var(--fw-bold); }

/* ══ HIGHLIGHT PARAGRAPH ══ */
.highlight-para {
  background: linear-gradient(135deg, rgba(21,120,190,.06), rgba(212,0,0,.03));
  border-left: 4px solid #1578be;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: rgba(11,18,32,.75);
  line-height: var(--lh-loose);
  margin-bottom: 24px;
}

/* ══ INFO CARD ══ */
.about-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(21,120,190,.04);
  border: 1px solid rgba(21,120,190,.12);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.about-info-icon {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-md);
  color: #1578be;
  margin-top: 1px;
}
.about-info-card p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.65);
  line-height: var(--lh-loose);
  margin: 0;
}

/* ══ TIMELINE ══ */
.about-timeline { padding: 4px 0 0; }
.about-timeline-item {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(21,120,190,.25), rgba(21,120,190,.05));
}
.about-timeline-marker {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1578be, #0b3d6e);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21,120,190,.25);
  position: relative; z-index: 1;
}
.about-timeline-content {
  padding-top: 8px;
  flex: 1;
}
.about-timeline-content p {
  font-size: var(--text-base);
  line-height: var(--lh-loose);
  color: rgba(11,18,32,.65);
  margin: 0;
}

/* ══ SIDEBAR QUICK LINKS ══ */
.ql-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.ql-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #0b3d6e, #1578be);
  position: relative;
  overflow: hidden;
}
.ql-header::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.ql-header h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin: 0;
  position: relative; z-index: 1;
}
.ql-header p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  margin: 4px 0 0;
  position: relative; z-index: 1;
}
.ql-body { padding: 12px 14px; }
.ql-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,18,32,.78);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  transition: background .18s, color .18s, gap .18s;
  border-bottom: 1px solid rgba(11,18,32,.05);
}
.ql-item:last-child { border-bottom: none; }
.ql-item:hover {
  background: rgba(21,120,190,.07);
  color: #1578be;
  gap: 13px;
  text-decoration: none;
}
.ql-icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  transition: background .18s, color .18s, border-color .18s;
}
.ql-item:hover .ql-icon {
  background: #1578be;
  color: #fff;
  border-color: transparent;
}
.ql-arrow {
  margin-left: auto;
  font-size: var(--text-xs);
  color: rgba(11,18,32,.25);
  transition: color .18s, transform .18s;
}
.ql-item:hover .ql-arrow {
  color: #1578be;
  transform: translateX(3px);
}
.ql-contact {
  margin: 8px 14px 14px;
  background: linear-gradient(135deg, rgba(21,120,190,.08), rgba(212,0,0,.06));
  border: 1px solid rgba(21,120,190,.15);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.ql-contact p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.6);
  margin-bottom: 10px;
  line-height: var(--lh-body);
}
.ql-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1578be, #d40000);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.ql-contact a:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

@media (max-width: 768px) {
  .about-body { padding: 18px 16px 22px; font-size: var(--text-base); }
  .ql-card { position: static; }
}
/* ══ HERO ══ */
.ben-hero {
  background: linear-gradient(135deg, #0b3d6e 0%, #1578be 55%, #d40000 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.ben-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,.06), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(212,0,0,.18), transparent);
  pointer-events: none;
}
.ben-hero::after {
  content: "★";
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: var(--fw-xbold);
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ben-hero-inner { position: relative; z-index: 1; }
.ben-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.ben-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.ben-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin-bottom: 10px;
  line-height: var(--lh-heading);
}
.ben-hero p.hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}
.ben-hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ben-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
}
.ben-chip i { color: rgba(255,255,255,.7); font-size: var(--text-sm); }

/* ══ MAIN ══ */
.ben-main {
  background: #f5f6f8;
  padding: 48px 0 72px;
}

/* ══ OUTER CARD ══ */
.ben-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.ben-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(11,18,32,.07);
  background: linear-gradient(135deg, rgba(21,120,190,.05), rgba(212,0,0,.03));
}
.ben-card-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1578be, #d40000);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: var(--text-xl);
  box-shadow: 0 4px 14px rgba(21,120,190,.28);
}
.ben-card-header-text h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.9);
  margin-bottom: 2px;
}
.ben-card-header-text p {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.45);
  margin: 0;
}
.ben-card-body {
  padding: 24px 28px 28px;
}
.ben-intro {
  font-size: var(--text-md);
  color: rgba(11,18,32,.58);
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}

/* ══ ACCORDION — borrowed from FAQ pattern ══ */
.ben-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: ben-counter;
}

.ben-group {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  overflow: hidden;
  transition: box-shadow .22s ease, border-color .22s ease;
}
.ben-group:hover {
  box-shadow: 0 6px 24px rgba(21,120,190,.1);
  border-color: rgba(21,120,190,.2);
}
.ben-group.open {
  border-color: rgba(21,120,190,.3);
  box-shadow: 0 8px 28px rgba(21,120,190,.12);
}

/* ── Question row ── */
.ben-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
}

/* Numbered badge — mirrors .faq-num */
.ben-num {
  counter-increment: ben-counter;
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #1578be;
  transition: background .22s, color .22s, border-color .22s;
}
.ben-num::before { content: counter(ben-counter, decimal-leading-zero); }
.ben-group.open .ben-num {
  background: linear-gradient(135deg, #1578be, #d40000);
  border-color: transparent;
  color: #fff;
}

/* Title text — mirrors .faq-q-text */
.ben-group-title {
  flex: 1;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: rgba(11,18,32,.88);
  line-height: var(--lh-heading);
  margin: 0;
  transition: color .2s;
}
.ben-group.open .ben-group-title { color: #1578be; }

/* Toggle button — mirrors .faq-toggle */
.ben-toggle {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.15);
  display: flex; align-items: center; justify-content: center;
  color: #1578be;
  font-size: var(--text-xs);
  transition: background .22s, transform .3s, color .22s, border-color .22s;
}
.ben-group.open .ben-toggle {
  background: linear-gradient(135deg, #1578be, #d40000);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

/* ── Answer panel — mirrors .faq-answer ── */
.ben-group-body {
  display: none;
  padding: 0 18px 18px 66px;
  font-size: var(--text-md);
  color: rgba(11,18,32,.62);
  line-height: var(--lh-loose);
  animation: benFadeIn .3s ease;
}
.ben-group-body.show { display: block; }
@keyframes benFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── List inside answer ── */
.ben-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ben-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,18,32,.05);
  font-size: var(--text-base);
  line-height: var(--lh-loose);
  color: rgba(11,18,32,.65);
}
.ben-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ben-list li::before {
  content: "";
  width: 7px; height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1578be, #d40000);
  margin-top: 7px;
}
.ben-list li strong { color: rgba(11,18,32,.82); font-weight: var(--fw-bold); }

/* ══ SIDEBAR QUICK LINKS ══ */
.ql-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.ql-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #0b3d6e, #1578be);
  position: relative;
  overflow: hidden;
}
.ql-header::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.ql-header h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin: 0;
  position: relative; z-index: 1;
}
.ql-header p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  margin: 4px 0 0;
  position: relative; z-index: 1;
}
.ql-body { padding: 12px 14px; }
.ql-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,18,32,.78);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  transition: background .18s, color .18s, gap .18s;
  border-bottom: 1px solid rgba(11,18,32,.05);
}
.ql-item:last-child { border-bottom: none; }
.ql-item:hover {
  background: rgba(21,120,190,.07);
  color: #1578be;
  gap: 13px;
  text-decoration: none;
}
.ql-icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  transition: background .18s, color .18s, border-color .18s;
}
.ql-item:hover .ql-icon {
  background: #1578be;
  color: #fff;
  border-color: transparent;
}
.ql-arrow {
  margin-left: auto;
  font-size: var(--text-xs);
  color: rgba(11,18,32,.25);
  transition: color .18s, transform .18s;
}
.ql-item:hover .ql-arrow {
  color: #1578be;
  transform: translateX(3px);
}
.ql-contact {
  margin: 8px 14px 14px;
  background: linear-gradient(135deg, rgba(21,120,190,.08), rgba(212,0,0,.06));
  border: 1px solid rgba(21,120,190,.15);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.ql-contact p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.6);
  margin-bottom: 10px;
  line-height: var(--lh-body);
}
.ql-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1578be, #d40000);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.ql-contact a:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

@media (max-width: 768px) {
  .ben-card-body { padding: 18px 16px 22px; }
  .ben-group-body { padding: 0 16px 16px 54px; }
  .ql-card { position: static; }
}
/* ══ HERO ══ */
.ds-hero {
  background: linear-gradient(135deg, #0b3d6e 0%, #1578be 55%, #d40000 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.ds-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,.06), transparent),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(212,0,0,.18), transparent);
  pointer-events: none;
}
.ds-hero::after {
  content: "⬡";
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: var(--fw-xbold);
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ds-hero-inner { position: relative; z-index: 1; }
.ds-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.ds-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.ds-hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin-bottom: 10px;
  line-height: var(--lh-heading);
}
.ds-hero p.hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}
.ds-hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ds-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
}
.ds-chip i { color: rgba(255,255,255,.7); font-size: var(--text-sm); }

/* ══ MAIN ══ */
.ds-main {
  background: #f5f6f8;
  padding: 48px 0 72px;
}

/* ══ OUTER CARD ══ */
.ds-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.ds-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(11,18,32,.07);
  background: linear-gradient(135deg, rgba(21,120,190,.05), rgba(212,0,0,.03));
}
.ds-card-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1578be, #d40000);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: var(--text-xl);
  box-shadow: 0 4px 14px rgba(21,120,190,.28);
}
.ds-card-header-text h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.9);
  margin-bottom: 2px;
}
.ds-card-header-text p {
  font-size: var(--text-xs);
  color: rgba(11,18,32,.45);
  margin: 0;
}
.ds-card-body {
  padding: 24px 28px 28px;
}

/* ══ ACCORDION — FAQ pattern ══ */
.ds-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: ds-counter;
}

.ds-item {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  overflow: hidden;
  transition: box-shadow .22s ease, border-color .22s ease;
}
.ds-item:hover {
  box-shadow: 0 6px 24px rgba(21,120,190,.1);
  border-color: rgba(21,120,190,.2);
}
.ds-item.open {
  border-color: rgba(21,120,190,.3);
  box-shadow: 0 8px 28px rgba(21,120,190,.12);
}

/* ── Question row ── */
.ds-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
}

/* Numbered badge — mirrors .faq-num */
.ds-num {
  counter-increment: ds-counter;
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #1578be;
  transition: background .22s, color .22s, border-color .22s;
}
.ds-num::before { content: counter(ds-counter, decimal-leading-zero); }
.ds-item.open .ds-num {
  background: linear-gradient(135deg, #1578be, #d40000);
  border-color: transparent;
  color: #fff;
}

/* Title text — mirrors .faq-q-text */
.ds-q-text {
  flex: 1;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: rgba(11,18,32,.88);
  line-height: var(--lh-heading);
  margin: 0;
  transition: color .2s;
}
.ds-item.open .ds-q-text { color: #1578be; }

/* Toggle — mirrors .faq-toggle */
.ds-toggle {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.15);
  display: flex; align-items: center; justify-content: center;
  color: #1578be;
  font-size: var(--text-xs);
  transition: background .22s, transform .3s, color .22s, border-color .22s;
}
.ds-item.open .ds-toggle {
  background: linear-gradient(135deg, #1578be, #d40000);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

/* ── Answer panel — mirrors .faq-answer ── */
.ds-answer {
  display: none;
  padding: 0 20px 20px 66px;
  font-size: var(--text-base);
  color: rgba(11,18,32,.62);
  line-height: var(--lh-loose);
  animation: dsFadeIn .3s ease;
}
.ds-answer.show { display: block; }
@keyframes dsFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ds-answer p { margin-bottom: 12px; }
.ds-answer p:last-child { margin-bottom: 0; }

/* ── Impact / note strip ── */
.ds-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(21,120,190,.07), rgba(212,0,0,.04));
  border: 1px solid rgba(21,120,190,.16);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: var(--text-sm);
  color: rgba(11,18,32,.65);
  line-height: var(--lh-body);
}
.ds-note-icon {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border-radius: 7px;
  background: rgba(21,120,190,.12);
  border: 1px solid rgba(21,120,190,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  margin-top: 1px;
}
.ds-note strong { color: rgba(11,18,32,.8); font-weight: var(--fw-bold); }

/* ── Bullet list ── */
.ds-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.ds-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(11,18,32,.05);
  font-size: var(--text-sm);
  line-height: var(--lh-loose);
  color: rgba(11,18,32,.65);
}
.ds-list li:last-child { border-bottom: none; }
.ds-list li i {
  width: 20px;
  color: #1578be;
  font-size: var(--text-xs);
  margin-top: 4px;
  flex-shrink: 0;
}
.ds-list li strong { color: rgba(11,18,32,.82); font-weight: var(--fw-bold); }

/* ── Grid tiles (surveys, partners) ── */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.ds-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(21,120,190,.04);
  border: 1px solid rgba(21,120,190,.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: var(--text-sm);
  color: rgba(11,18,32,.68);
  line-height: var(--lh-body);
  transition: border-color .18s, background .18s;
}
.ds-grid-item:hover {
  background: rgba(21,120,190,.08);
  border-color: rgba(21,120,190,.22);
}
.ds-grid-item i {
  color: #1578be;
  font-size: var(--text-sm);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Qualitative rows ── */
.ds-qual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,18,32,.06);
}
.ds-qual-item:last-child { border-bottom: none; }
.ds-qual-icon {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 9px;
  background: rgba(21,120,190,.1);
  border: 1px solid rgba(21,120,190,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  color: #1578be;
}
.ds-qual-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-xbold);
  color: rgba(11,18,32,.82);
  margin-bottom: 2px;
}
.ds-qual-item p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.55);
  margin: 0;
  line-height: var(--lh-body);
}

/* ══ SIDEBAR QUICK LINKS ══ */
.ql-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(11,18,32,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.ql-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #0b3d6e, #1578be);
  position: relative;
  overflow: hidden;
}
.ql-header::after {
  content: "";
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.ql-header h4 {
  font-size: var(--text-base);
  font-weight: var(--fw-xbold);
  color: #fff;
  margin: 0;
  position: relative; z-index: 1;
}
.ql-header p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  margin: 4px 0 0;
  position: relative; z-index: 1;
}
.ql-body { padding: 12px 14px; }
.ql-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,18,32,.78);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  transition: background .18s, color .18s, gap .18s;
  border-bottom: 1px solid rgba(11,18,32,.05);
}
.ql-item:last-child { border-bottom: none; }
.ql-item:hover {
  background: rgba(21,120,190,.07);
  color: #1578be;
  gap: 13px;
  text-decoration: none;
}
.ql-icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  background: rgba(21,120,190,.08);
  border: 1px solid rgba(21,120,190,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  color: #1578be;
  transition: background .18s, color .18s, border-color .18s;
}
.ql-item:hover .ql-icon {
  background: #1578be;
  color: #fff;
  border-color: transparent;
}
.ql-arrow {
  margin-left: auto;
  font-size: var(--text-xs);
  color: rgba(11,18,32,.25);
  transition: color .18s, transform .18s;
}
.ql-item:hover .ql-arrow {
  color: #1578be;
  transform: translateX(3px);
}
.ql-contact {
  margin: 8px 14px 14px;
  background: linear-gradient(135deg, rgba(21,120,190,.08), rgba(212,0,0,.06));
  border: 1px solid rgba(21,120,190,.15);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.ql-contact p {
  font-size: var(--text-sm);
  color: rgba(11,18,32,.6);
  margin-bottom: 10px;
  line-height: var(--lh-body);
}
.ql-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1578be, #d40000);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.ql-contact a:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

@media (max-width: 768px) {
  .ds-card-body { padding: 18px 16px 22px; }
  .ds-answer { padding: 0 16px 18px 54px; }
  .ds-grid { grid-template-columns: 1fr 1fr; }
  .ql-card { position: static; }
}