/* =============================================
   BLOOMING BUDZZ — PROGRAM PAGES STYLESHEET
   ============================================= */

/* ── LOADER (sweeper) ── */
.sweeper {
  display: inline;
  font-family: 'Nunito', sans-serif;
  font-size: inherit;
  font-weight: 900;
  color: #0000;
  background: linear-gradient(90deg, #0000 33%, var(--clr) 0 67%, #0000 0) 100%/300% 100% no-repeat text;
  -webkit-background-clip: text;
  background-clip: text;
}
.sweeper-learn   { --clr: #ea479b; -webkit-text-stroke: 1px #ea479b; animation: sweep 1.8s steps(20) infinite; animation-delay: 0s; }
.sweeper-nurture { --clr: #b11ca2; -webkit-text-stroke: 1px #b11ca2; animation: sweep 1.8s steps(20) infinite; animation-delay: 1.5s; }
.sweeper-grow    { --clr: #3678bd; -webkit-text-stroke: 1px #3678bd; animation: sweep 1.8s steps(20) infinite; animation-delay: 3s; }
@keyframes sweep { 0% { background-position: 100% } 100% { background-position: 0% } }

.loader-sweeper-wrap {
  white-space: normal;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 480px) { .loader-sweeper-wrap { white-space: nowrap; } }

/* ── BREADCRUMB ── */
.prog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--body);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.prog-breadcrumb a { color: var(--pink); font-weight: 600; }
.prog-breadcrumb a:hover { text-decoration: underline; }
.prog-breadcrumb .sep { opacity: 0.5; }

/* ── PROGRAM HERO ── */
.prog-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fdf4fb 0%, #f5eeff 55%, #e8f0ff 100%);
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.prog-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(177,28,162,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.prog-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(54,120,189,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.prog-hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.prog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(177,28,162,.08);
  color: var(--pink);
  border: 1px solid rgba(177,28,162,.18);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.prog-hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}
.prog-hero-heading .accent { color: var(--coral); }
.prog-hero-heading .accent-blue { color: var(--blue); }

.prog-hero-desc {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 500px;
}

.prog-quick-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.prog-stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(177,28,162,.08);
  border: 1px solid rgba(177,28,162,.1);
  text-align: center;
  min-width: 110px;
}
.prog-stat-box .stat-icon { font-size: 1.1rem; margin-bottom: 4px; }
.prog-stat-box .stat-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
.prog-stat-box .stat-key {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}

.prog-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO IMAGE SIDE ── */
.prog-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.prog-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.prog-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(177,28,162,.15), rgba(54,120,189,.1));
  z-index: 0;
}
.prog-hero-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(177,28,162,.2);
}

.prog-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.prog-img-badge .bi-emoji { font-size: 1.8rem; }
.prog-img-badge strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--dark);
}
.prog-img-badge small { display: block; font-size: .76rem; color: var(--body); }

.prog-deco {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.prog-deco-1 {
  width: 110px; height: 110px;
  bottom: -24px; left: -24px;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  opacity: .1;
}
.prog-deco-2 {
  width: 70px; height: 70px;
  top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--blue), #6fa8dc);
  opacity: .12;
}

/* ── SHARED SECTION ── */
.prog-section { padding: 80px 0; }
.prog-section-alt { background: var(--light-bg); }

.prog-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.prog-section-head { text-align: center; margin-bottom: 52px; }
.prog-section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.prog-section-head p {
  color: var(--body);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── OBJECTIVES SECTION ── */
.prog-obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.prog-obj-list { display: flex; flex-direction: column; gap: 16px; }

.prog-obj-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 14px rgba(177,28,162,.06);
  border: 1px solid rgba(177,28,162,.08);
  transition: transform .2s, box-shadow .2s;
}
.prog-obj-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(177,28,162,.12); }

.prog-obj-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(177,28,162,.1), rgba(234,71,155,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.prog-obj-text h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.prog-obj-text p { font-size: .875rem; color: var(--body); line-height: 1.6; }

.prog-obj-img-col {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(177,28,162,.14);
}
.prog-obj-img-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ── DAY STRUCTURE TIMELINE ── */
.prog-timeline {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.prog-timeline::before {
  content: '';
  position: absolute;
  left: 31px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--pink), var(--blue));
  border-radius: 2px;
}

.prog-tl-item {
  display: flex;
  gap: 22px;
  margin-bottom: 22px;
  position: relative;
}

.prog-tl-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(177,28,162,.25);
  position: relative;
  z-index: 1;
}

.prog-tl-content {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 2px 14px rgba(177,28,162,.06);
  border: 1px solid rgba(177,28,162,.08);
  margin-top: 8px;
}
.prog-tl-time {
  font-size: .74rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.prog-tl-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.prog-tl-content p { font-size: .875rem; color: var(--body); line-height: 1.6; }

/* ── CTA SECTION ── */
.prog-cta-section {
  background: linear-gradient(135deg, #b11ca2 0%, #9a159a 50%, #3678bd 100%);
  padding: 84px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.prog-cta-section::before {
  content: ''; position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.prog-cta-section::after {
  content: ''; position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.prog-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.prog-cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.prog-cta-inner p { font-size: 1.05rem; opacity: .9; margin-bottom: 34px; line-height: 1.7; }
.prog-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--pink);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, transform .2s;
}
.btn-white-outline:hover { border-color: #fff; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prog-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 44px;
  }
  .prog-hero-left { display: flex; flex-direction: column; align-items: center; }
  .prog-hero-desc { max-width: 100%; }
  .prog-hero-right { display: none; }

  .prog-obj-grid { grid-template-columns: 1fr; }
  .prog-obj-img-col { display: none; }
}

@media (max-width: 860px) {
  .prog-hero { min-height: auto; padding: 100px 0 64px; }
  .prog-section { padding: 60px 0; }
  .prog-quick-stats { justify-content: center; }
  .prog-timeline::before { left: 23px; }
  .prog-tl-dot { width: 48px; height: 48px; font-size: 1rem; }
}

@media (max-width: 600px) {
  .prog-hero-ctas { flex-direction: column; width: 100%; }
  .prog-hero-ctas a { width: 100%; justify-content: center; }
  .prog-stat-box { flex: 1; min-width: 90px; }
  .prog-cta-btns { flex-direction: column; align-items: center; }
  .prog-cta-btns a { width: 100%; max-width: 300px; justify-content: center; }
}

/* ==============================================
   DAYCARE PAGE — SPECIFIC STYLES
   ============================================== */

/* ── KEYWORD HIGHLIGHT ── */
.dc-kw { color: var(--pink); font-weight: 700; }

/* ── USP / ABOUT SECTION ── */
.dc-usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.dc-usp-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.dc-usp-text p { color: var(--body); font-size: .96rem; line-height: 1.78; margin-bottom: 14px; }
.dc-usp-highlights { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.dc-usp-hl-item {
  flex: 1; min-width: 90px;
  background: linear-gradient(135deg, rgba(177,28,162,.06), rgba(234,71,155,.06));
  border: 1.5px solid rgba(177,28,162,.12);
  border-radius: 16px; padding: 14px 12px; text-align: center;
}
.dc-usp-hl-num { display: block; font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--pink); line-height: 1; margin-bottom: 6px; }
.dc-usp-hl-label { font-size: .7rem; font-weight: 700; color: var(--body); text-transform: uppercase; letter-spacing: .05em; }
.dc-usp-features { display: flex; flex-direction: column; gap: 16px; }
.dc-usp-feat {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border-radius: 16px; padding: 18px 20px;
  border: 1.5px solid color-mix(in srgb, var(--dc-f, #b11ca2) 14%, transparent);
  box-shadow: 0 3px 14px rgba(0,0,0,.05), inset 0 3px 0 var(--dc-f, #b11ca2);
  transition: transform .22s, box-shadow .22s;
}
.dc-usp-feat:hover { transform: translateY(-3px); box-shadow: 0 10px 28px color-mix(in srgb, var(--dc-f, #b11ca2) 14%, transparent), inset 0 3px 0 var(--dc-f, #b11ca2); }
.dc-usp-feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: color-mix(in srgb, var(--dc-f, #b11ca2) 10%, white);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.dc-usp-feat h4 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dc-usp-feat p { font-size: .82rem; color: var(--body); line-height: 1.62; margin: 0; }

/* ── PHILOSOPHY ── */
.dc-phil-list { display: flex; flex-direction: column; gap: 18px; }
.dc-phil-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border-radius: 18px; padding: 22px 24px;
  border: 1.5px solid color-mix(in srgb, var(--dc-p, #b11ca2) 13%, transparent);
  box-shadow: 0 3px 16px rgba(0,0,0,.05), inset 0 4px 0 var(--dc-p, #b11ca2);
  transition: transform .22s;
}
.dc-phil-item:hover { transform: translateX(6px); }
.dc-phil-num { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800; color: color-mix(in srgb, var(--dc-p, #b11ca2) 18%, transparent); line-height: 1; flex-shrink: 0; min-width: 48px; }
.dc-phil-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.dc-phil-content h4 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.dc-phil-content p { font-size: .88rem; color: var(--body); line-height: 1.68; margin: 0; }

/* ── PARTICIPATE GRID ── */
.dc-participate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dc-participate-card {
  background: #fff; border-radius: 18px; padding: 22px 20px;
  border: 1.5px solid color-mix(in srgb, var(--dc-c, #b11ca2) 14%, transparent);
  box-shadow: 0 3px 14px rgba(0,0,0,.05), inset 0 4px 0 var(--dc-c, #b11ca2);
  transition: transform .22s, box-shadow .22s;
}
.dc-participate-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px color-mix(in srgb, var(--dc-c, #b11ca2) 16%, transparent), inset 0 4px 0 var(--dc-c, #b11ca2); }
.dc-part-icon { font-size: 1.7rem; margin-bottom: 12px; }
.dc-participate-card h4 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.dc-participate-card p { font-size: .8rem; color: var(--body); line-height: 1.62; margin: 0; }

/* ── PHONICS / LANGUAGE PROGRAMS ── */
.dc-phonics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dc-phonics-card {
  background: #fff; border-radius: 20px; padding: 30px 26px;
  border: 1.5px solid color-mix(in srgb, var(--dc-ph, #ea479b) 18%, transparent);
  box-shadow: 0 4px 20px rgba(0,0,0,.06), inset 0 4px 0 var(--dc-ph, #ea479b);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .22s, box-shadow .22s;
}
.dc-phonics-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px color-mix(in srgb, var(--dc-ph, #ea479b) 18%, transparent), inset 0 4px 0 var(--dc-ph, #ea479b); }
.dc-phonics-level-badge { display: inline-flex; align-items: center; justify-content: center; padding: 6px 18px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 800; color: #fff; width: fit-content; letter-spacing: .04em; }
.dc-phonics-age { font-size: .75rem; font-weight: 700; color: var(--dc-ph, #ea479b); text-transform: uppercase; letter-spacing: .06em; }
.dc-phonics-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin: 0; }
.dc-phonics-desc { font-size: .86rem; color: var(--body); line-height: 1.68; margin: 0; }
.dc-phonics-obj { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(0,0,0,.06); padding-top: 14px; }
.dc-phonics-obj li { font-size: .82rem; color: #555; line-height: 1.55; padding-left: 20px; position: relative; }
.dc-phonics-obj li::before { content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--dc-ph, #ea479b); opacity: .65; }

/* ── ACTIVITY CENTRE ── */
.dc-act-pills-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px; }
.dc-act-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 50px;
  background: color-mix(in srgb, var(--dc-a, #b11ca2) 8%, white);
  border: 1.5px solid color-mix(in srgb, var(--dc-a, #b11ca2) 22%, transparent);
  color: var(--dc-a, #b11ca2);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .88rem;
  transition: background .2s, transform .15s; cursor: default;
}
.dc-act-pill:hover { background: color-mix(in srgb, var(--dc-a, #b11ca2) 16%, white); transform: translateY(-2px); }
.dc-act-note { text-align: center; font-size: .9rem; color: var(--body); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.dc-act-link { color: var(--pink); font-weight: 700; }
.dc-act-link:hover { text-decoration: underline; }

/* ── SAFETY GRID ── */
.dc-safety-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.dc-safety-card {
  background: #fff; border-radius: 18px; padding: 24px 20px; text-align: center;
  border: 1.5px solid rgba(30,158,90,.14);
  box-shadow: 0 3px 14px rgba(0,0,0,.05), inset 0 4px 0 #1e9e5a;
  transition: transform .22s;
}
.dc-safety-card:hover { transform: translateY(-4px); }
.dc-safety-icon { font-size: 2rem; margin-bottom: 12px; }
.dc-safety-card h4 { font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.dc-safety-card p { font-size: .78rem; color: var(--body); line-height: 1.62; margin: 0; }

/* ── WORKING PARENTS / COMMITMENT ── */
.dc-commit-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.dc-commit-text h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.dc-commit-text > p { color: var(--body); font-size: .96rem; line-height: 1.78; margin-bottom: 28px; }
.dc-commit-list { display: flex; flex-direction: column; gap: 18px; }
.dc-commit-item { display: flex; align-items: flex-start; gap: 16px; }
.dc-commit-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(177,28,162,.1), rgba(234,71,155,.1)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.dc-commit-item h5 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dc-commit-item p { font-size: .84rem; color: var(--body); line-height: 1.65; margin: 0; }
.dc-commit-callout { position: sticky; top: 100px; }
.dc-callout-inner {
  background: linear-gradient(135deg, #b11ca2 0%, #9a159a 50%, #3678bd 100%);
  border-radius: 24px; padding: 36px 30px; color: #fff; text-align: center;
  box-shadow: 0 20px 60px rgba(177,28,162,.3);
}
.dc-callout-emoji { font-size: 2.8rem; display: block; margin-bottom: 16px; }
.dc-callout-inner h3 { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.dc-callout-inner > p { font-size: .9rem; line-height: 1.72; opacity: .92; margin-bottom: 24px; }
.dc-callout-stats { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.dc-callout-stats > div { text-align: center; }
.dc-callout-stats strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.dc-callout-stats span { font-size: .72rem; opacity: .8; text-transform: uppercase; letter-spacing: .05em; }

/* ── DAYCARE RESPONSIVE ── */
@media (max-width: 1200px) {
  .dc-safety-grid { grid-template-columns: repeat(3, 1fr); }
  .dc-commit-grid { grid-template-columns: 1fr 380px; gap: 40px; }
}
@media (max-width: 1024px) {
  .dc-usp-grid { grid-template-columns: 1fr; gap: 40px; }
  .dc-participate-grid { grid-template-columns: repeat(2, 1fr); }
  .dc-commit-grid { grid-template-columns: 1fr; }
  .dc-commit-callout { position: static; }
}
@media (max-width: 860px) {
  .dc-phonics-grid { grid-template-columns: 1fr; }
  .dc-safety-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dc-participate-grid { grid-template-columns: 1fr; }
  .dc-safety-grid { grid-template-columns: 1fr; }
  .dc-phil-item { flex-direction: column; gap: 10px; }
  .dc-phil-num { font-size: 1.6rem; min-width: auto; }
  .dc-act-pill { font-size: .8rem; padding: 8px 14px; }
  .dc-usp-highlights { gap: 10px; }
  .dc-callout-stats { gap: 14px; }
}
