
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

#mocc-adhd *, #mocc-adhd *::before, #mocc-adhd *::after { box-sizing: border-box; margin: 0; padding: 0; }

#mocc-adhd {
  --forest: #1A7CB8;
  --sage: #3BAEEF;
  --sage-light: #79CAEF;
  --mint: #E6F5FC;
  --amber: #E0874A;
  --amber-light: #F9E5D6;
  --cream: #F4F9FD;
  --text-dark: #0F2A3D;
  --text-mid: #2A5470;
  --text-light: #5C87A3;
  --white: #FFFFFF;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── HERO ── */
#mocc-adhd .mocc-hero {
  background: var(--forest);
  color: var(--white);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#mocc-adhd .mocc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(59,174,239,0.3) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59,174,239,0.2) 0%, transparent 60%);
}
#mocc-adhd .mocc-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

#mocc-adhd .mocc-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
}

#mocc-adhd .mocc-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--white);
}
#mocc-adhd .mocc-hero h1 span { color: #A8DAEF; }

#mocc-adhd .mocc-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

#mocc-adhd .mocc-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

#mocc-adhd .mocc-btn-primary {
  background: var(--amber);
  color: var(--white) !important;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none !important;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
#mocc-adhd .mocc-btn-primary:hover { background: #c9733a; }

#mocc-adhd .mocc-btn-ghost {
  background: transparent;
  color: var(--white) !important;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,0.45);
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
#mocc-adhd .mocc-btn-ghost:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }

/* ── STATS BAR ── */
#mocc-adhd .mocc-stats-bar { background: var(--amber); padding: 22px 24px; }
#mocc-adhd .mocc-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
#mocc-adhd .mocc-stat { text-align: center; color: var(--white); }
#mocc-adhd .mocc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--white);
}
#mocc-adhd .mocc-stat-lbl {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 3px;
  display: block;
  color: var(--white);
}

/* ── SECTIONS SHARED ── */
#mocc-adhd .mocc-section { padding: 72px 24px; }
#mocc-adhd .mocc-section-white { background: var(--white); }
#mocc-adhd .mocc-section-cream { background: var(--cream); }
#mocc-adhd .mocc-section-dark { background: var(--forest); }
#mocc-adhd .mocc-inner { max-width: 900px; margin: 0 auto; }

#mocc-adhd .mocc-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}
#mocc-adhd .mocc-section-dark .mocc-tag { color: var(--sage-light); }

#mocc-adhd .mocc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
#mocc-adhd .mocc-section-dark .mocc-title { color: var(--white); }

#mocc-adhd .mocc-lead {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 48px;
}
#mocc-adhd .mocc-section-dark .mocc-lead { color: rgba(255,255,255,0.78); max-width: 100%; }

/* ── OVERVIEW ── */
#mocc-adhd .mocc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 640px) {
  #mocc-adhd .mocc-two-col { grid-template-columns: 1fr; }
}

#mocc-adhd .mocc-overview-text p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}
#mocc-adhd .mocc-overview-text strong { color: var(--text-dark); font-weight: 700; }

#mocc-adhd .mocc-card {
  background: var(--mint);
  border-radius: 12px;
  padding: 32px 28px;
}
#mocc-adhd .mocc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
}

#mocc-adhd .mocc-stage { margin-bottom: 20px; }
#mocc-adhd .mocc-stage-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
  display: block;
}
#mocc-adhd .mocc-stage-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 3px;
  display: block;
}
#mocc-adhd .mocc-stage-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── SKILLS GRID ── */
#mocc-adhd .mocc-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
#mocc-adhd .mocc-skill-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  border-left: 4px solid var(--sage);
}
#mocc-adhd .mocc-skill-icon {
  width: 40px;
  height: 40px;
  background: var(--mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
#mocc-adhd .mocc-skill-icon svg { width: 22px; height: 22px; fill: var(--forest); }
#mocc-adhd .mocc-skill-card h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
#mocc-adhd .mocc-skill-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── WHO GRID ── */
#mocc-adhd .mocc-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 600px) { #mocc-adhd .mocc-who-grid { grid-template-columns: 1fr; } }

#mocc-adhd .mocc-who-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
#mocc-adhd .mocc-who-tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
#mocc-adhd .mocc-who-tick svg { width: 12px; height: 12px; fill: var(--white); }
#mocc-adhd .mocc-who-text { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.55; }

/* ── PRACTICAL ── */
#mocc-adhd .mocc-practical-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 640px) { #mocc-adhd .mocc-practical-inner { grid-template-columns: 1fr; } }

#mocc-adhd .mocc-list { list-style: none; margin-top: 28px; }
#mocc-adhd .mocc-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #D0E9F5;
  font-size: 15px;
  color: var(--text-mid);
}
#mocc-adhd .mocc-list li:last-child { border-bottom: none; }
#mocc-adhd .mocc-list li strong { color: var(--text-dark); min-width: 120px; flex-shrink: 0; }

#mocc-adhd .mocc-mbs-card {
  background: var(--amber-light);
  border-radius: 12px;
  padding: 32px 28px;
}
#mocc-adhd .mocc-mbs-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}
#mocc-adhd .mocc-mbs-card p { font-size: 15px; color: var(--text-mid); margin-bottom: 12px; line-height: 1.7; }
#mocc-adhd .mocc-mbs-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  margin-top: 6px;
}

/* ── REGISTER ── */
#mocc-adhd .mocc-register {
  background: var(--mint);
  padding: 80px 24px;
  text-align: center;
}
#mocc-adhd .mocc-register-inner { max-width: 560px; margin: 0 auto; }
#mocc-adhd .mocc-register-inner .mocc-lead { margin: 0 auto 36px; font-size: 16px; }

#mocc-adhd .mocc-form-row { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
#mocc-adhd .mocc-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 7px;
  border: 1.5px solid #B8D8EE;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
}
#mocc-adhd .mocc-input:focus { border-color: var(--sage); }
#mocc-adhd .mocc-input::placeholder { color: #8FBDD6; }
#mocc-adhd .mocc-disclaimer { font-size: 12px; color: var(--text-light); margin-top: 14px; line-height: 1.6; }

/* ── ABOUT ── */
#mocc-adhd .mocc-about { background: var(--cream); padding: 60px 24px; }
#mocc-adhd .mocc-about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
#mocc-adhd .mocc-logo-circle {
  width: 80px;
  height: 80px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  flex-shrink: 0;
}
#mocc-adhd .mocc-about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
#mocc-adhd .mocc-about-text p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
#mocc-adhd .mocc-contact-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 20px; }
#mocc-adhd .mocc-contact-row a { font-size: 14px; color: var(--sage); text-decoration: none; font-weight: 700; }
#mocc-adhd .mocc-contact-row a:hover { color: var(--forest); }

/* ── FOOTER ── */
#mocc-adhd .mocc-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 24px;
  font-size: 13px;
  line-height: 1.7;
}
#mocc-adhd .mocc-footer a { color: rgba(255,255,255,0.75); }

/* ── ANIMATION ── */
@keyframes mocc-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
#mocc-adhd .mocc-hero-inner > * { animation: mocc-fadeUp 0.7s ease both; }
#mocc-adhd .mocc-hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
#mocc-adhd .mocc-hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
#mocc-adhd .mocc-hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
#mocc-adhd .mocc-hero-inner > *:nth-child(4) { animation-delay: 0.55s; }

