/* ============================================
   Małe Orły - Akademia Przedszkolaka
   ============================================ */

:root {
  --mo-blue:    #3EB9E5;
  --mo-yellow:  #F8D03C;
  --mo-magenta: #C83090;
  --mo-green:   #8DC63F;
  --mo-orange:  #F39325;
  --mo-ink:     #2A3550;
  --mo-ink2:    #5A6380;
  --mo-cream:   #FFFBF2;
  --mo-cream2:  #FFF4DF;
  --mo-pinkBg:  #FFE9F2;
  --mo-blueBg:  #DFF4FD;
  --mo-greenBg: #EEF8DC;
  --mo-border:  rgba(42, 53, 80, 0.08);
  --mo-shadow:  0 10px 40px -20px rgba(42, 53, 80, 0.25);
  --mo-shadow-lg: 0 24px 60px -24px rgba(42, 53, 80, 0.35);
  --mo-font-display: 'Baloo 2', 'Quicksand', system-ui, sans-serif;
  --mo-font-body: 'Quicksand', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--mo-font-body);
  color: var(--mo-ink);
  background: var(--mo-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
/* Force consistent stroke width across Fredoka by disallowing fallback synthesis */
h1, h2, h3, h4, h5, h6, .mo-btn, .mo-hero-sticker, .mo-nav-link, .mo-chip, .mo-hero-kicker {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}

.mo-container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ============ NAV ============ */
.mo-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 8px 0;
  transition: padding .25s, background .25s, box-shadow .25s;
}
.mo-nav.scrolled { padding: 4px 0; }
.mo-nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px 0 clamp(12px, 2vw, 20px);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--mo-shadow);
  border: 1px solid var(--mo-border);
}
.mo-logo-btn { padding: 0; display:flex; align-items:center; }
.mo-logo-btn img { height: 96px; width: auto; display: block; transition: height .25s; }
.mo-nav.scrolled .mo-logo-btn img { height: 72px; }
.mo-links { display: flex; gap: 6px; align-items: center; }
.mo-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--mo-font-display);
  color: var(--mo-ink);
  transition: all .2s;
  position: relative;
  white-space: nowrap;
}
.mo-link:hover { background: color-mix(in oklch, var(--link-color) 15%, white); color: var(--link-color); }
.mo-link.active { color: var(--link-color); }
.mo-link.active::after {
  content: ""; position: absolute; left: 20%; right: 20%; bottom: 4px;
  height: 3px; border-radius: 2px; background: var(--link-color);
}
.mo-cta-small {
  margin-left: 8px;
  padding: 11px 20px;
  background: var(--mo-magenta);
  color: #fff;
  border-radius: 999px;
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 16px -6px rgba(200, 48, 144, .5);
}
.mo-cta-small:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 0 10px 24px -6px rgba(200, 48, 144, .6); }
.mo-burger { display: none; width: 40px; height: 40px; flex-direction:column; gap:5px; justify-content:center; align-items:center; border-radius: 50%; background: var(--mo-cream2); }
.mo-burger span { display:block; width:20px; height: 2px; background: var(--mo-ink); border-radius: 2px; }

@media (max-width: 980px) {
  .mo-nav-inner { border-radius: 24px; padding: 10px 16px; }
  .mo-links { display: none; position: absolute; top: 100%; left: 12px; right: 12px; margin-top: 8px; background: #fff; border-radius: 24px; padding: 16px; flex-direction: column; gap: 4px; box-shadow: var(--mo-shadow-lg); align-items: stretch; }
  .mo-links.open { display: flex; }
  .mo-link { text-align: left; }
  .mo-link.active { background: color-mix(in oklch, var(--link-color) 14%, white); color: var(--link-color); }
  .mo-link.active::after { display: none; }
  .mo-burger { display: flex; }
  .mo-logo-btn img { height: 72px; }
}

/* ============ BUTTONS ============ */
.mo-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.mo-btn-big { padding: 18px 36px; font-size: 18px; }
.mo-btn-primary { background: var(--mo-magenta); color: #fff; box-shadow: 0 10px 24px -10px rgba(200, 48, 144, .6); }
.mo-btn-primary:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 16px 32px -10px rgba(200, 48, 144, .7); }
.mo-btn-ghost { background: transparent; color: var(--mo-ink); border: 2px solid var(--mo-ink); }
.mo-btn-ghost:hover { background: var(--mo-ink); color: #fff; transform: translateY(-2px); }
.mo-btn-white { background: #fff; color: var(--mo-ink); }
.mo-btn-white:hover { transform: translateY(-2px); }

/* ============ HERO ============ */
.mo-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--mo-blueBg) 0%, #C7EAF9 100%);
  position: relative;
  overflow: hidden;
}
.mo-hero-blue { background: linear-gradient(180deg, var(--mo-blueBg) 0%, #C7EAF9 100%); }
.mo-hero-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
.mo-hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--mo-ink);
  box-shadow: var(--mo-shadow);
  margin-bottom: 24px;
}
.mo-hero-kicker-lg {
  padding: 14px 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  gap: 12px;
  box-shadow: 0 14px 36px -16px rgba(42,53,80,0.35);
}
.mo-hero-kicker-lg .mo-dot { width: 12px; height: 12px; }
.mo-dot { width: 10px; height: 10px; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }

.mo-hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.mo-hero-title em { font-style: normal; }
.mo-hero-underline {
  position: relative; display: inline-block;
  background-image: linear-gradient(120deg, var(--mo-yellow) 0%, var(--mo-yellow) 100%);
  background-position: 0 90%;
  background-size: 100% 30%;
  background-repeat: no-repeat;
  padding: 0 6px;
}
.mo-hero-lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--mo-ink2); max-width: 540px; margin-bottom: 36px; }
.mo-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.mo-hero-meta { display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.mo-hero-meta > div { display: flex; flex-direction: column; }
.mo-hero-meta strong { font-family: var(--mo-font-display); font-size: 28px; color: var(--mo-magenta); }
.mo-hero-meta span { font-size: 14px; color: var(--mo-ink2); }

.mo-hero-art { position: relative; min-height: 520px; }
.mo-hero-photo {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--mo-shadow-lg);
}
.mo-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.mo-hero-photo-1 {
  top: 20px; right: 40px;
  width: 62%; aspect-ratio: 3/4;
  transform: rotate(3deg);
  border: 6px solid #fff;
  z-index: 2;
  animation: float1 8s ease-in-out infinite;
}
.mo-hero-photo-2 {
  bottom: 20px; left: 0;
  width: 54%; aspect-ratio: 4/3;
  transform: rotate(-4deg);
  border: 6px solid #fff;
  z-index: 3;
  animation: float2 9s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-10px); } }
@keyframes float2 { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-8px); } }

.mo-hero-sticker {
  position: absolute;
  background: var(--mo-yellow);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--mo-ink);
  box-shadow: var(--mo-shadow);
  display: flex; align-items: center; gap: 8px;
  z-index: 4;
}
.mo-hero-sticker-1 { top: 10px; left: 10px; transform: rotate(-6deg); }
.mo-hero-sticker-2 { bottom: 60px; right: 20px; transform: rotate(4deg); }
.mo-hero-arc { position: absolute; top: 50%; left: 50%; width: 80%; transform: translate(-50%, -50%); z-index: 1; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.mo-hero-confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.mo-confetti {
  position: absolute;
  background: var(--c);
  animation: confFloat 6s ease-in-out infinite;
}
.mo-confetti-dot  { width: 12px; height: 12px; border-radius: 50%; }
.mo-confetti-star { width: 12px; height: 12px; border-radius: 0; transform: rotate(45deg); }
.mo-confetti-ring { width: 16px; height: 16px; border-radius: 50%; background: transparent; border: 3px solid var(--c); }
.mo-confetti-bar  { width: 6px; height: 20px; border-radius: 3px; }
@keyframes confFloat {
  0%, 100% { transform: translateY(0) rotate(0); opacity: .7; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.mo-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.mo-hero-wave svg { width: 100%; height: 60px; display: block; }

@media (max-width: 900px) {
  .mo-hero { padding: 130px 0 40px; }
  .mo-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .mo-hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .mo-hero-copy .mo-hero-lead { margin-left: auto; margin-right: auto; }
  .mo-hero-cta { justify-content: center; }
  .mo-hero-meta { justify-content: center; }
  .mo-hero-art { min-height: 420px; }
}

/* ============ HERO CLOUD (logo bubble) ============ */
.mo-hero-cloud {
  position: absolute;
  top: -90px; right: -10px;
  width: clamp(240px, 34vw, 360px);
  aspect-ratio: 420 / 280;
  z-index: 5;
  filter: drop-shadow(0 20px 40px rgba(42,53,80,0.18));
  animation: cloudFloat 7s ease-in-out infinite;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.mo-hero-cloud-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.mo-hero-cloud-logo {
  position: relative;
  z-index: 1;
  width: 62%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(2%);
}
.mo-hero-cloud-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
@keyframes cloudFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
@media (max-width: 900px) {
  .mo-hero-cloud {
    position: relative;
    top: auto; right: auto;
    width: clamp(200px, 60vw, 300px);
    margin: -20px auto 10px;
  }
}

/* ============ QUICK FACTS ============ */
.mo-quickfacts { padding: 80px 0; background: var(--mo-cream2); }
.mo-facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.mo-fact-card {
  background: #fff;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--mo-shadow);
  transition: transform .3s, box-shadow .3s;
  border-top: 4px solid var(--accent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mo-fact-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--mo-shadow-lg); }
.mo-fact-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mo-cream2);
}
.mo-fact-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.mo-fact-card:hover .mo-fact-img img { transform: scale(1.08); }
.mo-fact-card h3 { font-size: 20px; margin: 22px 24px 8px; color: var(--accent); }
.mo-fact-card p  { font-size: 15px; color: var(--mo-ink2); margin: 0 24px 28px; }

/* ============ PILLARS (Nasze filary rozwoju) ============ */
.mo-pillars {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, var(--mo-cream) 0%, #FFF9EA 100%);
  overflow: hidden;
}
.mo-pillars .mo-section-head { max-width: 780px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }
.mo-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.mo-pillars-grid > .mo-reveal { display: flex; }
.mo-pillar-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--mo-shadow);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
  border-top: 6px solid var(--accent);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mo-pillar-card h3 { text-wrap: balance; }
.mo-pillar-card::after {
  content: "";
  position: absolute; inset: auto -40% -60% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 18%, #fff);
  z-index: 0;
  transition: transform .4s ease;
}
.mo-pillar-card:hover { transform: translateY(-8px); box-shadow: var(--mo-shadow-lg); }
.mo-pillar-card:hover::after { transform: scale(1.15); }
.mo-pillar-card > * { position: relative; z-index: 1; }
.mo-pillar-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  box-shadow: 0 14px 30px -12px color-mix(in oklab, var(--accent) 60%, transparent);
  transition: transform .3s;
}
.mo-pillar-card:hover .mo-pillar-icon { transform: rotate(8deg) scale(1.06); }
.mo-pillar-card h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  margin-bottom: 12px;
  color: var(--accent);
}
.mo-pillar-card p {
  font-size: 16px;
  color: var(--mo-ink2);
  margin: 0;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.mo-pillar-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--mo-font-display);
  font-weight: 700;
  font-size: 28px;
  opacity: .25;
  letter-spacing: -0.02em;
}
@media (max-width: 900px) {
  .mo-pillars { padding: 70px 0 80px; }
  .mo-pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .mo-pillar-card { padding: 32px 24px 28px; }
}

/* ============ SECTION HEAD ============ */
.mo-section-head { margin-bottom: 48px; }
.mo-section-head.align-center { text-align: center; }
.mo-section-head.align-left { text-align: left; }
.mo-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.mo-h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0 auto;
}
.mo-section-head.align-left .mo-h2 { margin-left: 0; }
.mo-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--mo-ink2);
  max-width: 680px;
  margin: 16px auto 0;
}
.mo-section-head.align-left .mo-sub { margin-left: 0; }

/* ============ OFFER ============ */
.mo-offer { padding: 100px 0; }
.mo-offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.mo-offer-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--mo-shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.mo-offer-card:hover { transform: translateY(-8px); box-shadow: var(--mo-shadow-lg); }
.mo-offer-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.mo-offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mo-offer-card:hover .mo-offer-img img { transform: scale(1.08); }
.mo-offer-badge {
  position: absolute; top: 16px; left: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mo-font-display); font-weight: 600; color: #fff;
}
.mo-offer-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.mo-offer-body h3 { font-size: 24px; margin-bottom: 12px; }
.mo-offer-body p { color: var(--mo-ink2); margin: 0 0 20px; flex: 1; }
.mo-link-arrow { font-family: var(--mo-font-display); font-weight: 600; font-size: 15px; display: inline-flex; gap: 6px; align-items: center; padding: 0; transition: gap .2s; }
.mo-link-arrow:hover { gap: 12px; }

/* ============ WHY US ============ */
.mo-why { padding: 100px 0; background: var(--mo-blueBg); position: relative; }
.mo-why-header {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 56px;
}
.mo-why-img { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--mo-shadow-lg); transform: rotate(-2deg); }
.mo-why-img img { aspect-ratio: 4/3; object-fit: cover; }
.mo-why-sticker {
  position: absolute; top: -20px; right: -20px;
  background: var(--mo-green);
  padding: 14px 20px;
  border-radius: 20px;
  color: #fff;
  transform: rotate(6deg);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mo-font-display);
}
.mo-why-sticker strong { font-size: 28px; }
.mo-why-sticker span { font-size: 12px; line-height: 1.3; }
.mo-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.mo-why-card {
  background: #fff; border-radius: 24px; padding: 28px;
  box-shadow: var(--mo-shadow);
  transition: transform .3s;
}
.mo-why-card:hover { transform: translateY(-4px); }
.mo-why-num {
  font-family: var(--mo-font-display);
  font-size: 42px; font-weight: 600;
  line-height: 1; margin-bottom: 12px;
}
.mo-why-card h3 { font-size: 20px; margin-bottom: 8px; }
.mo-why-card p { color: var(--mo-ink2); margin: 0; font-size: 15px; }

@media (max-width: 900px) { .mo-why-header { grid-template-columns: 1fr; } }

/* ============ DAY (TIMELINE) ============ */
/* ============ DAY (CARDS GRID) ============ */
.mo-day { padding: 100px 0; background: linear-gradient(180deg, var(--mo-cream) 0%, var(--mo-cream2) 100%); position: relative; }
.mo-day::before {
  content: ""; position: absolute; top: 60px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(243,147,37,0.12), transparent 70%);
  pointer-events: none;
}
.mo-day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.mo-day-tile {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px 22px 22px;
  box-shadow: var(--mo-shadow);
  border: 2px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
  isolation: isolate;
}
.mo-day-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--tile-c);
  z-index: 1;
}
.mo-day-tile::after {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--tile-c);
  opacity: 0.08;
  z-index: 0;
}
.mo-day-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--mo-shadow-lg);
  border-color: color-mix(in srgb, var(--tile-c) 30%, transparent);
}
.mo-day-tile-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.mo-day-tile-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: color-mix(in srgb, var(--tile-c) 15%, #fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  line-height: 1;
}
.mo-day-tile-time {
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--tile-c);
  letter-spacing: -0.02em;
}
.mo-day-tile-label {
  font-family: var(--mo-font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--mo-ink);
  margin-bottom: 4px;
  position: relative; z-index: 2;
}
.mo-day-tile-note {
  font-size: 13px;
  color: var(--mo-ink2);
  line-height: 1.45;
  position: relative; z-index: 2;
}
.mo-day-tile-num {
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: var(--mo-font-display);
  font-weight: 700;
  font-size: 44px;
  color: var(--tile-c);
  opacity: 0.18;
  line-height: 1;
  z-index: 1;
}
.mo-day-foot { text-align: center; margin-top: 44px; }

@media (max-width: 980px) {
  .mo-day-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .mo-day-grid { grid-template-columns: 1fr; }
}

/* ============ GALLERY MOSAIC ============ */
.mo-gallery-preview { padding: 100px 0; background: var(--mo-pinkBg); }
.mo-mosaic {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 180px);
}
.mo-mosaic-tile {
  border-radius: 24px; overflow: hidden; padding: 0; position: relative;
  box-shadow: var(--mo-shadow); transition: transform .3s, box-shadow .3s;
}
.mo-mosaic-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mo-mosaic-tile:hover { transform: scale(1.03) rotate(-1deg); box-shadow: var(--mo-shadow-lg); z-index: 2; }
.mo-mosaic-tile:hover img { transform: scale(1.1); }
.mo-mosaic-tile.t0 { grid-column: span 2; grid-row: span 2; }
.mo-mosaic-tile.t1 { grid-column: span 1; }
.mo-mosaic-tile.t2 { grid-column: span 1; }
.mo-mosaic-tile.t3 { grid-column: span 1; }
.mo-mosaic-tile.t4 { grid-column: span 1; }
.mo-mosaic-tile.t5 { grid-column: span 2; }
.mo-mosaic-tile.t6 { grid-column: span 1; }
.mo-mosaic-tile.t7 { grid-column: span 1; }

@media (max-width: 700px) {
  .mo-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 140px); }
  .mo-mosaic-tile.t0 { grid-column: span 2; grid-row: span 1; }
  .mo-mosaic-tile.t5 { grid-column: span 2; }
}

/* ============ TESTIMONIALS ============ */
.mo-testimonials { padding: 100px 0; }
.mo-test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.mo-test-card {
  background: #fff; border-radius: 28px; padding: 32px 28px;
  box-shadow: var(--mo-shadow);
  border-left: 6px solid var(--accent);
  transition: transform .3s;
  position: relative;
}
.mo-test-card:hover { transform: translateY(-4px) rotate(-0.5deg); }
.mo-quote {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: -20px;
}
.mo-test-card p { font-size: 17px; margin: 0 0 20px; color: var(--mo-ink); }
.mo-test-name { font-family: var(--mo-font-display); font-weight: 600; color: var(--accent); }

/* ============ CTA BAND ============ */
.mo-cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(200,48,144,0.15), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(62,185,229,0.15), transparent 50%),
    var(--mo-ink);
  color: #fff;
  position: relative;
}
.mo-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.mo-cta-inner h2 { font-size: clamp(28px, 3vw, 40px); color: #fff; margin-bottom: 10px; }
.mo-cta-inner p { color: rgba(255,255,255,0.7); margin: 0; font-size: 17px; }
.mo-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .mo-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .mo-cta-buttons { justify-content: center; width: 100%; }
}

/* ============ FOOTER ============ */
.mo-footer { background: #2E3A78; color: rgba(255,255,255,0.78); position: relative; padding-top: 60px; }
.mo-footer-wave { position: absolute; top: -1px; left: 0; right: 0; line-height: 0; transform: rotate(180deg); }
.mo-footer-wave svg { width: 100%; height: 60px; display: block; }
.mo-footer-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
}
.mo-footer-brand .mo-footer-logo { background: #fff; padding: 12px; border-radius: 16px; width: 160px; margin-bottom: 16px; }
.mo-footer h4 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.mo-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.mo-footer ul button, .mo-footer ul a { padding: 0; font-size: 15px; color: rgba(255,255,255,0.75); transition: color .2s; text-align: left; }
.mo-footer ul button:hover, .mo-footer ul a:hover { color: var(--mo-yellow); }
.mo-footer-copy {
  max-width: 1240px; margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.mo-made-by {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  transition: color .2s, opacity .2s;
}
.mo-made-by img { height: 20px; width: auto; opacity: .65; transition: opacity .2s; }
.mo-made-by:hover { color: var(--mo-yellow); }
.mo-made-by:hover img { opacity: 1; }

@media (max-width: 900px) { .mo-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .mo-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .mo-footer-brand .mo-footer-logo { margin-left: auto; margin-right: auto; }
  .mo-footer ul { align-items: center; }
  .mo-footer ul button, .mo-footer ul a { text-align: center; }
  .mo-footer-copy { text-align: center; flex-direction: column; gap: 10px; }
}

/* ============ PAGE HERO ============ */
.mo-breadcrumbs-bar {
  padding: 140px 0 12px;
  background: var(--mo-cream2);
  display: flex;
  justify-content: center;
}
.mo-breadcrumbs-bar .mo-container {
  display: flex;
  justify-content: center;
}
.mo-page-hero {
  padding: 24px 0 100px;
  background: var(--mo-cream2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mo-page-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.ps { position: absolute; border-radius: 50%; opacity: 0.7; filter: blur(40px); }
.ps1 { width: 200px; height: 200px; top: 10%; left: 5%; animation: floatA 10s ease-in-out infinite; }
.ps2 { width: 180px; height: 180px; top: 30%; right: 8%; animation: floatB 12s ease-in-out infinite; }
.ps3 { width: 140px; height: 140px; bottom: 10%; left: 20%; animation: floatA 14s ease-in-out infinite; }
.ps4 { width: 160px; height: 160px; bottom: 20%; right: 20%; animation: floatB 11s ease-in-out infinite; }
@keyframes floatA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -20px) scale(1.1); } }
@keyframes floatB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-20px, 20px) scale(0.9); } }
.mo-page-title {
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.02em;
  position: relative; z-index: 2;
  margin-bottom: 16px;
}
.mo-page-sub { font-size: clamp(17px, 1.3vw, 20px); color: var(--mo-ink2); max-width: 620px; margin: 0 auto; position: relative; z-index: 2; }

.mo-breadcrumbs {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--mo-shadow);
  font-size: 14px;
  position: relative; z-index: 2;
  font-family: var(--mo-font-body);
  font-weight: 500;
}
.mo-breadcrumbs button {
  color: var(--mo-ink2);
  padding: 0;
  transition: color .2s;
}
.mo-breadcrumbs button:hover { color: var(--mo-ink); }
.mo-crumb-sep { color: var(--mo-ink2); opacity: 0.5; font-size: 16px; }
.mo-crumb-current {
  font-family: var(--mo-font-display);
  font-weight: 600;
}

/* ============ ABOUT: STORY ============ */
.mo-about-story { padding: 100px 0; }
.mo-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mo-story-copy p { font-size: 17px; color: var(--mo-ink2); }
.mo-story-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.mo-story-stats > div { display: flex; flex-direction: column; }
.mo-story-stats strong { font-family: var(--mo-font-display); font-size: 36px; color: var(--mo-magenta); }
.mo-story-stats span { font-size: 14px; color: var(--mo-ink2); }
.mo-story-img { position: relative; border-radius: 32px; overflow: visible; }
.mo-story-img img { border-radius: 32px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--mo-shadow-lg); position: relative; z-index: 2; transform: rotate(2deg); }
.mo-story-blob { position: absolute; width: 140px; height: 140px; border-radius: 50%; top: -30px; right: -30px; filter: blur(2px); z-index: 1; opacity: 0.8; }
.mo-story-blob2 { top: auto; bottom: -40px; right: auto; left: -40px; width: 100px; height: 100px; }

@media (max-width: 900px) { .mo-story-grid { grid-template-columns: 1fr; } }

/* ============ MISSION ============ */
.mo-mission { padding: 100px 0; background: var(--mo-greenBg); }
.mo-mission-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .mo-mission-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .mo-mission-grid { grid-template-columns: 1fr; } }
.mo-mission-card {
  background: #fff; border-radius: 28px; padding: 32px 28px;
  box-shadow: var(--mo-shadow);
  transition: transform .3s;
  border-bottom: 6px solid var(--accent);
}
.mo-mission-card:hover { transform: translateY(-6px); }
.mo-mission-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 20px;
  font-family: var(--mo-font-display);
  transform: rotate(-6deg);
}
.mo-mission-card h3 { font-size: 22px; margin-bottom: 10px; }
.mo-mission-card p { color: var(--mo-ink2); margin: 0; font-size: 15px; }

/* ============ TEAM ============ */
.mo-team { padding: 100px 0; }
.mo-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.mo-team-card {
  background: #fff; border-radius: 24px; padding: 28px 20px;
  text-align: center; box-shadow: var(--mo-shadow);
  transition: transform .3s;
  border-top: 4px solid var(--accent);
}
.mo-team-card:hover { transform: translateY(-6px) rotate(-1deg); }
.mo-team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-family: var(--mo-font-display);
  font-size: 32px; font-weight: 600;
}
.mo-team-card h4 { font-size: 18px; margin-bottom: 6px; }
.mo-team-card p { font-size: 14px; color: var(--mo-ink2); margin: 0; }
.mo-team-note { text-align: center; margin-top: 32px; color: var(--mo-ink2); font-size: 14px; font-style: italic; }

/* ============ GALLERY FULL ============ */
.mo-gallery-full { padding: 100px 0; background: var(--mo-cream2); }
.mo-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.mo-gallery-item {
  padding: 0; position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden;
  box-shadow: var(--mo-shadow); transition: transform .3s;
}
.mo-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mo-gallery-item:hover { transform: scale(1.03); }
.mo-gallery-item:hover img { transform: scale(1.1); }
.mo-gallery-overlay {
  position: absolute; inset: 0; background: rgba(42,53,80,0.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0; transition: opacity .3s;
}
.mo-gallery-item:hover .mo-gallery-overlay { opacity: 1; }

/* ============ GROUPS ============ */
.mo-groups { padding: 100px 0; }
.mo-groups-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.mo-group-card {
  background: #fff; border-radius: 32px; padding: 40px 32px;
  box-shadow: var(--mo-shadow);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.mo-group-card::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--accent); opacity: 0.1;
  transition: transform .4s;
}
.mo-group-card:hover { transform: translateY(-8px); box-shadow: var(--mo-shadow-lg); }
.mo-group-card:hover::before { transform: scale(1.3); }
.mo-group-emblem {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--mo-font-display); font-size: 40px; color: #fff;
  transform: rotate(-6deg);
  position: relative; z-index: 2;
}
.mo-group-age { font-size: 14px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; position: relative; z-index: 2; }
.mo-group-card h3 { font-size: 28px; margin-bottom: 12px; position: relative; z-index: 2; }
.mo-group-card p { color: var(--mo-ink2); margin: 0; position: relative; z-index: 2; }

/* ============ ADDONS ============ */
.mo-addons { padding: 100px 0; }
.mo-addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .mo-addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mo-addons-grid { grid-template-columns: 1fr; } }
.mo-addon-card {
  background: #fff; border-radius: 20px; padding: 24px;
  box-shadow: var(--mo-shadow);
  transition: transform .3s;
}
.mo-addon-card:hover { transform: translateY(-4px) rotate(-1deg); }
.mo-addon-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 14px;
  transform: rotate(-4deg);
  overflow: hidden;
}
.mo-addon-icon svg.mo-flag { width: 36px; height: 26px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,.18); }
.mo-addon-card h4 { font-size: 17px; margin-bottom: 4px; }
.mo-addon-card p { font-size: 14px; color: var(--mo-ink2); margin: 0; }

.mo-addons-extra { margin-top: 48px; padding: 32px; background: #FFF4DF; border-radius: 24px; }
.mo-addons-extra-title { font-size: 20px; margin: 0 0 16px; color: var(--mo-ink); }
.mo-addons-extra-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.mo-addons-extra-list li {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 500; font-size: 15px; color: var(--mo-ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.mo-addons-extra-icon { font-size: 18px; line-height: 1; }
.mo-addons-extra-note { margin: 16px 0 0; font-size: 13px; color: var(--mo-ink2); font-style: italic; }

/* ============ FULL DAY ============ */
.mo-fullday { padding: 100px 0; }
.mo-fullday-list { max-width: 720px; margin: 0 auto; }
.mo-fullday-row {
  display: grid; grid-template-columns: 140px 20px 1fr;
  align-items: center; gap: 24px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--mo-border);
}
.mo-fullday-time { font-family: var(--mo-font-display); font-size: 20px; font-weight: 600; text-align: right; }
.mo-fullday-dot { width: 14px; height: 14px; border-radius: 50%; }
.mo-fullday-act { font-size: 17px; }

@media (max-width: 600px) {
  .mo-fullday-row { grid-template-columns: 100px 14px 1fr; gap: 14px; }
  .mo-fullday-time { font-size: 16px; }
  .mo-fullday-act { font-size: 15px; }
}

/* ============ PRICING ============ */
.mo-pricing { padding: 100px 0; }
.mo-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.mo-price-card {
  background: #fff; border-radius: 28px; padding: 32px 28px;
  box-shadow: var(--mo-shadow);
  display: flex; flex-direction: column;
}
.mo-price-feature { border: 3px solid var(--accent); transform: scale(1.04); }
.mo-price-label { font-family: var(--mo-font-display); font-size: 14px; color: var(--mo-ink2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.mo-price-value { font-family: var(--mo-font-display); font-size: 28px; margin-bottom: 16px; }
.mo-price-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.mo-price-card ul li { font-size: 15px; color: var(--mo-ink2); }
.mo-price-card p { color: var(--mo-ink2); margin: 0; font-size: 14px; }
.mo-price-note { margin-top: auto !important; font-style: italic; }
.mo-pricing-foot { text-align: center; margin-top: 32px; color: var(--mo-ink2); font-size: 14px; }

/* ============ STEPS ============ */
.mo-steps { padding: 100px 0; }
.mo-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.mo-step-card {
  background: #fff; border-radius: 28px; padding: 32px 28px;
  box-shadow: var(--mo-shadow);
  position: relative;
  transition: transform .3s;
  border-bottom: 6px solid var(--accent);
}
.mo-step-card:hover { transform: translateY(-6px); }
.mo-step-num {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mo-font-display); font-size: 22px; font-weight: 600;
  color: #fff; margin-bottom: 18px;
  transform: rotate(-6deg);
}
.mo-step-card h3 { font-size: 20px; margin-bottom: 10px; }
.mo-step-card p { color: var(--mo-ink2); font-size: 15px; margin: 0; }

/* ============ DOCS ============ */
.mo-docs { padding: 100px 0; background: var(--mo-greenBg); }
.mo-docs-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.mo-docs-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.mo-docs-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--mo-border);
  font-size: 17px;
}
.mo-docs-list li span {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--mo-font-display); font-weight: 600;
  flex-shrink: 0;
}
.mo-docs-list em { font-style: italic; color: var(--mo-ink2); font-weight: normal; font-size: 14px; margin-left: 6px; }
.mo-docs-dates { background: #fff; border-radius: 28px; padding: 32px; box-shadow: var(--mo-shadow); }
.mo-docs-dates h3 { font-size: 22px; margin-bottom: 20px; }
.mo-date-row {
  display: grid; grid-template-columns: 14px 1fr auto;
  gap: 16px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--mo-border);
}
.mo-date-row:last-child { border-bottom: none; }
.mo-date-row span { width: 14px; height: 14px; border-radius: 50%; }
.mo-date-row em { font-style: normal; color: var(--mo-ink2); font-size: 14px; }

@media (max-width: 900px) { .mo-docs-grid { grid-template-columns: 1fr; } }

/* ============ FORM ============ */
.mo-form-section { padding: 100px 0; }
.mo-form {
  max-width: 820px; margin: 0 auto;
  background: #fff; border-radius: 32px; padding: 40px;
  box-shadow: var(--mo-shadow-lg);
}
.mo-form-group { margin-bottom: 32px; }
.mo-form-group h4 { font-size: 20px; margin-bottom: 20px; color: var(--mo-magenta); }
.mo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.mo-form label { display: flex; flex-direction: column; gap: 8px; position: relative; }
.mo-form label span { font-weight: 600; font-size: 14px; color: var(--mo-ink); }
.mo-form input, .mo-form select, .mo-form textarea {
  font-family: var(--mo-font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--mo-border);
  border-radius: 14px;
  background: var(--mo-cream);
  color: var(--mo-ink);
  transition: border-color .2s;
}
.mo-form input:focus, .mo-form select:focus, .mo-form textarea:focus { outline: none; border-color: var(--mo-magenta); background: #fff; }
.mo-form label.err input, .mo-form label.err select, .mo-form label.err textarea { border-color: var(--mo-magenta); }
.mo-form label em { font-style: normal; color: var(--mo-magenta); font-size: 13px; font-weight: 600; }
.mo-full { grid-column: 1 / -1; }
.mo-radio-set { display: flex; gap: 10px; flex-wrap: wrap; }
.mo-radio-opt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 2px solid var(--mo-border);
  border-radius: 999px;
  background: var(--mo-cream);
  cursor: pointer;
  font-weight: 600; font-size: 14px;
  transition: all .2s;
}
.mo-radio-opt input { display: none; }
.mo-radio-opt.on { background: var(--rc); color: #fff; border-color: var(--rc); transform: translateY(-2px); }
.mo-radio-group.err .mo-radio-opt { border-color: rgba(200,48,144,0.3); }
.mo-checkbox { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--mo-cream); border-radius: 14px; cursor: pointer; margin-bottom: 24px; }
.mo-checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--mo-magenta); }
.mo-checkbox span { font-size: 14px; line-height: 1.5; }
.mo-checkbox.err { border: 2px solid var(--mo-magenta); }

.mo-form-thanks { max-width: 560px; margin: 0 auto; text-align: center; background: #fff; border-radius: 32px; padding: 60px 40px; box-shadow: var(--mo-shadow-lg); }
.mo-check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--mo-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; margin: 0 auto 20px;
  animation: pop .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.mo-form-thanks h2 { font-size: 32px; margin-bottom: 12px; }
.mo-form-thanks p { color: var(--mo-ink2); margin-bottom: 24px; }

@media (max-width: 700px) {
  .mo-form { padding: 24px; }
  .mo-form-row { grid-template-columns: 1fr; }
}

/* ============ CONTACT ============ */
.mo-contact { padding: 100px 0; }
.mo-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.mo-contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.mo-cc {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 20px; padding: 18px 22px;
  box-shadow: var(--mo-shadow);
  border-left: 4px solid var(--accent);
  transition: transform .2s;
}
a.mo-cc:hover { transform: translateX(4px); }
.mo-cc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; flex-shrink: 0;
  transform: rotate(-6deg);
}
.mo-cc-icon svg { width: 22px; height: 22px; }
.mo-cc strong { display: block; font-family: var(--mo-font-display); font-size: 16px; margin-bottom: 2px; }
.mo-cc span { display: block; font-size: 15px; color: var(--mo-ink2); }
.mo-form-small { padding: 32px; }
.mo-form-small h3 { font-size: 24px; margin-bottom: 20px; }
.mo-form-small label { margin-bottom: 14px; }

@media (max-width: 900px) { .mo-contact-grid { grid-template-columns: 1fr; } }

/* ============ MAP ============ */
.mo-map { padding: 0 0 100px; }
.mo-map-frame {
  position: relative;
  border-radius: 32px; overflow: hidden;
  box-shadow: var(--mo-shadow-lg);
  height: 460px;
  background: var(--mo-cream2);
}
.mo-map-pin {
  position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -100%);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--mo-font-display);
  font-weight: 600;
  box-shadow: var(--mo-shadow);
  pointer-events: none;
  animation: bounce 2s ease-in-out infinite;
}
.mo-map-pin-inner { white-space: nowrap; }
.mo-map-pin::after {
  content: ""; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent; border-right: 10px solid transparent;
  border-top: 10px solid var(--mo-magenta);
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, -110%); } }

/* ============ LIGHTBOX ============ */
.mo-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(42,53,80,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fadein .2s;
}
@keyframes fadein { from { opacity: 0; } }
.mo-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 16px; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.mo-lb-close, .mo-lb-prev, .mo-lb-next {
  position: absolute; color: #fff;
  background: rgba(255,255,255,0.15);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: background .2s;
}
.mo-lb-close:hover, .mo-lb-prev:hover, .mo-lb-next:hover { background: rgba(255,255,255,0.3); }
.mo-lb-close { top: 24px; right: 24px; }
.mo-lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.mo-lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.mo-lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-family: var(--mo-font-display); }

/* ============ REVEAL ============ */
.mo-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.mo-reveal.in { opacity: 1; transform: translateY(0); }
/* Reveal wrappers used as direct grid children must stretch so inner cards can fill the row */
.mo-facts-grid > .mo-reveal,
.mo-offer-grid > .mo-reveal,
.mo-why-grid > .mo-reveal,
.mo-day-grid > .mo-reveal,
.mo-test-grid > .mo-reveal,
.mo-mission-grid > .mo-reveal,
.mo-team-grid > .mo-reveal,
.mo-groups-grid > .mo-reveal,
.mo-addons-grid > .mo-reveal,
.mo-steps-grid > .mo-reveal { height: 100%; display: flex; }
.mo-facts-grid > .mo-reveal > *,
.mo-offer-grid > .mo-reveal > *,
.mo-why-grid > .mo-reveal > *,
.mo-day-grid > .mo-reveal > *,
.mo-test-grid > .mo-reveal > *,
.mo-mission-grid > .mo-reveal > *,
.mo-team-grid > .mo-reveal > *,
.mo-groups-grid > .mo-reveal > *,
.mo-addons-grid > .mo-reveal > *,
.mo-steps-grid > .mo-reveal > * { width: 100%; height: 100%; display: flex; flex-direction: column; }

/* ============ TWEAKS PANEL ============ */
.mo-tweaks {
  position: fixed; bottom: 20px; right: 20px; z-index: 500;
  background: #fff; border-radius: 20px;
  padding: 20px;
  box-shadow: var(--mo-shadow-lg);
  width: 280px;
  font-family: var(--mo-font-body);
  font-size: 14px;
  border: 2px solid var(--mo-border);
}
.mo-tweaks h4 { font-family: var(--mo-font-display); margin-bottom: 16px; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.mo-tweaks h4::before { content: "⚙"; }
.mo-tweaks .tw-row { margin-bottom: 12px; }
.mo-tweaks label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; }
.mo-tweaks .tw-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.mo-tweaks .tw-chip {
  padding: 6px 10px; border-radius: 8px;
  border: 2px solid var(--mo-border);
  background: var(--mo-cream);
  font-size: 12px; cursor: pointer; font-weight: 600;
  transition: all .2s;
}
.mo-tweaks .tw-chip.on { background: var(--mo-ink); color: #fff; border-color: var(--mo-ink); }
.mo-tweaks .tw-swatch {
  width: 28px; height: 28px; border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}
.mo-tweaks .tw-swatch.on { border-color: var(--mo-ink); transform: scale(1.1); }

/* ============ WP THEME ADJUSTMENTS ============ */

/* Skip link */
.mo-skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.mo-skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 10000;
  width: auto; height: auto; padding: 12px 18px;
  background: var(--mo-ink); color: #fff; border-radius: 8px;
  font-family: var(--mo-font-display); font-weight: 600;
}

/* Lightbox - domyslnie ukryty, pokazuje sie przez .open */
.mo-lightbox { display: none; }
.mo-lightbox.open { display: flex; align-items: center; justify-content: center; }

/* WP menu - styling */
.mo-links .mo-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 6px; align-items: center;
}
.mo-links .mo-menu > li > a {
  padding: 10px 16px; display: inline-block;
  font-family: var(--mo-font-display);
  font-weight: 500; font-size: 15px;
  border-radius: 999px;
  color: var(--mo-ink2);
  transition: color .2s, background .2s;
}
.mo-links .mo-menu > li > a:hover,
.mo-links .mo-menu > li.current-menu-item > a,
.mo-links .mo-menu > li.current_page_item > a {
  color: var(--mo-ink);
  background: var(--mo-cream2);
}

/* CF7 integration */
.wpcf7 form.mo-form-done { display: none; }
.wpcf7-response-output {
  border-radius: 12px !important; padding: 16px 20px !important;
  font-family: var(--mo-font-body); font-size: 15px;
  margin-top: 20px !important;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--mo-green) !important; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { border-color: var(--mo-magenta) !important; }
.wpcf7-not-valid-tip { color: var(--mo-magenta); font-size: 13px; margin-top: 6px; }
.wpcf7 .mo-field { display: block; margin-bottom: 16px; }
.wpcf7 .mo-field > span { display: block; font-weight: 600; margin-bottom: 6px; color: var(--mo-ink); font-size: 14px; }
.wpcf7 .mo-field input,
.wpcf7 .mo-field textarea,
.wpcf7 .mo-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--mo-border);
  border-radius: 12px;
  font-family: var(--mo-font-body);
  font-size: 15px;
  background: #fff;
  color: var(--mo-ink);
  transition: border-color .2s, box-shadow .2s;
}
.wpcf7 .mo-field input:focus,
.wpcf7 .mo-field textarea:focus,
.wpcf7 .mo-field select:focus {
  outline: none;
  border-color: var(--mo-magenta);
  box-shadow: 0 0 0 4px rgba(200, 48, 144, 0.12);
}
.wpcf7 .mo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .wpcf7 .mo-form-row { grid-template-columns: 1fr; } }
.wpcf7 .mo-checkbox { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: var(--mo-cream2); border-radius: 12px; margin: 20px 0; font-size: 14px; }
.wpcf7 .mo-checkbox input[type="checkbox"] { margin-top: 2px; }
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox { display: flex; flex-wrap: wrap; gap: 10px; }
.wpcf7 .wpcf7-list-item { margin: 0 !important; }
.wpcf7 .wpcf7-list-item-label { cursor: pointer; }
.wpcf7 .mo-form-group { background: #fff; border-radius: 16px; padding: 24px; margin-bottom: 20px; box-shadow: var(--mo-shadow); border: 1px solid var(--mo-border); }
.wpcf7 .mo-form-group h4 { font-family: var(--mo-font-display); font-size: 18px; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.wpcf7 .wpcf7-submit { margin-top: 12px !important; }
.wpcf7 .wpcf7-spinner { margin-left: 12px; }
.wpcf7-acceptance { display: block; }
.wpcf7-acceptance .wpcf7-list-item { display: flex; gap: 10px; align-items: flex-start; }

/* Page content generic */
.mo-page-content { padding: 60px 0 80px; min-height: 50vh; }
.mo-article-body p { margin: 16px 0; }
.mo-article-body h2, .mo-article-body h3 { margin-top: 32px; }

/* CF7 warning */
.mo-cf7-warning {
  padding: 16px 20px; border-radius: 12px;
  background: #FFF4DF; color: var(--mo-ink);
  border-left: 4px solid var(--mo-orange);
}

/* Hero CF7 fixes */
.mo-form .wpcf7-form { display: block; }

/* ============ FIX: overflow horizontal ============ */
html, body { overflow-x: hidden; }
.mo-hero,
.mo-page-hero,
section { position: relative; overflow: hidden; }
.mo-hero-confetti,
.mo-hero-art,
.mo-page-hero-shapes { pointer-events: none; }

/* ============ FIX: CF7 <p> wrappers = zero margin ============ */
.wpcf7 form p { margin: 0; padding: 0; }
.wpcf7 form br { display: none; }
.wpcf7 .mo-form-row p,
.wpcf7 .mo-form-group p { margin: 0; }
.mo-contact-form .wpcf7 { margin: 0; }
.mo-contact-form .wpcf7 label + label { margin-top: 14px; }

/* Kontakt form - mniejsze paddingi w mobile */
.mo-contact-form form h3 { font-family: var(--mo-font-display); font-size: 22px; margin: 0 0 16px; }

/* CF7 submit - spacing */
.wpcf7 p:has(.wpcf7-submit) { margin-top: 20px !important; }

/* ============ FIX: menu mobilne (WP menu .mo-menu) ============ */
@media (max-width: 980px) {
  .mo-links .mo-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .mo-links .mo-menu > li { width: 100%; }
  .mo-links .mo-menu > li > a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: left;
    font-size: 16px;
  }
  .mo-links .mo-cta-small {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 14px 20px;
  }
}

/* ============ FIX: polskie znaki - font weight consistency ============ */
body, h1, h2, h3, h4, .mo-btn, .mo-hero-sticker, .mo-hero-kicker {
  font-feature-settings: "kern" 1, "liga" 1;
  font-variant-ligatures: common-ligatures;
  font-synthesis-weight: none;
  font-synthesis-style: none;
  font-synthesis-small-caps: none;
}
/* Wymuś pełny zestaw znaków Fredoka - jeśli w danej wadze brak polskiego glifu,
   przeglądarka weźmie Quicksand (który ma pełny latin-ext) zamiast cieńszego fallbacku */
h1, h2, h3, h4 { font-family: 'Baloo 2', 'Quicksand', 'Segoe UI', system-ui, sans-serif; }

/* ============ FIX: CF7 radio chips (grupy w rekrutacji) ============ */
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.wpcf7 .wpcf7-list-item {
  margin: 0 !important;
  display: inline-flex !important;
}
.wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2px solid var(--mo-border);
  border-radius: 999px;
  cursor: pointer;
  background: #fff;
  font-family: var(--mo-font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--mo-ink2);
  transition: all .2s;
  margin: 0 !important;
}
.wpcf7 .wpcf7-list-item input[type="radio"],
.wpcf7 .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.wpcf7 .wpcf7-list-item label:hover {
  border-color: var(--mo-magenta);
  color: var(--mo-magenta);
  transform: translateY(-1px);
}
.wpcf7 .wpcf7-list-item:has(input:checked) label {
  background: var(--mo-magenta);
  border-color: var(--mo-magenta);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(200, 48, 144, 0.5);
}
.wpcf7 .wpcf7-list-item-label { padding: 0; }

/* Acceptance (RODO) - ladny checkbox z ikoną */
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  display: block !important;
  width: 100%;
}
.wpcf7 .wpcf7-acceptance label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--mo-cream2);
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--mo-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mo-ink);
  position: relative;
}
.wpcf7 .wpcf7-acceptance label::before {
  content: "";
  flex: 0 0 20px;
  width: 20px; height: 20px;
  border: 2px solid var(--mo-magenta);
  border-radius: 6px;
  background: #fff;
  margin-top: 1px;
  transition: all .2s;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item:has(input:checked) label::before {
  background: var(--mo-magenta);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 8px var(--mo-magenta);
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item:has(input:checked) label {
  border-color: var(--mo-magenta);
}

/* ============ FIX: CF7 zaznaczony chip - biała czcionka ============ */
.wpcf7 .wpcf7-list-item:has(input:checked) label,
.wpcf7 .wpcf7-list-item:has(input:checked) label *,
.wpcf7 .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label {
  color: #fff !important;
}

/* ============ FIX: desktop nav - odstep CTA od prawej krawedzi ============ */
@media (min-width: 981px) {
  .mo-nav-inner {
    padding-right: clamp(16px, 2vw, 24px);
  }
  .mo-links .mo-cta-small { margin-left: 12px; }
}

/* ============ FIX: mobile polish ============ */
@media (max-width: 980px) {
  /* Logo mobilny - mniejsze, nie zajmuje tyle miejsca */
  .mo-logo-btn img { height: 56px; }
  .mo-nav.scrolled .mo-logo-btn img { height: 48px; }
  /* Nav padding mobile */
  .mo-nav-inner { padding: 6px 10px 6px 12px; }
  .mo-burger { width: 44px; height: 44px; flex-shrink: 0; }

  /* Breadcrumbs mobile - mniej squeeze */
  .mo-breadcrumbs-bar { padding: 12px 0; }
  .mo-breadcrumbs { font-size: 13px; flex-wrap: wrap; }

  /* Page hero title mobile */
  .mo-page-title { font-size: clamp(32px, 9vw, 48px) !important; }
  .mo-page-sub { font-size: 16px; }

  /* Day tile - zmniejsz duzy numer zeby nie zaslanial godziny */
  .mo-day-tile-num { font-size: 72px !important; opacity: 0.12; bottom: -20px; right: -10px; }
  .mo-day-tile-time { font-size: 20px; }
  .mo-day-tile-label { font-size: 17px; margin-top: 8px; }
}

/* ============ FIX: very small screens (<= 400px) ============ */
@media (max-width: 400px) {
  .mo-hero-title { font-size: 36px !important; line-height: 1.05 !important; }
  .mo-h2 { font-size: 28px !important; }
  .mo-btn { font-size: 15px; padding: 12px 22px; }
  .mo-hero-meta { flex-wrap: wrap; gap: 18px 28px; }
  .mo-hero-meta > div { min-width: 0; }
  .mo-hero-sticker-1 { font-size: 12px; padding: 8px 14px; }
}

/* ============ FIX: ensure no horizontal overflow on specific wide elements ============ */
.mo-hero-art { max-width: 100%; }
.mo-footer { overflow: hidden; }

/* ============ FIX: Polityka prywatnosci / strony generyczne ============ */
/* Odstep od fixed nav (logo 96px + padding 16px = ~120px) */
.mo-page-content { padding-top: 140px; }
@media (max-width: 980px) {
  .mo-page-content { padding-top: 100px; }
}
.mo-article-head .mo-page-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 32px;
}
.mo-article-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}
.mo-article-body h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--mo-magenta);
}
.mo-article-body h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 28px;
  margin-bottom: 10px;
}
.mo-article-body p { margin: 12px 0; }
.mo-article-body ul, .mo-article-body ol {
  margin: 12px 0 16px;
  padding-left: 24px;
}
.mo-article-body li { margin: 6px 0; }
.mo-article-body a {
  color: var(--mo-magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mo-article-body a:hover { color: var(--mo-ink); }
.mo-article-body strong { color: var(--mo-ink); font-weight: 600; }

/* ============ FIX: mobile horizontal scroll / bounce (iOS Safari) ============ */
html, body {
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  max-width: 100%;
  width: 100%;
}
img, iframe, video, svg { max-width: 100%; }
.mo-hero-confetti { overflow: hidden; }
.mo-why-sticker { max-width: calc(100% - 20px); }

/* Tylko sekcje ktore faktycznie uciekaja w bok (dekoracje / confetti) */
.mo-hero, .mo-page-hero { overflow-x: clip; }

/* ============ FIX: polityka prywatnosci - wysrodkowany tytul ============ */
.mo-article-head { text-align: center; }
.mo-article-head .mo-page-title { text-align: center; }

/* ============ FIX: polityka padding-top desktop ============ */
.mo-page-content { padding-top: 180px; }
@media (max-width: 980px) { .mo-page-content { padding-top: 110px; } }
