/* ===================================================
   MySchool — Main Stylesheet
   Based on design: /strona/myschool/index.html
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

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

:root {
  --cyan:     #32cafb;
  --green:    #bee80b;
  --blue:     #3981ff;
  --black:    #000000;
  --white:    #ffffff;
  --text:     #1a1a1a;
  --muted:    #666666;
  --light-bg: #f0f9ff;
  --border:   #e8e8e8;
  --radius:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; background: #fff; }
.section-alt { padding: 5rem 0; background: var(--light-bg); }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ─── HEADINGS ─── */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--black); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; color: var(--black); }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--black); }
h4 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.section-header { margin-bottom: 3rem; }
.section-header-center { margin-bottom: 3rem; text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
}
.btn-primary:hover { background: #1ab8e8; border-color: #1ab8e8; }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: #eee; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }

/* ─── LOGO ─── */
.logo {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo svg { display: block; }

/* ─── NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--black);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1.5rem;
  flex: 1;
}

.nav-link {
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { background: #f5f5f5; }
.nav-link.has-dropdown { cursor: pointer; }
.nav-link-bold { font-weight: 700; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-link:hover .nav-dropdown,
.nav-link:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--light-bg); }

/* Mega menu */
.nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: -100px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  width: 660px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-link:hover .nav-mega,
.nav-link:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.4rem 0.7rem 0.5rem;
}

.mega-col a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s;
}
.mega-col a:hover { background: var(--light-bg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.nav-social a:hover { border-color: var(--black); background: #f5f5f5; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.35rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-group { margin-bottom: 0.5rem; }
.mobile-menu-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.75rem 0 0.25rem;
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ─── HERO (HOME) ─── */
.hero {
  padding: 5rem 0 4rem;
  background: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-h1 { margin-bottom: 1.25rem; }

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: #222;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.video-ph-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-align: center;
  padding: 0 1rem;
}
.play-btn {
  width: 64px;
  height: 64px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero floating badges */
.mascot-float {
  position: absolute;
  pointer-events: none;
}
.mascot-float-1 { top: -24px; right: -20px; }
.mascot-float-2 { bottom: -20px; right: -30px; }
.mascot-float-3 { top: 50%; left: -30px; transform: translateY(-50%); }

/* ─── HERO SUB (inner pages) ─── */
.hero-sub {
  padding: 3.5rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-sub .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.hero-sub .breadcrumb a { color: var(--muted); }
.hero-sub .breadcrumb a:hover { color: var(--black); }
.hero-sub .breadcrumb-sep { color: #ccc; }
.hero-sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.tag {
  display: inline-block;
  background: var(--light-bg);
  border: 1px solid var(--cyan);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}
.tag-dark {
  background: #111;
  border-color: #111;
  color: #fff;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  background: #222;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 3rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--black); }

/* ─── PERSONA CARDS ─── */
.persona-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.persona-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border-color: var(--cyan);
}
.persona-tag {
  display: inline-block;
  background: var(--light-bg);
  border: 1px solid var(--cyan);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  width: fit-content;
}
.persona-pain {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}
.persona-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.persona-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.persona-cta:hover { color: var(--blue); }

.black-callout {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2rem;
  line-height: 1.65;
}

/* ─── PATH DIAGRAM ─── */
.path-scroll {
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-top: 2.5rem;
}
.path-scroll svg { min-width: 900px; }

/* ─── BENEFIT CARDS ─── */
.benefit-card {
  background: #fff;
  border: none;
  border-radius: 24px 6px 24px 6px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 4px 22px rgba(50,202,251,0.1);
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cyan);
  border-radius: 24px 6px 0 0;
}
.benefit-card:nth-child(even) {
  border-radius: 6px 24px 6px 24px;
}
.benefit-card:nth-child(even)::before {
  border-radius: 6px 24px 0 0;
  background: var(--green);
}
.benefit-card:hover {
  box-shadow: 0 8px 36px rgba(50,202,251,0.18);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.benefit-card:nth-child(even) .benefit-icon { color: #5a9a00; }

/* ─── EFFECT CARDS ─── */
.effect-card {
  background: #fff;
  border: none;
  border-left: 7px solid var(--cyan);
  border-radius: 0 22px 22px 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 4px 6px 24px rgba(0,0,0,0.07);
}
.effect-card:nth-child(2) { border-left-color: var(--green); }
.effect-card:nth-child(3) { border-left-color: var(--blue); }
.effect-card:nth-child(4) { border-left-color: #FDC423; }

.effect-tag {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 0.25rem;
}
.effect-card:nth-child(3) .effect-tag { background: var(--blue); color: #fff; }
.effect-card:nth-child(4) .effect-tag { background: #FDC423; }
.effect-icon {
  width: 36px;
  height: 36px;
  color: var(--cyan);
}
.effect-card:nth-child(2) .effect-icon { color: #5a9a00; }
.effect-card:nth-child(3) .effect-icon { color: var(--blue); }
.effect-card:nth-child(4) .effect-icon { color: #c89000; }

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: #fff;
  border: none;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(50,202,251,0.1);
}
.testimonial-card:nth-child(even) {
  border-radius: 6px 24px 6px 24px;
  box-shadow: 0 6px 28px rgba(190,232,11,0.15);
}
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  bottom: -1.5rem; right: 1rem;
  font-size: 9rem;
  font-weight: 900;
  color: var(--cyan);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}
.testimonial-card:nth-child(even)::after { color: var(--green); }
.testi-segment {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.testi-quote {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text);
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--cyan);
  margin-bottom: 1rem;
}
.testi-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}
.testi-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ─── CERT CARDS ─── */
.cert-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 22px rgba(0,0,0,0.07);
  overflow: hidden;
}
.cert-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cert-logo-ph {
  width: 100%;
  height: 68px;
  background: linear-gradient(135deg, #e0f7fe 0%, #f0f9ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cert-card:nth-child(3n+2) .cert-logo-ph {
  background: linear-gradient(135deg, #e8f8c8 0%, #f5fde0 100%);
  color: #4a7000;
}
.cert-card:nth-child(3n+3) .cert-logo-ph {
  background: linear-gradient(135deg, #fff3cd 0%, #fffbea 100%);
  color: #7a5800;
}

/* ─── LOCATION CARDS ─── */
.location-card {
  background: #fff;
  border: none;
  border-radius: 999px 999px 18px 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(50,202,251,0.12);
  overflow: hidden;
  text-align: center;
}
.location-pin-head {
  background: var(--cyan);
  padding: 1.25rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.location-card:nth-child(even) .location-pin-head { background: var(--green); }
.location-card:nth-child(3) .location-pin-head { background: var(--blue); }
.location-pin-head h4 { font-size: 0.9rem; color: #000; margin: 0; }
.location-card:nth-child(3) .location-pin-head h4 { color: #fff; }
.location-pin-body { padding: 1rem 1rem 1.25rem; }
.location-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.location-card a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 0.5rem;
  display: inline-block;
}
.location-card a:hover { color: var(--blue); }

/* ─── NEWS CARDS ─── */
.news-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
}
.news-img-ph {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e0f7fe 0%, #c8f0fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: -1rem;
}
.news-img-ph.img-ph {
  clip-path: none;
  margin-bottom: 0;
  height: 200px;
}
.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.news-tag {
  background: var(--green);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-date { font-size: 0.8rem; color: var(--muted); }

/* ─── STATS BAR ─── */
.stats-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.stats-bar-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── TEAM CARDS ─── */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.team-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.team-card-body {
  padding: 1.25rem;
}
.team-card-body h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin-bottom: 0.75rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.team-tag {
  background: var(--light-bg);
  border: 1px solid var(--cyan);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}

/* ─── COURSE LIST CARDS ─── */
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.course-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.1); }
.course-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.course-card-img img { width: 100%; height: 100%; object-fit: cover; }
.course-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.course-card-body h3 { margin-bottom: 0.75rem; }
.course-card-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.course-card-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.course-card-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text);
}
.course-card-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.course-card-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ─── FEATURE ROW ─── */
.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.feature-row h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.feature-row p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  padding-top: 0.75rem;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ─── CONTACT FORM ─── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--cyan); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--cyan); }
.form-check input[type="radio"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--cyan); }

/* ─── MAP PLACEHOLDER ─── */
.map-ph {
  width: 100%;
  height: 340px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  overflow: hidden;
}
.map-ph iframe { width: 100%; height: 100%; border: none; border-radius: 12px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner .btn-group { justify-content: center; }

/* ─── FOOTER ─── */
.footer {
  background: #000;
  color: #fff;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--cyan); background: rgba(50,202,251,0.1); }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--cyan); }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-company {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
}

/* ─── LOGO SVG ─── */
.logo-myschool {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
}
.logo-myschool .logo-dot { color: var(--cyan); }

/* ─── CHECKLIST ─── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M5 11l4 4L17 7' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─── LEVEL CARDS ─── */
.level-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.level-card:hover { border-color: var(--cyan); box-shadow: 0 4px 20px rgba(50,202,251,0.1); }
.level-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.level-card h4 { margin-bottom: 0.25rem; }
.level-age {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.level-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ─── CONTACT INFO BOXES ─── */
.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cyan);
}
.contact-box h3 { font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--muted); font-weight: 600; }
.contact-box .contact-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { color: #ccc; }
.breadcrumb-current { color: var(--black); font-weight: 500; }

/* ─── DIFFERENTIATOR ─── */
.diff-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--light-bg);
  border: 1px solid rgba(50,202,251,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cyan);
}
.diff-card h3 { margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ─── CERT BADGE ─── */
.cert-badge {
  background: var(--light-bg);
  border: 1px solid rgba(50,202,251,0.3);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cert-badge-logo {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  flex-shrink: 0;
}
.cert-badge-text { font-size: 0.85rem; font-weight: 600; line-height: 1.4; }
.cert-badge-text span { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 400; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-social { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-sub-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-mega { width: 440px; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar { gap: 1rem; }
  .stats-bar-sep { display: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 3.5rem 0; }
  .section, .section-alt { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
