/* ============================================================
   HOMEPAGE ADDITIONS — added iteratively
   All new sections: Spotlight, Partners, Testimonials,
   Pillars, Support Strip, New Footer
   ============================================================ */

/* ── WELCOME SUBTITLE (updated) ── */
.dcci-subtitle-l1 { display: inline; }
.dcci-subtitle-l2 { display: inline; font-size: 0.95em; opacity: 0.93; }

.dcci-welcome-subtitle {
  max-width: 1320px;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: clamp(15.5px, 1.55vw, 18.5px);
  font-weight: 500;
  line-height: 1.44;
  color: var(--dcci-purple, #3E1E67);
  text-align: center;
  opacity: 0.85;
}

/* ── ORGANISATION SPACE SPOTLIGHT ───────────────────────────────────────── */

/* Hide support strip for logged-in users on homepage — they have the hub */
body.home.logged-in .dcci-support-strip { display: none !important; }
/* Hide access/upsell section for logged-in users — not ready for this audience yet */
body.home.logged-in .dcci-access-section { display: none !important; }
.dcci-spotlight-welcome {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
  color: #2a1248;
  margin: 20px 0 0 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.dcci-welcome-greeting {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #2a1248;
  margin: 0 0 8px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.dcci-welcome-blurb {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  color: #3e1e67;
  opacity: 0.65;
  margin: 0;
  line-height: 1.6;
  max-width: 560px;
}

/* Band */
.dcci-spotlight-band {
  width: 100%;
  padding: 36px 0 70px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%,   rgba(192, 91, 170, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 100%,  rgba(62, 30, 103, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #e8d8f6 0%, #ddd0f0 50%, #d9ccee 100%);
  border-top: 2px solid #e12686;
}

.dcci-spotlight-inner { max-width: var(--dcci-max-width, 1400px); margin: 0 auto; padding: 0 28px; }

/* ── Two-column layout: card left under welcome text, features right under hero image ── */
.dcci-spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 48px;
}

/* Card + secondary link wrapper — occupies left grid column */
.dcci-spotlight-card-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Card fills its column */
.dcci-spotlight-layout .dcci-spotlight-card {
  width: 100%;
  min-width: 0;
  flex: 1;
  min-height: 0;
}

/* ── Card — white with pink top accent, two-column ── */
.dcci-spotlight-card {
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(62, 30, 103, 0.07);
  border-top: 4px solid transparent;
  box-shadow:
    0 3px 16px rgba(62, 30, 103, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  min-height: 230px;
}
.dcci-spotlight-card:hover {
  transform: translateY(-4px);
  background: #fdfaff;
  box-shadow:
    0 16px 44px rgba(62, 30, 103, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(62, 30, 103, 0.14);
}

/* Remove the left stripe — top border does the job now */
.dcci-spotlight-card::before { display: none; }

/* ── Org accent border-top (mirrors dcci-eh-card colour system) ── */
.dcci-spotlight-card--purple { border-top-color: #1857a6; }
.dcci-spotlight-card--green  { border-top-color: #229954; }
.dcci-spotlight-card--blue   { border-top-color: #005b9a; }
.dcci-spotlight-card--teal   { border-top-color: #69afc9; }
.dcci-spotlight-card--orange { border-top-color: #d35400; }
.dcci-spotlight-card--pink   { border-top-color: #005b9a; }
.dcci-spotlight-card--red      { border-top-color: #8a2387; }
.dcci-spotlight-card--birmingham { border-top-color: #8b2988; }
.dcci-spotlight-card--coventry   { border-top-color: #0053be; }
.dcci-spotlight-card--dcc        { border-top-color: #8d2f88; }
.dcci-spotlight-card--nhs        { border-top-color: #1c5daf; }
.dcci-spotlight-card--medway     { border-top-color: #70c6e4; }
.dcci-spotlight-card--thurrock   { border-top-color: #6d5495; }

/* ── CTA pill matches org colour ── */
.dcci-spotlight-card--purple .dcci-spotlight-cta { background: #1857a6; }
.dcci-spotlight-card--green  .dcci-spotlight-cta { background: #229954; }
.dcci-spotlight-card--blue   .dcci-spotlight-cta { background: #005b9a; }
.dcci-spotlight-card--teal   .dcci-spotlight-cta { background: #69afc9; }
.dcci-spotlight-card--orange .dcci-spotlight-cta { background: #d35400; }
.dcci-spotlight-card--pink   .dcci-spotlight-cta { background: #005b9a; }
.dcci-spotlight-card--red        .dcci-spotlight-cta { background: #8a2387; }
.dcci-spotlight-card--birmingham .dcci-spotlight-cta { background: #8b2988; }
.dcci-spotlight-card--coventry   .dcci-spotlight-cta { background: #0053be; }
.dcci-spotlight-card--dcc        .dcci-spotlight-cta { background: #8d2f88; }
.dcci-spotlight-card--nhs        .dcci-spotlight-cta { background: #1c5daf; }
.dcci-spotlight-card--medway     .dcci-spotlight-cta { background: #70c6e4; }
.dcci-spotlight-card--thurrock   .dcci-spotlight-cta { background: #6d5495; }

/* ── Left column ── */
.dcci-spotlight-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 10px 26px 22px;
  position: relative;
  z-index: 2;
  justify-content: flex-start;
}

/* Org logo in card */
.dcci-spotlight-card-logo-wrap {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  max-width: 180px;
  max-height: 90px;
}
.dcci-spotlight-card-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
}

/* Org logo + name row */
.dcci-spotlight-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 78px;
  margin-bottom: 0;
}

.dcci-spotlight-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(62, 30, 103, 0.05);
  padding: 4px;
  flex-shrink: 0;
}

.dcci-spotlight-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(62, 30, 103, 0.07);
  flex-shrink: 0;
  display: block;
}
.dcci-spotlight-logo-placeholder--purple { background: #1857a6; opacity: 0.12; }
.dcci-spotlight-logo-placeholder--green  { background: #229954; opacity: 0.12; }
.dcci-spotlight-logo-placeholder--blue   { background: #005b9a; opacity: 0.12; }
.dcci-spotlight-logo-placeholder--teal   { background: #69afc9; opacity: 0.12; }
.dcci-spotlight-logo-placeholder--orange { background: #d35400; opacity: 0.12; }
.dcci-spotlight-logo-placeholder--pink   { background: #005b9a; opacity: 0.12; }
.dcci-spotlight-logo-placeholder--red    { background: #8a2387; opacity: 0.12; }

.dcci-spotlight-org-name {
  font-family: var(--dcc-font);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 800;
  line-height: 1.25;
  color: #2a1248;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Eyebrow label */
.dcci-spotlight-eyebrow {
  font-family: var(--dcc-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b59b6;
  opacity: 0.75;
  display: block;
  margin-bottom: 10px;
}

/* Body copy */
.dcci-spotlight-body {
  font-family: var(--dcc-font);
  font-size: clamp(12px, 1.1vw, 13.5px);
  font-weight: 500;
  line-height: 1.6;
  color: #3E1E67;
  opacity: 0.65;
  max-width: 340px;
  margin: 0 0 18px;
}

/* CTA pill — pink filled */
.dcci-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91e8c 0%, #c0186e 100%);
  color: #fff;
  font-family: var(--dcc-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  letter-spacing: 0.01em;
  box-shadow: none;
  margin-top: auto;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.dcci-spotlight-card:hover .dcci-spotlight-cta {
  filter: brightness(1.08);
  transform: translateX(2px);
}
.dcci-spotlight-arrow { flex-shrink: 0; }

/* ── Right column: blob + morph character ── */
.dcci-spotlight-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}

/* Blob — org-accent shape behind morph character */
.dcci-spotlight-blob {
  position: absolute;
  bottom: -66px;
  right: -60px;
  width: 352px;
  height: 352px;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  opacity: 0.22;
  display: block;
}
.dcci-spotlight-blob--purple { background: #1857a6; border-radius: 68% 32% 58% 42% / 46% 62% 38% 54%; }
.dcci-spotlight-blob--green  { background: #229954; border-radius: 42% 58% 66% 34% / 60% 38% 62% 40%; }
.dcci-spotlight-blob--blue   { background: #005b9a; border-radius: 64% 36% 44% 56% / 38% 66% 34% 62%; }
.dcci-spotlight-blob--teal   { background: #69afc9; border-radius: 36% 64% 58% 42% / 62% 38% 68% 32%; }
.dcci-spotlight-blob--orange { background: #d35400; border-radius: 70% 30% 42% 58% / 44% 56% 38% 62%; }
.dcci-spotlight-blob--pink   { background: #005b9a; border-radius: 38% 62% 68% 32% / 58% 42% 64% 36%; }
.dcci-spotlight-blob--red        { background: #8a2387; border-radius: 62% 38% 36% 64% / 40% 60% 44% 56%; }
.dcci-spotlight-blob--birmingham { background: #8b2988; border-radius: 60% 40% 54% 46% / 42% 58% 40% 60%; }
.dcci-spotlight-blob--coventry   { background: #0053be; border-radius: 40% 60% 56% 44% / 64% 36% 58% 42%; }
.dcci-spotlight-blob--dcc        { background: #8d2f88; border-radius: 58% 42% 38% 62% / 46% 54% 48% 52%; }
.dcci-spotlight-blob--nhs        { background: #1c5daf; border-radius: 52% 48% 44% 56% / 60% 40% 54% 46%; }
.dcci-spotlight-blob--medway     { background: #70c6e4; border-radius: 48% 52% 36% 64% / 56% 44% 62% 38%; }
.dcci-spotlight-blob--thurrock   { background: #6d5495; border-radius: 44% 56% 62% 38% / 52% 48% 56% 44%; }

/* Morph character — overflows card top, 40%+ bigger than original */
.dcci-spotlight-morph {
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 352px;
  object-position: bottom center;
  z-index: 2;
  pointer-events: none;
}

/* Fallback initial */
.dcci-spotlight-morph-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.10);
  font-size: 2.5rem;
  font-weight: 800;
  color: #e91e63;
  font-family: var(--dcc-font);
  margin: auto;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .dcci-spotlight-card {
    grid-template-columns: 1fr;
  }
  .dcci-spotlight-visual {
    display: none;
  }
  .dcci-spotlight-left {
    padding: 22px 20px 22px 22px;
  }
}

/* ── RIGHT COLUMN: feature list ── */
.dcci-spotlight-info {
  min-width: 0;
}

.dcci-spotlight-info-eyebrow {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b59b6;
  margin: 0 0 10px;
  display: block;
}

.dcci-spotlight-info-heading {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 800;
  color: #2a1248;
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.dcci-spotlight-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dcci-spotlight-feature {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 16px 14px 10px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(62, 30, 103, 0.08);
  box-shadow: 0 2px 8px rgba(62, 30, 103, 0.06);
  overflow: hidden;
}

/* Icon bubble — more saturated, larger icon */
.dcci-spotlight-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #7d3bb3;
  position: relative;
  z-index: 1;
  transition: color 0.18s ease;
}

/* Irregular blob — sits bottom-left, bleeds off bottom + left, white margin top + right */
.dcci-spotlight-feature-icon::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  left: -28px;
  bottom: -28px;
  top: auto;
  transform: none;
  border-radius: 38% 62% 55% 45% / 50% 42% 58% 50%;
  background: rgba(155, 89, 182, 0.13);
  z-index: -1;
}
.dcci-spotlight-feature--primary .dcci-spotlight-feature-icon::before {
  background: rgba(233, 30, 99, 0.13);
  border-radius: 62% 38% 42% 58% / 45% 58% 42% 55%;
}
.dcci-spotlight-feature--calendar .dcci-spotlight-feature-icon::before {
  background: rgba(46, 204, 113, 0.16);
  border-radius: 45% 55% 38% 62% / 58% 42% 58% 42%;
}
.dcci-spotlight-feature--notice .dcci-spotlight-feature-icon::before {
  background: rgba(52, 152, 219, 0.13);
  border-radius: 55% 45% 62% 38% / 42% 60% 40% 58%;
}

.dcci-spotlight-feature-icon svg {
  width: 20px;
  height: 20px;
}

/* ── Per-feature icon colours ── */
.dcci-spotlight-feature--calendar .dcci-spotlight-feature-icon { color: #2ecc71; }
.dcci-spotlight-feature--calendar .dcci-spotlight-feature-icon::before {
  background: rgba(46, 204, 113, 0.16);
  border-radius: 45% 55% 38% 62% / 58% 42% 58% 42%;
}
.dcci-spotlight-feature--resources .dcci-spotlight-feature-icon { color: #9b59b6; }
.dcci-spotlight-feature--resources .dcci-spotlight-feature-icon::before {
  background: rgba(155, 89, 182, 0.14);
  border-radius: 38% 62% 55% 45% / 50% 42% 58% 50%;
}
.dcci-spotlight-feature--notice .dcci-spotlight-feature-icon { color: #3498db; }
.dcci-spotlight-feature--notice .dcci-spotlight-feature-icon::before {
  background: rgba(52, 152, 219, 0.14);
  border-radius: 55% 45% 62% 38% / 42% 60% 40% 58%;
}

/* ── Booking pill — inline with label ── */
.dcci-spotlight-feature-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.dcci-spotlight-book-pill {
  display: inline-block;
  flex-shrink: 0;
  margin-left: auto;
  padding: 6px 16px;
  background: #e91e63;
  color: #fff;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  align-self: center;
}

/* ── Feature chevrons ── */
.dcci-spotlight-feature-chevron {
  flex-shrink: 0;
  color: rgba(62, 30, 103, 0.25);
  align-self: center;
  margin-left: auto;
  padding-left: 8px;
}

/* ── Card CTA stack ── */
.dcci-spotlight-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Secondary CTA — sits below card in left grid column ── */
.dcci-spotlight-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 700;
  color: #3e1e67;
  opacity: 0.6;
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: 10px;
  transition: opacity 0.18s ease;
}
.dcci-spotlight-secondary-cta:hover {
  opacity: 1;
  color: #9b59b6;
}

/* ── Booking row as a link ── */
.dcci-spotlight-feature-link {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: opacity 0.18s ease;
}
.dcci-spotlight-feature-link:hover {
  opacity: 0.82;
}
.dcci-spotlight-feature-link:hover .dcci-spotlight-feature-icon {
  background: rgba(233, 30, 99, 0.18);
}

/* ── Booking row — primary action, pink border to distinguish ── */
.dcci-spotlight-feature--primary {
  border-color: rgba(233, 30, 99, 0.20);
  box-shadow: 0 2px 12px rgba(233, 30, 99, 0.08);
}
.dcci-spotlight-feature--primary .dcci-spotlight-feature-icon {
  color: #c0185a;
}
.dcci-spotlight-feature--primary .dcci-spotlight-feature-label {
  font-size: 14.5px;
  color: #b01454;
}
.dcci-spotlight-feature--primary .dcci-spotlight-feature-desc {
  opacity: 1;
  color: #a01250;
  font-weight: 800;
}

.dcci-spotlight-feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.dcci-spotlight-feature-label {
  display: block;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 800;
  color: #2a1248;
  line-height: 1.25;
}

.dcci-spotlight-feature-desc {
  display: block;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  color: #3e1e67;
  opacity: 0.58;
  line-height: 1.5;
}

.dcci-spotlight-feature-desc {
  display: block;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  color: #3e1e67;
  opacity: 0.58;
  line-height: 1.5;
}

/* ── Individual My Space: informative checklist (not clickable) ── */
.dcci-spotlight-features--info {
  gap: 6px;
}

.dcci-spotlight-infoitem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(62, 30, 103, 0.03);
  border: 1px solid rgba(62, 30, 103, 0.07);
  cursor: default;
  user-select: none;
}

.dcci-spotlight-infoitem__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  color: #1a9650;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.dcci-spotlight-infoitem__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dcci-spotlight-infoitem__label {
  display: block;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  color: #2a1248;
  line-height: 1.3;
}

.dcci-spotlight-infoitem__desc {
  display: block;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 500;
  color: #3e1e67;
  opacity: 0.6;
  line-height: 1.5;
}

/* ── Layout responsive ── */
@media (max-width: 860px) {
  .dcci-spotlight-layout {
    gap: 36px;
  }
}

@media (max-width: 700px) {
  .dcci-spotlight-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dcci-spotlight-info {
    padding: 0;
  }
}







/* ── WHO WE WORK WITH ── */
/*
 * ── WHO WE WORK WITH — Divider / threshold band ──────────────
 *
 * This section is a deliberate tonal break: above it is the pale
 * utility/navigation zone; below it begins brand proof and marketing.
 * The dark background signals that transition without copying the hero.
 */
.dcci-partners-band {
  width: 100%;
  padding: 88px 0 88px;
  position: relative;
  /* Calmer plum — #241244 reads as aubergine, not electric-dark */
  background:
    radial-gradient(ellipse 65% 70% at 95% 5%,  rgba(225, 38, 134, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 8%  90%,  rgba(141, 47, 136, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(62,  30, 103, 0.10) 0%, transparent 70%),
    linear-gradient(160deg, #261348 0%, #1e0e3a 50%, #241244 100%);
  border-top: 1px solid rgba(225, 38, 134, 0.22);
}
/* Soft bottom fade — bridges the hard cut into the pale testimonials section */
.dcci-partners-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, rgba(80, 30, 90, 0.18) 100%);
  pointer-events: none;
}

.dcci-partners-inner {
  max-width: var(--dcci-max-width, 1400px);
  margin: 0 auto;
  padding: 0 28px;
}

.dcci-partners-header {
  text-align: center;
  margin-bottom: 36px;
}
.dcci-partners-header::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff4ea1 0%, #e12686 100%);
  margin: 0 auto 20px;
  opacity: 0.90;
  box-shadow: 0 0 6px rgba(225, 38, 134, 0.28);
}

.dcci-partners-heading {
  font-family: var(--dcc-font);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.20;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  opacity: 1;
}

.dcci-partners-subtext {
  font-family: var(--dcc-font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.82;
  color: rgba(232, 222, 252, 0.76);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .dcci-partners-subtext { max-width: 100%; white-space: normal; font-size: 13px; }
}

.dcci-logo-strip-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1.00) inset,       /* top-edge highlight */
    0 0  0 1px rgba(90, 40, 130, 0.09),              /* thin purple ring */
    0 8px 24px  rgba(12, 2, 28, 0.22),               /* mid ambient */
    0 20px 48px rgba(12, 2, 28, 0.16),               /* broad float shadow */
    0 2px 6px   rgba(12, 2, 28, 0.10);               /* contact */
  padding: 16px 0;
}

.dcci-logo-strip-wrap::before,
.dcci-logo-strip-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.dcci-logo-strip-wrap::before {
  left: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.55) 55%,
    rgba(255, 255, 255, 0.00) 100%);
}
.dcci-logo-strip-wrap::after {
  right: 0;
  background: linear-gradient(to left,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.55) 55%,
    rgba(255, 255, 255, 0.00) 100%);
}

.dcci-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: dcci-logo-scroll 420s linear infinite;
  will-change: transform;
}
.dcci-logo-strip-wrap:hover .dcci-logo-track { animation-play-state: paused; }

@keyframes dcci-logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .dcci-logo-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; gap: 18px; padding: 0 24px; }
  .dcci-logo-track-set:last-child { display: none; }
}

.dcci-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-right: 1px solid rgba(62, 30, 103, 0.08);
}
.dcci-logo-item:last-child { border-right: none; }
.dcci-logo-item img { height: 36px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(20%) opacity(0.70); transition: filter 0.22s ease; }
.dcci-logo-item img:hover { filter: grayscale(0%) opacity(1); }

.dcci-logo-badge {
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 7px;
  background: rgba(248, 245, 255, 0.85);
  border: 1px solid rgba(62, 30, 103, 0.11);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 1px 4px rgba(62, 30, 103, 0.07);
  white-space: nowrap;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.dcci-logo-badge:hover {
  border-color: rgba(141, 47, 136, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 10px rgba(62, 30, 103, 0.12);
}
.dcci-logo-badge-name { font-family: var(--dcc-font); font-size: 11.5px; font-weight: 700; color: var(--dcci-purple); opacity: 0.85; letter-spacing: 0.02em; line-height: 1; }
.dcci-logo-badge-type { font-family: var(--dcc-font); font-size: 9px; font-weight: 600; color: var(--dcci-purple); opacity: 0.48; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-top: 3px; line-height: 1; }

@media (max-width: 768px) {
  .dcci-partners-band { padding: 88px 0 88px; }
  .dcci-logo-item { padding: 0 16px; }
  .dcci-logo-strip-wrap::before, .dcci-logo-strip-wrap::after { width: 60px; }
}
/* ── TESTIMONIALS ── */
.dcci-partners-more {
  font-family: var(--dcc-font); font-size: 12px; font-weight: 600;
  color: var(--dcci-purple); opacity: 0.58; text-align: center;
  letter-spacing: 0.04em; margin-top: 18px;
}

/* ── TESTIMONIALS — "Evidence of impact" redesign ───────────────────────────
 * Rich warm-purple section that bridges the dark partners band above and the
 * pale pillar band below. Atmospheric, premium, clearly part of the same world
 * as the hero without being a repeat of it.
 * ─────────────────────────────────────────────────────────────────────────── */

.dcci-testimonials-band {
  width: 100%;
  padding: 88px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8%  30%, rgba(192,  91, 170, 0.26) 0%, transparent 62%),
    radial-gradient(ellipse 55% 60% at 92% 70%, rgba(115,  45, 160, 0.30) 0%, transparent 58%),
    radial-gradient(ellipse 80% 45% at 50% 105%, rgba(62,  30, 103, 0.22) 0%, transparent 65%),
    linear-gradient(158deg, #3b1568 0%, #4e2282 45%, #3a196a 100%);
}

/* Top edge transition — blends cleanly away from the dark partners band */
.dcci-testimonials-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 91, 170, 0.45) 40%, rgba(115, 45, 160, 0.45) 60%, transparent 100%);
  pointer-events: none;
}

.dcci-testimonials-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: transparent;
  pointer-events: none;
}

.dcci-testimonials-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────────── */
.dcci-testimonials-header {
  text-align: center;
  margin-bottom: 44px;
}

.dcci-testimonials-eyebrow {
  display: block;
  font-family: var(--dcc-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e91e63;
  margin-bottom: 14px;
}

.dcci-testimonials-heading {
  font-family: var(--dcc-font);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.dcci-testimonials-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2.5px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #3E1E67 0%, #732da0 45%, #e91e63 100%);
  opacity: 0.85;
}

.dcci-testimonials-subtext {
  font-family: var(--dcc-font);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  line-height: 1.65;
  color: #3e1e67;
  opacity: 1;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ────────────────────────────────────────────────────── */
.dcci-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: center; /* allows featured card to rise without stretching siblings */
}

/* ── Cards ───────────────────────────────────────────────────── */
.dcci-tcard {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.30),
    0 4px 16px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  padding: 36px 30px 30px;
  position: relative;
  margin: 0;
  quotes: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Thin colour accent bar — restrained at rest, brightens on hover */
.dcci-tcard::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 2.5px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, #ff2f8e 30%, #8d2f88 70%, transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

/* Hover — lift, tinted shadow, pink-purple accent bar reveal, warmer border */
.dcci-tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 56, 152, 0.28);
  box-shadow:
    0 14px 30px rgba(233, 30, 99, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.dcci-tcard:hover::before {
  opacity: 1;
}

/* Keyboard focus — clear ring in brand palette, no layout shift */
.dcci-tcard:focus-visible {
  outline: 3px solid rgba(233, 30, 99, 0.55);
  outline-offset: 3px;
  transform: translateY(-5px);
  border-color: rgba(168, 56, 152, 0.28);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(111, 45, 189, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.dcci-tcard:focus-visible::before {
  opacity: 1;
}
.dcci-tcard:focus-visible::before {
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.55), rgba(111, 45, 189, 0.45), transparent);
}

/* Thin colour accent bar at top of every card */

/* ── Featured (middle) card ──────────────────────────────────── */
.dcci-tcard--featured {
  transform: translateY(-8px);
  box-shadow:
    0 32px 88px rgba(0, 0, 0, 0.36),
    0 8px 28px rgba(115, 45, 160, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.80);
}

.dcci-tcard--featured:hover,
.dcci-tcard--featured:focus-visible {
  transform: translateY(-13px);
}

.dcci-tcard--featured::before {
  left: 0; right: 0;
  border-radius: 22px 22px 0 0;
  height: 3px;
  background: linear-gradient(90deg, #a83898 0%, #732da0 55%, #3E1E67 100%);
  opacity: 0;
}

/* ── Quote mark ──────────────────────────────────────────────── */
.dcci-tcard-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 68px;
  line-height: 1;
  color: #a83898;
  opacity: 0.18;
  position: absolute;
  top: 14px;
  left: 22px;
  user-select: none;
  pointer-events: none;
}

.dcci-tcard--featured .dcci-tcard-quote-mark {
  opacity: 0.26;
}

/* ── Quote text ──────────────────────────────────────────────── */
.dcci-tcard-quote {
  font-family: var(--dcc-font);
  font-size: clamp(15px, 1.35vw, 16.5px);
  font-weight: 600;
  line-height: 1.72;
  color: #2a1248;
  opacity: 1;
  margin: 0 0 auto;
  padding-top: 30px;
  flex: 1;
}

/* ── Attribution ─────────────────────────────────────────────── */
.dcci-tcard-attribution {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(62, 30, 103, 0.10);
}

.dcci-tcard-role {
  font-family: var(--dcc-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dcci-purple);
  opacity: 0.72;
  line-height: 1.3;
}

.dcci-tcard-org {
  font-family: var(--dcc-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a83898;
  opacity: 0.70;
  line-height: 1.3;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .dcci-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }
  .dcci-tcard--featured {
    transform: none;
  }
  .dcci-testimonials-band {
    padding-bottom: 88px;
  }
}
@media (max-width: 768px) {
  .dcci-tcard { padding: 30px 24px 26px; }
  .dcci-testimonials-header { margin-bottom: 36px; }
  .dcci-testimonials-band { padding: 88px 0 88px; }
}

/* ── TESTIMONIAL SUBMISSION — CTA + Modal ────────────────────────────────────
 * Scoped entirely to .dcci-tsubmit-* — will not affect anything else.
 * ─────────────────────────────────────────────────────────────────────────── */

/* CTA — sits inside the header block, above the cards */
.dcci-tsubmit-cta {
  display: flex;
  justify-content: center;
  margin-top: 19px;
}

.dcci-tsubmit-cta__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--dcc-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff2f8e 0%, #e91e63 45%, #8d2f88 100%);
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  min-height: 48px;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 18px rgba(233, 30, 99, 0.28),
    0 2px 6px  rgba(141, 47, 136, 0.22);
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

/* Inner top-edge highlight — mimics the light catch seen in the hero visuals */
.dcci-tsubmit-cta__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}

.dcci-tsubmit-cta__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(233, 30, 99, 0.38),
    0 4px 10px  rgba(141, 47, 136, 0.28);
}

.dcci-tsubmit-cta__btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.80);
  outline-offset: 3px;
}

/* ── Modal overlay ───────────────────────────────────────────── */
.dcci-tsubmit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(20, 8, 40, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.dcci-tsubmit-overlay[hidden] {
  display: none;
}

.dcci-tsubmit-overlay.is-open {
  opacity: 1;
}

/* ── Modal card ──────────────────────────────────────────────── */
.dcci-tsubmit-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.45),
    0 8px 32px rgba(62, 30, 103, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  padding: 44px 40px 40px;
  transform: translateY(16px);
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.dcci-tsubmit-overlay.is-open .dcci-tsubmit-modal {
  transform: translateY(0);
}

/* ── Close button ────────────────────────────────────────────── */
.dcci-tsubmit-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 30, 103, 0.06);
  border: none;
  border-radius: 50%;
  color: var(--dcci-purple);
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
  padding: 0;
}

.dcci-tsubmit-close:hover {
  opacity: 1;
  background: rgba(62, 30, 103, 0.12);
}

/* ── Modal header ────────────────────────────────────────────── */
.dcci-tsubmit-header {
  margin-bottom: 28px;
}

.dcci-tsubmit-eyebrow {
  display: block;
  font-family: var(--dcc-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #a83898;
  margin-bottom: 10px;
}

.dcci-tsubmit-title {
  font-family: var(--dcc-font);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2a1248;
  margin: 0 0 10px;
}

.dcci-tsubmit-intro {
  font-family: var(--dcc-font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--dcci-purple);
  opacity: 0.60;
  margin: 0;
}

/* ── Form fields ─────────────────────────────────────────────── */
.dcci-tsubmit-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dcci-tsubmit-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dcci-tsubmit-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dcci-tsubmit-label {
  font-family: var(--dcc-font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dcci-purple);
  opacity: 0.80;
  letter-spacing: 0.01em;
}

.dcci-tsubmit-optional {
  font-weight: 500;
  opacity: 0.55;
}

.dcci-tsubmit-input,
.dcci-tsubmit-textarea {
  width: 100%;
  font-family: var(--dcc-font);
  font-size: 14.5px;
  font-weight: 500;
  color: #2a1248;
  background: #f9f7fc;
  border: 1.5px solid rgba(62, 30, 103, 0.15);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
  appearance: none;
}

.dcci-tsubmit-input::placeholder,
.dcci-tsubmit-textarea::placeholder {
  color: rgba(62, 30, 103, 0.30);
}

.dcci-tsubmit-input:focus,
.dcci-tsubmit-textarea:focus {
  outline: none;
  border-color: #a83898;
  box-shadow: 0 0 0 3px rgba(168, 56, 152, 0.12);
  background: #ffffff;
}

.dcci-tsubmit-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* ── Checkboxes ──────────────────────────────────────────────── */
.dcci-tsubmit-check-row {
  gap: 0;
}

.dcci-tsubmit-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--dcc-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--dcci-purple);
  cursor: pointer;
}

.dcci-tsubmit-check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #a83898;
  cursor: pointer;
}

/* ── Error message ───────────────────────────────────────────── */
.dcci-tsubmit-error {
  font-family: var(--dcc-font);
  font-size: 13px;
  font-weight: 600;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.20);
  border-radius: 8px;
  padding: 10px 14px;
}

/* ── Submit button ───────────────────────────────────────────── */
.dcci-tsubmit-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--dcc-font);
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #a83898 0%, #732da0 50%, #3E1E67 100%);
  border: none;
  border-radius: 999px;
  padding: 13px 32px;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow:
    0 6px 20px rgba(115, 45, 160, 0.32),
    0 2px 6px rgba(62, 30, 103, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  align-self: flex-start;
}

.dcci-tsubmit-submit:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 10px 28px rgba(115, 45, 160, 0.40),
    0 4px 10px rgba(62, 30, 103, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dcci-tsubmit-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ── Privacy note ────────────────────────────────────────────── */
.dcci-tsubmit-privacy {
  font-family: var(--dcc-font);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--dcci-purple);
  opacity: 0.38;
  margin: 0;
  line-height: 1.5;
}

/* ── Success state ───────────────────────────────────────────── */
.dcci-tsubmit-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  gap: 14px;
}

.dcci-tsubmit-success-icon {
  opacity: 0.85;
}

.dcci-tsubmit-success-heading {
  font-family: var(--dcc-font);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2a1248;
  margin: 0;
}

.dcci-tsubmit-success-body {
  font-family: var(--dcc-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--dcci-purple);
  opacity: 0.70;
  margin: 0;
  max-width: 380px;
}

.dcci-tsubmit-success-close {
  display: inline-flex;
  align-items: center;
  font-family: var(--dcc-font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dcci-purple);
  background: transparent;
  border: 1.5px solid rgba(62, 30, 103, 0.20);
  border-radius: 999px;
  padding: 9px 24px;
  cursor: pointer;
  margin-top: 6px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dcci-tsubmit-success-close:hover {
  border-color: rgba(62, 30, 103, 0.45);
  background: rgba(62, 30, 103, 0.04);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .dcci-tsubmit-modal {
    padding: 36px 24px 32px;
    border-radius: 18px;
    max-height: 92vh;
  }
  .dcci-tsubmit-row--half {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dcci-tsubmit-submit {
    width: 100%;
    justify-content: center;
  }
}


.dcci-pillars-band  { width: 100%; padding: 88px 0 88px; background: rgba(235, 228, 252, 0.32); overflow: visible; }
.dcci-pillars-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; overflow: visible; }
.dcci-pillars-header { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dcci-pillars-heading { font-family: var(--dcc-font); font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; line-height: 1.2; color: var(--dcci-purple); }
.dcci-pillars-subtext { font-family: var(--dcc-font); font-size: clamp(14px, 1.3vw, 16px); font-weight: 500; line-height: 1.6; color: var(--dcci-purple); opacity: 0.72; max-width: 900px; white-space: nowrap; margin: 0 auto; }
@media (max-width: 900px) { .dcci-pillars-subtext { white-space: normal; max-width: 100%; } }

/* ── PRACTICE AREA CARDS — left-aligned product layout ────────
 *
 * Circle is now INSIDE the card, top-left, 64px.
 * Header = circle + title side by side.
 * Description left-aligned below header.
 * Footer row = buttons (left) + arrow (right).
 * All colour derives from one --pc token per card.
 */

/* Per-card colour tokens */
.dcci-pcard--safeguarding   { --pc: #E91E63; --pc-r: 233; --pc-g:  30; --pc-b:  99; }
.dcci-pcard--mental-cap     { --pc: #3498DB; --pc-r:  52; --pc-g: 152; --pc-b: 219; }
.dcci-pcard--person-centred { --pc: #2ECC71; --pc-r:  46; --pc-g: 204; --pc-b: 113; }
.dcci-pcard--neurodiversity { --pc: #E67E22; --pc-r: 230; --pc-g: 126; --pc-b:  34; }
.dcci-pcard--legal          { --pc: #9B59B6; --pc-r: 155; --pc-g:  89; --pc-b: 182; }
.dcci-pcard--coproduction   { --pc: #36469E; --pc-r:  54; --pc-g:  70; --pc-b: 158; }

.dcci-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;           /* uniform gap — no more extra row gap for floating circles */
  align-items: stretch; /* equal height rows */
  overflow: visible;
}

/* Wrapper — now just a sizing/hover context, no offset needed */
.dcci-pcard-wrap {
  display: flex;
  flex-direction: column;
}

/* Card surface */
.dcci-pcard {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.05);
  border-radius: 14px;
  border: 1.5px solid rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.14);
  border-top: 2px solid rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.50);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.06),
    0 1px 3px  rgba(0, 0, 0, 0.04);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.20s ease, box-shadow 0.20s ease, border-color 0.20s ease;
}
.dcci-pcard-wrap:hover .dcci-pcard {
  transform: translateY(-4px);
  border-color: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.28);
  border-top-color: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.72);
  box-shadow:
    0 10px 30px rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.12),
    0 3px 8px   rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.07);
}

/* Hidden legacy elements */
.dcci-pcard-img  { display: none; }
.dcci-pcard-icon { display: none; }
.dcci-pcard-band { display: none; }

/* Card body — left-aligned, consistent padding */
.dcci-pcard-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 16px;
  gap: 0;
  text-align: left;
}

/*
 * Header row: circle (64px) + title side by side.
 * align-items: center keeps title vertically centred against the circle.
 */
.dcci-pcard-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}

/* Circle — 64px, inside card, top-left */
.dcci-pcard-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.16),
    0 3px 10px rgba(0, 0, 0, 0.12),
    0 1px 4px  rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.20s ease;
  position: static;   /* override any inherited absolute positioning */
  transform: none;
  top: auto; left: auto;
}
.dcci-pcard-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.dcci-pcard-wrap:hover .dcci-pcard-circle {
  box-shadow:
    0 0 0 2px rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.28),
    0 5px 14px rgba(0, 0, 0, 0.15),
    0 2px 5px  rgba(0, 0, 0, 0.10);
  transform: none; /* no longer lifts independently — card lifts as one */
}

.dcci-pcard-title {
  font-family: var(--dcc-font);
  font-size: clamp(14px, 1.3vw, 15.5px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--dcci-purple, #3E1E67);
  margin: 0;
  text-align: left;
}

.dcci-pcard-desc {
  font-family: var(--dcc-font);
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--dcci-purple, #3E1E67);
  opacity: 0.62;
  margin: 0 0 14px;
  flex: 1;
  text-align: left;
}

/*
 * Footer row: buttons (left) + arrow (right).
 * align-items: center keeps arrow vertically centred against button row.
 */
.dcci-pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

/* Signal tags container */
.dcci-pcard-content-signal {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}
.dcci-pcard-signal-tag {
  font-family: var(--dcc-font);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 4px 11px;
  white-space: nowrap;
  transition: background 0.18s ease;
}
/* TOOLS = primary: filled tint */
.dcci-pcard-signal-tag:first-child {
  color: var(--pc);
  background: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.13);
  border: 1.5px solid rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.22);
}
/* RESOURCES = secondary: outline */
.dcci-pcard-signal-tag:last-child {
  color: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.85);
  background: transparent;
  border: 1.5px solid rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.30);
}

/* Arrow — right side of footer, secondary action */
.dcci-pcard-arrow {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.08);
  border: 1px solid rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.20s ease, transform 0.20s ease, border-color 0.20s ease;
  margin-top: 0; /* no longer floating at bottom */
  align-self: auto;
}
.dcci-pcard-arrow svg {
  width: 11px; height: 11px;
  stroke: var(--pc);
  opacity: 0.55;
  transition: opacity 0.20s ease;
}
.dcci-pcard-wrap:hover .dcci-pcard-arrow {
  background: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.15);
  border-color: rgba(var(--pc-r), var(--pc-g), var(--pc-b), 0.30);
  transform: translateX(3px);
}
.dcci-pcard-wrap:hover .dcci-pcard-arrow svg { opacity: 0.88; }

@media (max-width: 900px)  { .dcci-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  {
  .dcci-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .dcci-pillars-band { padding-bottom: 60px; }
  .dcci-pcard-body { padding: 16px; }
}

/* ── PARTNERSHIP TIERS ── */
.dcci-tiers-band  { width: 100%; padding: 80px 0 72px; }
.dcci-tiers-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.dcci-tiers-header { text-align: center; margin-bottom: 40px; }
.dcci-tiers-heading {
  font-family: var(--dcc-font); font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800; line-height: 1.22; color: var(--dcci-purple); margin-bottom: 12px;
}
.dcci-tiers-intro {
  font-family: var(--dcc-font); font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500; line-height: 1.65; color: var(--dcci-purple);
  opacity: 0.70; max-width: 560px; margin: 0 auto;
}

.dcci-tiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 36px;
}

.dcci-tier-card {
  background: rgba(255,255,255,0.72); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(175,148,215,0.28);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(62,30,103,0.07), inset 0 1px 0 rgba(255,255,255,0.90);
  padding: 28px 28px 30px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}

/* Thin top accent per tier — uses existing brand colours, very light */
.dcci-tier-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 18px 18px 0 0;
}
.dcci-tier-card--bronze::before { background: linear-gradient(90deg, #c07c2a, #a06018); }
.dcci-tier-card--silver::before { background: linear-gradient(90deg, #8a9ab5, #6b7f9a); }
.dcci-tier-card--gold::before   { background: linear-gradient(90deg, #d4a017, #b8860c); }

.dcci-tier-label {
  font-family: var(--dcc-font); font-size: 13px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--dcci-purple);
  opacity: 0.65;
}
.dcci-tier-desc {
  font-family: var(--dcc-font); font-size: clamp(14px, 1.25vw, 15.5px);
  font-weight: 500; line-height: 1.6; color: var(--dcci-purple); opacity: 0.82;
  margin: 0;
}

.dcci-tiers-cta-wrap { text-align: center; }
.dcci-tiers-cta {
  display: inline-block; padding: 13px 32px; border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(62,30,103,0.30);
  color: var(--dcci-purple); font-family: var(--dcc-font);
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  opacity: 0.80;
  transition: opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.dcci-tiers-cta:hover {
  opacity: 1; border-color: rgba(62,30,103,0.55);
  box-shadow: 0 4px 14px rgba(62,30,103,0.12);
}

@media (max-width: 768px) {
  .dcci-tiers-grid { grid-template-columns: 1fr; gap: 14px; }
  .dcci-tiers-band { padding: 60px 0 52px; }
}

/* ── SUPPORT / HELP STRIP ── */
.dcci-support-strip {
  width: 100%;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,170,230,0.22) 0%, transparent 70%), rgba(240,232,250,0.70);
  border-top: 1px solid rgba(62,30,103,0.07);
  border-bottom: 1px solid rgba(62,30,103,0.07);
}
.dcci-support-inner {
  max-width: 1320px; margin: 0 auto; padding: 44px 24px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.dcci-support-text  { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 260px; }
.dcci-support-heading { font-family: var(--dcc-font); font-size: clamp(17px, 2vw, 22px); font-weight: 800; line-height: 1.25; color: var(--dcci-purple); }
.dcci-support-body  { font-family: var(--dcc-font); font-size: clamp(14px, 1.3vw, 15.5px); font-weight: 500; line-height: 1.65; color: var(--dcci-purple); opacity: 0.75; max-width: 520px; }

.dcci-support-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }

.dcci-support-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px;
  background: linear-gradient(135deg, #8d2f88 0%, #3E1E67 100%);
  color: #fff; font-family: var(--dcc-font); font-size: 0.94rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(62,30,103,0.34), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.dcci-support-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(62,30,103,0.32), inset 0 1px 0 rgba(255,255,255,0.18); filter: brightness(1.07); }

.dcci-support-secondary-link {
  font-family: var(--dcc-font); font-size: 13px; font-weight: 600;
  color: var(--dcci-purple); opacity: 0.42; text-decoration: none;
  border-bottom: 1px solid rgba(62,30,103,0.16); padding-bottom: 1px;
  transition: opacity 0.15s ease, border-color 0.15s ease; white-space: nowrap;
}
.dcci-support-secondary-link:hover { opacity: 0.88; border-color: rgba(62,30,103,0.55); }

@media (max-width: 680px) {
  .dcci-support-inner   { flex-direction: column; align-items: flex-start; padding: 40px 20px 44px; }
  .dcci-support-actions { align-items: flex-start; }
}

/* ── NEW FOOTER — full visual treatment restored ── */
.dcci-footer-new {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at 50% 38%, rgba(229,146,158,0.14) 0%, rgba(229,146,158,0) 30%),
    radial-gradient(circle at 15% 65%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 85% 68%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(180deg, #6f2cab 0%, #4c256f 48%, #241536 100%);
  box-shadow:
    inset 0 12px 30px rgba(255,255,255,0.03),
    inset 0 -24px 40px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* Glowing pink top stripe */
.dcci-footer-new::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: #ff5aa5;
  box-shadow:
    0 0 8px  rgba(255, 90, 165, 0.55),
    0 0 18px rgba(255, 90, 165, 0.25);
}

/* Glowing pink bottom stripe */
.dcci-footer-new::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #ff5aa5;
  box-shadow:
    0 0 8px  rgba(255, 90, 165, 0.55),
    0 0 18px rgba(255, 90, 165, 0.25);
}

.dcci-footer-new-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 24px 0;
  z-index: 1;
}

/* Inner ambient light spots */
.dcci-footer-new-inner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,0.06) 0%, transparent 20%),
    radial-gradient(circle at 75% 30%, rgba(255,255,255,0.05) 0%, transparent 18%),
    radial-gradient(circle at 60% 75%, rgba(255,255,255,0.04) 0%, transparent 20%),
    radial-gradient(circle at 35% 80%, rgba(255,255,255,0.04) 0%, transparent 18%);
}

.dcci-footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dcci-footer-col-heading {
  font-family: var(--dcc-font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: #fff; opacity: 0.55; margin: 0 0 18px; display: block;
}

.dcci-footer-brand-name {
  font-family: var(--dcc-font); font-size: 20px; font-weight: 800;
  color: #fff; margin: 0 0 14px; line-height: 1.1;
  text-shadow: 0 0 20px rgba(255,90,165,0.3);
}
.dcci-footer-brand-desc {
  font-family: var(--dcc-font); font-size: 13.5px; font-weight: 500;
  line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 310px;
}

.dcci-footer-links   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dcci-footer-links a {
  font-family: var(--dcc-font); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none; line-height: 1.4;
  transition: color 0.15s ease;
}
.dcci-footer-links a:hover { color: #fff; }

.dcci-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.dcci-footer-contact-item:last-child { margin-bottom: 0; }
.dcci-footer-contact-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.45; margin-top: 1px; }
.dcci-footer-contact-text { font-family: var(--dcc-font); font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.60); line-height: 1.5; text-decoration: none; }
a.dcci-footer-contact-text:hover { color: rgba(255,255,255,0.90); }

/* Accreditations row */
.dcci-footer-accred-row {
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.dcci-footer-accred-label {
  font-family: var(--dcc-font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: #fff; opacity: 0.55; flex-shrink: 0; margin: 0;
}
.dcci-accreditation-box {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.95); border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.dcci-accreditation-box img { height: 40px; width: auto; object-fit: contain; }

/* Bottom bar */
.dcci-footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding: 20px 0 26px;
}
.dcci-footer-copy-new {
  font-family: var(--dcc-font); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.32);
}
.dcci-footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.dcci-footer-bottom-links a {
  font-family: var(--dcc-font); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.15s ease;
}
.dcci-footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* Decorative sparkle dots */
.dcci-footer-sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.dcci-footer-sparkle {
  position: absolute; border-radius: 50%;
  background: rgba(255, 90, 165, 0.18);
  animation: dcci-sparkle-pulse 6s ease-in-out infinite;
}
.dcci-footer-sparkle--1 { width: 180px; height: 180px; top: -40px;  left: 8%;  animation-delay: 0s;    opacity: 0.5; }
.dcci-footer-sparkle--2 { width: 120px; height: 120px; top: 20px;   left: 72%; animation-delay: 1.5s;  opacity: 0.35; }
.dcci-footer-sparkle--3 { width: 80px;  height: 80px;  bottom: 30px; left: 45%; animation-delay: 3s;    opacity: 0.3; }
.dcci-footer-sparkle--4 { width: 60px;  height: 60px;  bottom: 60px; left: 22%; animation-delay: 0.8s;  opacity: 0.25; }
.dcci-footer-sparkle--5 { width: 100px; height: 100px; top: 10px;   left: 38%; animation-delay: 2.2s;  opacity: 0.2; }

@keyframes dcci-sparkle-pulse {
  0%, 100% { transform: scale(1);    opacity: var(--base-op, 0.2); }
  50%       { transform: scale(1.18); opacity: calc(var(--base-op, 0.2) * 0.5); }
}
@media (prefers-reduced-motion: reduce) { .dcci-footer-sparkle { animation: none; } }

/* Footer responsive */
@media (max-width: 860px) {
  .dcci-footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .dcci-footer-accred-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dcci-accreditation-box { justify-content: center; }
}
@media (max-width: 560px) {
  .dcci-footer-cols         { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .dcci-footer-new-inner    { padding: 44px 20px 0; }
  .dcci-footer-bottom-bar   { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   Further Reading / Extend Your Practice component
   All selectors scoped to .dcci-fr-* — no clashes with existing styles
   ════════════════════════════════════════════════════════════ */

.dcci-fr-block {
    --dcci-fr-accent:      #8d2f88;
    --dcci-fr-accent-deep: #3E1E67;
    --dcci-fr-bg:          #f2ecfa;
    --dcci-fr-text:        #2e3240;
    --dcci-fr-text-soft:   #3E3558;
    --dcci-fr-hover-pink:  #e5929e;
    --dcci-fr-border:      rgba(141, 47, 136, 0.14);
    --dcci-fr-radius:      20px;
    --dcci-fr-item-radius: 14px;
    --dcci-fr-font:        "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --dcci-fr-shadow:      0 4px 18px rgba(62, 30, 103, 0.09);
    --dcci-fr-transition:  all 0.22s cubic-bezier(0.4, 0, 0.2, 1);

    font-family:   var(--dcci-fr-font);
    background:    var(--dcci-fr-bg);
    border-radius: var(--dcci-fr-radius);
    padding:       28px 28px 24px;
    margin:        36px 0 8px;
    box-shadow:    var(--dcci-fr-shadow);
    border-left:   5px solid var(--dcci-fr-accent);
    position:      relative;
    overflow:      hidden;
}

.dcci-fr-block::before {
    content:        "";
    position:       absolute;
    top:            -40px;
    right:          -40px;
    width:          160px;
    height:         160px;
    border-radius:  50%;
    background:     radial-gradient(circle, rgba(141, 47, 136, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.dcci-fr-header { margin-bottom: 20px; }

.dcci-fr-title-row {
    display:     flex;
    align-items: center;
    gap:         10px;
    margin:      0 0 6px;
}

.dcci-fr-icon-wrap {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           28px;
    height:          28px;
    border-radius:   50%;
    background:      rgba(141, 47, 136, 0.1);
    flex-shrink:     0;
    color:           var(--dcci-fr-accent);
}

.dcci-fr-icon-svg { width: 16px; height: 16px; display: block; }

.dcci-fr-title {
    font-family:    var(--dcci-fr-font);
    font-size:      1.05rem;
    font-weight:    700;
    color:          var(--dcci-fr-accent);
    margin:         0;
    line-height:    1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.dcci-fr-subtitle {
    font-family: var(--dcci-fr-font);
    font-size:   0.92rem;
    color:       var(--dcci-fr-text-soft);
    margin:      4px 0 0 38px;
    line-height: 1.65;
    font-weight: 500;
}

.dcci-fr-body { display: flex; flex-direction: column; gap: 4px; }

.dcci-fr-category-group { display: flex; flex-direction: column; gap: 4px; }

.dcci-fr-category-label {
    font-family:    var(--dcci-fr-font);
    font-size:      0.72rem;
    font-weight:    700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          var(--dcci-fr-accent);
    margin:         16px 0 6px;
    padding-bottom: 6px;
    border-bottom:  1px solid var(--dcci-fr-border);
    opacity:        0.85;
}

.dcci-fr-category-group:first-child .dcci-fr-category-label { margin-top: 0; }

.dcci-fr-list {
    list-style: none;
    margin:     0;
    padding:    0;
    display:    flex;
    flex-direction: column;
    gap:        4px;
}

.dcci-fr-item { margin: 0; padding: 0; }

.dcci-fr-link {
    display:         flex;
    align-items:     flex-start;
    gap:             12px;
    padding:         14px 16px;
    border-radius:   var(--dcci-fr-item-radius);
    background:      rgba(255, 255, 255, 0.62);
    border:          1px solid rgba(141, 47, 136, 0.08);
    text-decoration: none !important;
    color:           inherit;
    transition:      var(--dcci-fr-transition);
    position:        relative;
}

.dcci-fr-link:hover,
.dcci-fr-link:focus-visible {
    background:      rgba(255, 255, 255, 0.92);
    border-color:    rgba(229, 146, 158, 0.4);
    box-shadow:      0 4px 16px rgba(229, 146, 158, 0.18);
    transform:       translateY(-2px);
    text-decoration: none !important;
}

.dcci-fr-link:focus-visible {
    outline:        3px solid var(--dcci-fr-hover-pink);
    outline-offset: 2px;
}

.dcci-fr-item-icon {
    font-size:   1.25rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top:  2px;
    user-select: none;
}

.dcci-fr-item-content {
    display:        flex;
    flex-direction: column;
    gap:            4px;
    flex:           1;
    min-width:      0;
}

.dcci-fr-item-title {
    display:     inline-flex;
    align-items: center;
    gap:         5px;
    font-family: var(--dcci-fr-font);
    font-size:   0.95rem;
    font-weight: 600;
    color:       var(--dcci-fr-accent-deep);
    line-height: 1.4;
    transition:  color 0.2s ease;
    flex-wrap:   wrap;
}

.dcci-fr-link:hover .dcci-fr-item-title,
.dcci-fr-link:focus-visible .dcci-fr-item-title { color: var(--dcci-fr-hover-pink); }

.dcci-fr-item-desc {
    font-family: var(--dcci-fr-font);
    font-size:   0.855rem;
    color:       var(--dcci-fr-text-soft);
    line-height: 1.7;
    font-weight: 400;
}

.dcci-fr-ext-icon {
    display:     inline-flex;
    align-items: center;
    flex-shrink: 0;
    width:       11px;
    height:      11px;
    opacity:     0.5;
    color:       var(--dcci-fr-accent);
    margin-left: 2px;
    transition:  opacity 0.2s ease;
}

.dcci-fr-ext-icon svg { width: 11px; height: 11px; display: block; }

.dcci-fr-link:hover .dcci-fr-ext-icon { opacity: 0.85; }

.dcci-fr-arrow {
    display:     flex;
    align-items: center;
    flex-shrink: 0;
    width:       18px;
    height:      18px;
    color:       var(--dcci-fr-accent);
    opacity:     0.35;
    margin-top:  2px;
    transition:  opacity 0.22s ease, transform 0.22s ease;
}

.dcci-fr-arrow svg { width: 18px; height: 18px; display: block; }

.dcci-fr-link:hover .dcci-fr-arrow,
.dcci-fr-link:focus-visible .dcci-fr-arrow {
    opacity:   0.9;
    transform: translateX(3px);
    color:     var(--dcci-fr-hover-pink);
}

@media (max-width: 768px) {
    .dcci-fr-block       { padding: 22px 18px 20px; border-radius: 16px; margin: 28px 0 8px; }
    .dcci-fr-title       { font-size: 0.95rem; }
    .dcci-fr-link        { padding: 12px 14px; }
    .dcci-fr-item-title  { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .dcci-fr-block      { padding: 18px 14px 18px; border-radius: 14px; }
    .dcci-fr-item-icon  { display: none; }
    .dcci-fr-arrow      { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .dcci-fr-link,
    .dcci-fr-arrow,
    .dcci-fr-item-title { transition: none !important; transform: none !important; }
}

@media print {
    .dcci-fr-block       { border: 1px solid #8d2f88; box-shadow: none; background: #fff; }
    .dcci-fr-link        { background: transparent; border: none; }
    .dcci-fr-arrow,
    .dcci-fr-icon-wrap   { display: none; }
    .dcci-fr-link::after {
        content:    " (" attr(href) ")";
        font-size:  0.75rem;
        color:      #555;
        display:    block;
        word-break: break-all;
    }
}

/* ════════════════════════════════════════════════════════════
   Further Reading / Extend Your Practice component
   All selectors scoped to .dcci-fr-* — no clashes with existing styles
   ════════════════════════════════════════════════════════════ */

.dcci-fr-block {
    --dcci-fr-accent:      #8d2f88;
    --dcci-fr-accent-deep: #3E1E67;
    --dcci-fr-bg:          #f2ecfa;
    --dcci-fr-text:        #2e3240;
    --dcci-fr-text-soft:   #3E3558;
    --dcci-fr-hover-pink:  #e5929e;
    --dcci-fr-border:      rgba(141, 47, 136, 0.14);
    --dcci-fr-radius:      20px;
    --dcci-fr-item-radius: 14px;
    --dcci-fr-font:        "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --dcci-fr-shadow:      0 4px 18px rgba(62, 30, 103, 0.09);
    --dcci-fr-transition:  all 0.22s cubic-bezier(0.4, 0, 0.2, 1);

    font-family:   var(--dcci-fr-font);
    background:    var(--dcci-fr-bg);
    border-radius: var(--dcci-fr-radius);
    padding:       28px 28px 24px;
    margin:        36px 0 8px;
    box-shadow:    var(--dcci-fr-shadow);
    border-left:   5px solid var(--dcci-fr-accent);
    position:      relative;
    overflow:      hidden;
}

.dcci-fr-block::before {
    content:        "";
    position:       absolute;
    top:            -40px;
    right:          -40px;
    width:          160px;
    height:         160px;
    border-radius:  50%;
    background:     radial-gradient(circle, rgba(141, 47, 136, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.dcci-fr-header { margin-bottom: 20px; }

.dcci-fr-title-row {
    display:     flex;
    align-items: center;
    gap:         10px;
    margin:      0 0 6px;
}

.dcci-fr-icon-wrap {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           28px;
    height:          28px;
    border-radius:   50%;
    background:      rgba(141, 47, 136, 0.1);
    flex-shrink:     0;
    color:           var(--dcci-fr-accent);
}

.dcci-fr-icon-svg { width: 16px; height: 16px; display: block; }

.dcci-fr-title {
    font-family:    var(--dcci-fr-font);
    font-size:      1.05rem;
    font-weight:    700;
    color:          var(--dcci-fr-accent);
    margin:         0;
    line-height:    1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.dcci-fr-subtitle {
    font-family: var(--dcci-fr-font);
    font-size:   0.92rem;
    color:       var(--dcci-fr-text-soft);
    margin:      4px 0 0 38px;
    line-height: 1.65;
    font-weight: 500;
}

.dcci-fr-body { display: flex; flex-direction: column; gap: 4px; }

.dcci-fr-category-group { display: flex; flex-direction: column; gap: 4px; }

.dcci-fr-category-label {
    font-family:    var(--dcci-fr-font);
    font-size:      0.72rem;
    font-weight:    700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          var(--dcci-fr-accent);
    margin:         16px 0 6px;
    padding-bottom: 6px;
    border-bottom:  1px solid var(--dcci-fr-border);
    opacity:        0.85;
}

.dcci-fr-category-group:first-child .dcci-fr-category-label { margin-top: 0; }

.dcci-fr-list {
    list-style: none;
    margin:     0;
    padding:    0;
    display:    flex;
    flex-direction: column;
    gap:        4px;
}

.dcci-fr-item { margin: 0; padding: 0; }

.dcci-fr-link {
    display:         flex;
    align-items:     flex-start;
    gap:             12px;
    padding:         14px 16px;
    border-radius:   var(--dcci-fr-item-radius);
    background:      rgba(255, 255, 255, 0.62);
    border:          1px solid rgba(141, 47, 136, 0.08);
    text-decoration: none !important;
    color:           inherit;
    transition:      var(--dcci-fr-transition);
    position:        relative;
}

.dcci-fr-link:hover,
.dcci-fr-link:focus-visible {
    background:      rgba(255, 255, 255, 0.92);
    border-color:    rgba(229, 146, 158, 0.4);
    box-shadow:      0 4px 16px rgba(229, 146, 158, 0.18);
    transform:       translateY(-2px);
    text-decoration: none !important;
}

.dcci-fr-link:focus-visible {
    outline:        3px solid var(--dcci-fr-hover-pink);
    outline-offset: 2px;
}

.dcci-fr-item-icon {
    font-size:   1.25rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top:  2px;
    user-select: none;
}

.dcci-fr-item-content {
    display:        flex;
    flex-direction: column;
    gap:            4px;
    flex:           1;
    min-width:      0;
}

.dcci-fr-item-title {
    display:     inline-flex;
    align-items: center;
    gap:         5px;
    font-family: var(--dcci-fr-font);
    font-size:   0.95rem;
    font-weight: 600;
    color:       var(--dcci-fr-accent-deep);
    line-height: 1.4;
    transition:  color 0.2s ease;
    flex-wrap:   wrap;
}

.dcci-fr-link:hover .dcci-fr-item-title,
.dcci-fr-link:focus-visible .dcci-fr-item-title { color: var(--dcci-fr-hover-pink); }

.dcci-fr-item-desc {
    font-family: var(--dcci-fr-font);
    font-size:   0.855rem;
    color:       var(--dcci-fr-text-soft);
    line-height: 1.7;
    font-weight: 400;
}

.dcci-fr-ext-icon {
    display:     inline-flex;
    align-items: center;
    flex-shrink: 0;
    width:       11px;
    height:      11px;
    opacity:     0.5;
    color:       var(--dcci-fr-accent);
    margin-left: 2px;
    transition:  opacity 0.2s ease;
}

.dcci-fr-ext-icon svg { width: 11px; height: 11px; display: block; }

.dcci-fr-link:hover .dcci-fr-ext-icon { opacity: 0.85; }

.dcci-fr-arrow {
    display:     flex;
    align-items: center;
    flex-shrink: 0;
    width:       18px;
    height:      18px;
    color:       var(--dcci-fr-accent);
    opacity:     0.35;
    margin-top:  2px;
    transition:  opacity 0.22s ease, transform 0.22s ease;
}

.dcci-fr-arrow svg { width: 18px; height: 18px; display: block; }

.dcci-fr-link:hover .dcci-fr-arrow,
.dcci-fr-link:focus-visible .dcci-fr-arrow {
    opacity:   0.9;
    transform: translateX(3px);
    color:     var(--dcci-fr-hover-pink);
}

@media (max-width: 768px) {
    .dcci-fr-block       { padding: 22px 18px 20px; border-radius: 16px; margin: 28px 0 8px; }
    .dcci-fr-title       { font-size: 0.95rem; }
    .dcci-fr-link        { padding: 12px 14px; }
    .dcci-fr-item-title  { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .dcci-fr-block      { padding: 18px 14px 18px; border-radius: 14px; }
    .dcci-fr-item-icon  { display: none; }
    .dcci-fr-arrow      { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .dcci-fr-link,
    .dcci-fr-arrow,
    .dcci-fr-item-title { transition: none !important; transform: none !important; }
}

@media print {
    .dcci-fr-block       { border: 1px solid #8d2f88; box-shadow: none; background: #fff; }
    .dcci-fr-link        { background: transparent; border: none; }
    .dcci-fr-arrow,
    .dcci-fr-icon-wrap   { display: none; }
    .dcci-fr-link::after {
        content:    " (" attr(href) ")";
        font-size:  0.75rem;
        color:      #555;
        display:    block;
        word-break: break-all;
    }
}


/* ═══════════════════════════════════════════════════════════════
   EVENTS CALENDAR SECTION
   Uses TEC's Calendar Embeds iframe. Sits between Programme Dates
   and Notice Board on all hub pages.
   ═══════════════════════════════════════════════════════════════ */

.dcci-hub-calendar-embed {
    background: #ffffff;
    border: 1px solid rgba(62, 30, 103, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(62, 30, 103, 0.06);
}

.dcci-tec-embed-iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: none;
    height: calc(100vw + 100px);
}

@media screen and (min-width: 600px) {
    .dcci-tec-embed-iframe { height: 100vw; }
}

@media screen and (min-width: 853px) {
    .dcci-tec-embed-iframe { height: 1065px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   INDIVIDUAL BRONZE PILOT — feedback/support panel
   Replaces the dark marketing hero for individual users.
   Two-column card: copy left, portal hero image right.
   Calm lilac, rounded, warm — not promotional.
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════
   INDIVIDUAL LOWER PANELS — pilot feedback card + quote card
   Container matches the shortcut row above:
   max-width: 1400px (--dcci-max-width), padding: 0 28px
   Cards sit flush within that container — full-width, grid-aligned.
   ═══════════════════════════════════════════════════════════════════════ */

/* Shared outer wrapper — matches .dcci-continue-inner exactly */
.dcci-pilot-panel,
.dcci-ind-quote-panel {
  width: 100%;
  max-width: var(--dcci-max-width, 1400px);
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

/* Gap beneath pilot panel before quote card */
.dcci-pilot-panel {
  padding-bottom: 16px;
}

/* Bottom breathing room before footer */
.dcci-ind-quote-panel {
  padding-bottom: 56px;
}

/* ── Pilot panel card ──────────────────────────────────────────────────
   Two-column: ~62% text left / ~38% image right.
   Image bleeds flush to the card's right edge.
   ─────────────────────────────────────────────────────────────────────*/
.dcci-pilot-panel__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 62fr 38fr;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, #f3edfb 0%, #ede4f7 100%);
  border: 1px solid rgba(155, 89, 182, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(62, 30, 103, 0.07);
}

.dcci-pilot-panel__content {
  padding: 36px 36px 36px 36px;
}

.dcci-pilot-panel__eyebrow {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e91e63;
  margin: 0 0 12px;
  display: block;
}

.dcci-pilot-panel__heading {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #2a1248;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.dcci-pilot-panel__body {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #3e1e67;
  line-height: 1.65;
  margin: 0 0 24px;
  opacity: 0.85;
}

.dcci-pilot-panel__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.dcci-pilot-panel__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 24px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.dcci-pilot-panel__btn--primary {
  background: #e91e63;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.32), 0 1px 4px rgba(0,0,0,0.12);
}

.dcci-pilot-panel__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.40), 0 2px 6px rgba(0,0,0,0.14);
  background: #d01757;
  color: #ffffff;
}

.dcci-pilot-panel__btn--secondary {
  background: transparent;
  color: #3e1e67;
  border: 1.5px solid rgba(62, 30, 103, 0.30);
  padding: 10px 22px;
}

.dcci-pilot-panel__btn--secondary:hover {
  border-color: rgba(62, 30, 103, 0.55);
  transform: translateY(-1px);
  color: #2a1248;
}

/* Image — fills the full right column height.
   Fades upward into card background so the top dissolves softly.
   Rounded right corners match the card. */
.dcci-pilot-panel__image {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.dcci-pilot-panel__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
}

/* ── Quote card — quiet reassurance note ──────────────────────────────*/
.dcci-ind-quote-panel__inner {
  width: 100%;
  padding: 18px 28px 16px;
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(155, 89, 182, 0.11);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(62, 30, 103, 0.04);
  position: relative;
}

.dcci-ind-quote-panel__heading {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b59b6;
  margin: 0 0 10px;
}

.dcci-ind-quote-panel__quote {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
}

.dcci-ind-quote-panel__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  line-height: 1;
  color: rgba(155, 89, 182, 0.15);
  position: absolute;
  top: -4px;
  left: -2px;
  pointer-events: none;
}

.dcci-ind-quote-panel__quote p {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  font-style: italic;
  color: #2a1248;
  line-height: 1.6;
  margin: 0 0 10px;
  padding-left: 20px;
}

.dcci-ind-quote-panel__attr {
  display: block;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  color: #3e1e67;
  opacity: 0.55;
  padding-left: 20px;
  letter-spacing: 0.01em;
}

.dcci-ind-quote-panel__org {
  font-weight: 500;
}

.dcci-ind-quote-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 700;
  color: #9b59b6;
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.70;
  transition: opacity 0.16s ease, color 0.16s ease;
}

.dcci-ind-quote-panel__link:hover {
  opacity: 1;
  color: #7d3bb3;
}

/* Workspace-surface bottom breathing room on individual view */
body.home.logged-in.user-individual .dcci-workspace-surface {
  padding-bottom: 8px;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .dcci-pilot-panel,
  .dcci-ind-quote-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dcci-pilot-panel__inner {
    grid-template-columns: 1fr;
  }
  .dcci-pilot-panel__content {
    padding: 24px 20px;
  }
  .dcci-pilot-panel__image {
    display: none;
  }
  .dcci-ind-quote-panel__inner {
    padding: 16px 18px 14px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   INDIVIDUAL PILOT MODALS — shared styles
   Used by: Share feedback modal + Contact support modal
   Both use .dcci-ind-modal-overlay / .dcci-ind-modal structure.
   ═══════════════════════════════════════════════════════════════════════ */

.dcci-ind-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 5, 45, 0.70);
  z-index: 99999; /* clears WP admin bar (z-index 99999) and sticky footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overscroll-behavior: contain;
}

.dcci-ind-modal-overlay[hidden] { display: none; }

.dcci-ind-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: 0 28px 72px rgba(20, 5, 45, 0.32);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ── Close button ── */
.dcci-ind-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #9b59b6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}
.dcci-ind-modal__close:hover {
  color: #2a1248;
  background: rgba(155, 89, 182, 0.08);
}
.dcci-ind-modal__close:focus-visible {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

/* ── Header ── */
.dcci-ind-modal__eyebrow {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e91e63;
  margin: 0 0 10px;
}

.dcci-ind-modal__heading {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 800;
  color: #2a1248;
  line-height: 1.2;
  margin: 0 0 8px;
}

.dcci-ind-modal__sub {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  color: #3e1e67;
  opacity: 0.70;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ── Fields ── */
.dcci-ind-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dcci-ind-modal__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #2a1248;
  margin-bottom: 14px;
}

.dcci-ind-modal__input,
.dcci-ind-modal__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(62, 30, 103, 0.18);
  border-radius: 10px;
  font-size: 13.5px;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  color: #2a1248;
  background: #faf8ff;
  box-sizing: border-box;
  transition: border-color 0.18s;
  resize: vertical;
}

.dcci-ind-modal__input:focus,
.dcci-ind-modal__textarea:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.10);
}

/* ── Error ── */
.dcci-ind-modal__error {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 12px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid rgba(185, 28, 28, 0.20);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

/* ── Actions row ── */
.dcci-ind-modal__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.dcci-ind-modal__submit {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  background: #e91e63;
  color: #ffffff;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.28);
  transition: filter 0.18s, transform 0.18s;
}
.dcci-ind-modal__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.dcci-ind-modal__submit:disabled {
  opacity: 0.60;
  cursor: not-allowed;
  transform: none;
}
.dcci-ind-modal__submit:focus-visible {
  outline: 2px solid #e91e63;
  outline-offset: 3px;
}

.dcci-ind-modal__cancel {
  background: none;
  border: none;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  color: #3e1e67;
  opacity: 0.55;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.15s;
}
.dcci-ind-modal__cancel:hover { opacity: 1; }

/* ── Privacy note ── */
.dcci-ind-modal__privacy {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 11px;
  color: #3e1e67;
  opacity: 0.45;
  margin: 0;
  line-height: 1.5;
}

/* ── Success state ── */
.dcci-ind-modal__success {
  text-align: center;
  padding: 32px 0 16px;
}

.dcci-ind-modal__success-heading {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #2a1248;
  margin: 16px 0 10px;
}

.dcci-ind-modal__success-body {
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #3e1e67;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0 0 24px;
}

.dcci-ind-modal__success-close {
  display: inline-flex;
  padding: 10px 24px;
  background: rgba(155, 89, 182, 0.10);
  color: #3e1e67;
  font-family: var(--dcc-font, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(155, 89, 182, 0.20);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s;
}
.dcci-ind-modal__success-close:hover {
  background: rgba(155, 89, 182, 0.18);
}

/* ── Mobile ── */
@media (max-width: 540px) {
  .dcci-ind-modal {
    padding: 28px 22px;
    border-radius: 16px;
    max-height: calc(100dvh - 40px);
  }
  .dcci-ind-modal__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}