:root {
    --purple: #7C3AED;
    --purple-dark: #5B21B6;
    --purple-light: #EDE9FE;
    --orange: #F97316;
    --orange-light: #FFF7ED;
    --yellow: #FBBF24;
    --green: #22C55E;
    --pink: #EC4899;
    --white: #FFFFFF;
    --dark: #1E1B2E;
    --gray: #6B7280;
    --light-bg: #FAFAFA;
  }

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

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, .logo-text, .nav-links a, .btn-primary, .btn-secondary {
    font-family: 'Fredoka One', cursive;
  }

  /* ─── TOP BANNER ─────────────────────────────── */
  .top-banner {
    background: var(--purple);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .top-banner span::before { content: '🏀 '; }

  /* ─── NAV ─────────────────────────────────────── */
  nav {
    background: white;
    padding: 14px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(124,58,237,0.1);
    border-bottom: 3px solid var(--purple-light);
  min-height: 150px;
  }

  .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    flex: 0 0 auto;
  }
  .logo img {
    height: 182px;
    width: auto;
    display: block;
  }
  .nav-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: var(--purple-light);
    color: var(--purple);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle span {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 3px 3px 0 var(--orange);
  }
  .logo-text {
    font-size: 22px;
    color: var(--purple);
    letter-spacing: -0.5px;
  }
  .logo-text span { color: var(--orange); }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
    margin-left: auto;
    flex-wrap: wrap;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 17px;
    padding: 10px 18px;
    border-radius: 22px;
    transition: all 0.2s;
    cursor: pointer;
    font-weight: 600;
  }
  .nav-links a:hover, .nav-links a.active {
    background: var(--purple-light);
    color: var(--purple);
  }
  .nav-cta {
    background: var(--orange) !important;
    color: white !important;
    border-radius: 20px !important;
    box-shadow: 3px 3px 0 var(--purple) !important;
    transition: all 0.2s !important;
  }
  .nav-cta:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 5px 5px 0 var(--purple) !important;
    background: var(--orange) !important;
    color: white !important;
  }
  @media(max-width:980px){
    nav {
      padding: 16px 22px;
      min-height: 126px;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo img {
      height: 128px;
    }
    .nav-links {
      width: auto;
      justify-content: flex-end;
      margin-left: auto;
      gap: 8px;
    }
    .nav-links a {
      font-size: 15px;
      padding: 8px 14px;
    }
  }

  /* ─── PAGES ───────────────────────────────────── */
  .page { display: none; animation: fadeIn 0.4s ease; }
  .page.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  /* ─── BUTTONS ─────────────────────────────────── */
  .btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--purple);
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
  }
  .btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--purple); }

  .btn-secondary {
    background: white;
    color: var(--purple);
    border: 3px solid var(--purple);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
  }
  .btn-secondary:hover { background: var(--purple-light); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--purple); }

  /* ─── WAVY DIVIDER ────────────────────────────── */
  .wavy-divider { display: block; width: 100%; line-height: 0; overflow: hidden; margin: 0; padding: 0; font-size: 0; }
  .wavy-divider svg { display: block; width: 100%; height: 20px; vertical-align: bottom; }

  /* ─── SECTION TITLES ──────────────────────────── */
  .section-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
  }

  /* ══════════════════════════════════════════════ */
  /*  HOME PAGE                                     */
  /* ══════════════════════════════════════════════ */

  /* Hero */
  .hero {
    background: var(--purple);
    position: relative;
    padding: 80px 40px 0;
    text-align: center;
    overflow: hidden;
    min-height: 560px;
  }
  .hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
  }
  .hero-deco-1 { width: 300px; height: 300px; background: var(--orange); top: -80px; left: -80px; }
  .hero-deco-2 { width: 200px; height: 200px; background: var(--yellow); bottom: 60px; right: -40px; }
  .hero-deco-3 { width: 120px; height: 120px; background: var(--pink); top: 40px; right: 120px; }

  .hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: bounceIn 0.6s ease;
  }
  @keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
  }

  .hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .hero h1 .highlight {
    color: var(--yellow);
    position: relative;
    display: inline-block;
    animation: wobble 3s ease-in-out infinite;
  }
  @keyframes wobble {
    0%,100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
  }

  .hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
  }
  .btn-hero-white {
    background: white;
    color: var(--purple);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--orange);
    transition: all 0.2s;
    font-family: 'Fredoka One', cursive;
    display: inline-block;
  }
  .btn-hero-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--orange); }

  .hero-balls {
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .hero-ball {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  }
  .hero-ball:nth-child(2) { animation-delay: 0.5s; font-size: 110px; }
  .hero-ball:nth-child(3) { animation-delay: 1s; font-size: 70px; }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
  }

  /* Stats Bar */
  .stats-bar {
    background: var(--orange);
    padding: 26px 40px 30px;
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    margin: 0;
  }
  .stat-item {
    color: white;
    max-width: 340px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(44, 13, 88, 0.95);
    color: #FFD39A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  .stat-copy {
    max-width: 248px;
  }
  .stat-num {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
    font-weight: 900;
    letter-spacing: 0.8px;
  }
  .stat-label {
    font-size: 12px;
    line-height: 1.45;
    opacity: 0.92;
    text-transform: none;
    letter-spacing: 0;
  }
  @media(max-width:768px){
    .stats-bar { gap: 20px; padding: 22px 20px 28px; }
    .stat-item { max-width: 100%; gap: 12px; }
    .stat-icon { width: 50px; height: 50px; font-size: 24px; }
    .stat-copy { max-width: none; }
  }

  .wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
    margin: 0;
  }
  .wave-divider svg {
    display: block;
    width: 100%;
    height: 34px;
  }
  .wave-divider.stats-wave svg {
    height: 50px;
  }

  .mini-hoopers-section {
    padding: 56px 40px 36px;
    background: var(--light-bg);
    text-align: center;
  }
  .mini-hoopers-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .mini-hoopers-section h2 {
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.08;
    margin-bottom: 18px;
    color: var(--dark);
  }
  .mini-hoopers-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 760px;
    margin: 0 auto 28px;
  }

  /* Programs */
  .programs-section {
    padding: 60px 40px 80px;
    background: var(--light-bg);
    text-align: center;
  }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
  }
  .program-card {
    background: white;
    border-radius: 24px;
    padding: 36px 24px;
    border: 3px solid transparent;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
  }
  .program-card.purple::before { background: var(--purple); }
  .program-card.orange::before { background: var(--orange); }
  .program-card.green::before { background: var(--green); }
  .program-card.pink::before { background: var(--pink); }
  .program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(124,58,237,0.15); border-color: var(--purple-light); }
  .program-emoji { font-size: 52px; margin-bottom: 16px; display: block; }
  .program-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 8px; }
  .program-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
  .program-age {
    display: inline-block;
    background: var(--purple-light);
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
  }

  /* Why Us */
  .why-section {
    padding: 70px 40px;
    background: var(--purple);
    position: relative;
  }
  .why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .why-left .section-title { color: white; }
  .why-left .section-sub { color: rgba(255,255,255,0.8); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 24px;
    color: white;
    transition: all 0.2s;
  }
  .why-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
  .why-card .icon { font-size: 32px; margin-bottom: 12px; display: block; }
  .why-card h4 { font-size: 16px; margin-bottom: 6px; }
  .why-card p { font-size: 13px; opacity: 0.8; line-height: 1.5; }
  @media(max-width:768px){.why-inner{grid-template-columns:1fr;}.why-grid{grid-template-columns:1fr 1fr;}}

  /* Testimonials */
  .testimonials-section {
    padding: 80px 40px;
    background: white;
    text-align: center;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
  }
  .testimonial-card {
    background: var(--purple-light);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition: transform 0.2s;
  }
  .testimonial-card:nth-child(2) { background: #FFF7ED; }
  .testimonial-card:nth-child(3) { background: #F0FDF4; }
  .testimonial-card:hover { transform: translateY(-4px); }
  .testimonial-card .quote { font-size: 48px; color: var(--purple); line-height: 1; font-family: Georgia, serif; margin-bottom: 8px; opacity: 0.4; }
  .testimonial-card p { font-size: 15px; color: var(--dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: white;
    background: var(--purple);
    flex-shrink: 0;
  }
  .testimonial-card:nth-child(2) .author-avatar { background: var(--orange); }
  .testimonial-card:nth-child(3) .author-avatar { background: var(--green); }
  .author-name { font-weight: 800; font-size: 14px; }
  .author-role { font-size: 12px; color: var(--gray); }

  /* CTA Banner */
  .cta-section {
    background: var(--orange);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '🏀';
    position: absolute;
    font-size: 180px;
    opacity: 0.08;
    top: -20px;
    left: -20px;
  }
  .cta-section::after {
    content: '🏆';
    position: absolute;
    font-size: 180px;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
  }
  .cta-section h2 { font-size: clamp(28px,4vw,52px); color: white; margin-bottom: 16px; }
  .cta-section p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 500px; margin: 0 auto 36px; }
  .btn-cta-white {
    background: white;
    color: var(--orange);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 19px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--purple);
    font-family: 'Fredoka One', cursive;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-cta-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--purple); }

  /* ══════════════════════════════════════════════ */
  /*  ABOUT PAGE                                    */
  /* ══════════════════════════════════════════════ */
  .about-hero {
    background: var(--purple);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .about-hero h1 { color: white; font-size: clamp(32px,5vw,60px); margin-bottom: 16px; }
  .about-hero p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 560px; margin: 0 auto; }

  .about-story {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-story-img {
    background: var(--purple-light);
    border-radius: 32px;
    height: 360px;
    display: block;
    border: 4px solid var(--purple);
    box-shadow: 8px 8px 0 var(--orange);
    position: relative;
    overflow: hidden;
  }
  .about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-story-img::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: var(--orange);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -40px; right: -40px;
  }
  @media(max-width:768px){.about-story{grid-template-columns:1fr;}}

  .coaches-section {
    background: var(--light-bg);
    padding: 80px 40px;
    text-align: center;
  }
  .coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 0;
  }
  .coach-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 3px solid var(--purple-light);
    transition: all 0.25s;
  }
  .coach-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(124,58,237,0.15); border-color: var(--purple); }
  .coach-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
    border: 4px solid var(--orange);
  }
  .coach-card:nth-child(2) .coach-avatar { background: var(--orange); border-color: var(--purple); }
  .coach-card:nth-child(3) .coach-avatar { background: var(--green); border-color: var(--orange); }
  .coach-card:nth-child(4) .coach-avatar { background: var(--pink); border-color: var(--purple); }
  .coach-card h3 { font-size: 20px; margin-bottom: 4px; }
  .coach-card .role { font-size: 13px; color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
  .coach-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

  .values-section {
    padding: 80px 40px;
    text-align: center;
    background: white;
  }
  .values-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 360px) minmax(220px, 1fr);
    gap: 26px;
    align-items: center;
    max-width: 1180px;
    margin: 48px auto 0;
  }
  .values-column {
    display: grid;
    gap: 18px;
  }
  .values-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
  }
  .values-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 42px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,233,254,0.95) 0%, rgba(255,247,237,0.88) 62%, rgba(255,255,255,0) 100%);
  }
  .values-logo-wrap::after {
    content: '';
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 2px dashed rgba(124,58,237,0.16);
  }
  .values-logo {
    position: relative;
    z-index: 1;
    width: min(100%, 320px);
    filter: drop-shadow(0 18px 36px rgba(124,58,237,0.18));
  }
  .value-card {
    background: var(--purple-light);
    border-radius: 24px;
    padding: 26px 22px;
    text-align: center;
    transition: transform 0.2s;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .value-card:nth-child(even) { background: #FFF7ED; }
  .value-card:hover { transform: scale(1.04); }
  .value-card .icon {
    font-size: 34px;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    color: var(--purple-dark);
    box-shadow: inset 0 0 0 1px rgba(124,58,237,0.08);
  }
  .value-card h3 { font-size: 19px; color: var(--dark); margin-bottom: 8px; }
  .value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
  @media(max-width:980px){
    .values-grid {
      grid-template-columns: 1fr;
      gap: 22px;
      max-width: 760px;
    }
    .values-logo-wrap {
      min-height: 300px;
      order: -1;
    }
    .values-logo {
      width: min(100%, 240px);
    }
  }

  /* ══════════════════════════════════════════════ */
  /*  REGISTER PAGE                                 */
  /* ══════════════════════════════════════════════ */
  .register-hero {
    background: var(--orange);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .register-hero h1 { color: white; font-size: clamp(32px,5vw,60px); margin-bottom: 12px; }
  .register-hero p { color: rgba(255,255,255,0.9); font-size: 18px; }
  .register-hero::before { content: '🏀'; position: absolute; font-size: 160px; opacity: 0.1; top: -10px; right: 60px; }

  .register-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .register-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
    gap: 36px;
    align-items: start;
  }
  .register-copy {
    background: white;
    border-radius: 32px;
    padding: 40px 34px;
    border: 3px solid var(--orange-light);
    box-shadow: 0 20px 60px rgba(249,115,22,0.08);
  }
  .register-copy h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
    margin-bottom: 12px;
  }
  .register-copy .intro {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 18px;
  }
  .register-copy .tagline {
    font-size: 19px;
    line-height: 1.75;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
  }
  .register-feature-list,
  .register-program-list,
  .register-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .register-feature-list {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
  }
  .register-feature-list li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray);
  }
  .register-feature-list strong,
  .register-detail-list strong {
    color: var(--dark);
  }
  .register-subtitle {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .register-program-list {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
  }
  .register-program-list li {
    background: var(--purple-light);
    border-radius: 20px;
    padding: 16px 18px;
  }
  .register-program-list span {
    display: block;
  }
  .register-program-list .age {
    font-size: 13px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }
  .register-program-list .name {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
  }
  .register-detail-list {
    display: grid;
    gap: 12px;
  }
  .register-detail-list li {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(124,58,237,0.12);
  }
  .register-form-wrap {
    position: sticky;
    top: 110px;
  }

  .form-card {
    background: white;
    border-radius: 32px;
    padding: 48px 40px;
    border: 3px solid var(--purple-light);
    box-shadow: 0 20px 60px rgba(124,58,237,0.1);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  @media(max-width:560px){.form-row{grid-template-columns:1fr;}}

  .form-group {
    margin-bottom: 20px;
  }
  .form-row .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    display: block;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
  }
  .form-row .form-group label {
    min-height: 48px;
    display: flex;
    align-items: flex-start;
  }
  @media(max-width:560px){
    .form-row .form-group label {
      min-height: 0;
      display: block;
    }
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2.5px solid var(--purple-light);
    border-radius: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: border-color 0.2s;
    outline: none;
    background: white;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    padding: 16px;
    font-size: 19px;
    border-radius: 50px;
    border: none;
    background: var(--purple);
    color: white;
    cursor: pointer;
    font-family: 'Fredoka One', cursive;
    box-shadow: 4px 4px 0 var(--orange);
    transition: all 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--orange); }
  .form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: 2px 2px 0 rgba(30,27,46,0.18);
  }

  .programs-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
  }
  .program-pick {
    border: 2.5px solid var(--purple-light);
    border-radius: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
  }
  .program-pick:hover, .program-pick.selected {
    border-color: var(--purple);
    background: var(--purple-light);
    color: var(--purple);
  }
  .program-pick .pick-emoji { font-size: 22px; }
  @media(max-width:980px){
    .register-layout {
      grid-template-columns: 1fr;
    }
    .register-form-wrap {
      position: static;
    }
  }

  .success-msg {
    display: none;
    background: #F0FDF4;
    border: 2px solid var(--green);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    color: #166534;
    font-weight: 700;
    margin-top: 20px;
    font-size: 16px;
  }
  .success-msg.show { display: block; }
  .error-msg {
    display: none;
    margin-top: 14px;
    background: #FEF2F2;
    border: 2px solid #FCA5A5;
    border-radius: 16px;
    color: #991B1B;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
  }
  .error-msg.show { display: block; }

  /* ══════════════════════════════════════════════ */
  /*  FRANCHISE PAGE                                */
  /* ══════════════════════════════════════════════ */
  .franchise-hero {
    background: var(--dark);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .franchise-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: var(--purple);
    border-radius: 50%;
    top: -150px; right: -100px;
    opacity: 0.3;
  }
  .franchise-hero h1 { color: white; font-size: clamp(32px,5vw,60px); margin-bottom: 12px; position: relative; }
  .franchise-hero h1 span { color: var(--orange); }
  .franchise-hero p { color: rgba(255,255,255,0.8); font-size: 18px; position: relative; }

  .franchise-why {
    padding: 80px 40px;
    text-align: center;
    background: var(--light-bg);
  }
  .franchise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 48px auto 0;
  }
  .franchise-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.25s;
  }
  .franchise-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(249,115,22,0.15); }
  .franchise-card .icon { font-size: 48px; margin-bottom: 16px; display: block; }
  .franchise-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--dark); }
  .franchise-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

  .investment-section {
    background: var(--purple);
    padding: 80px 40px;
    text-align: center;
  }
  .investment-section h2 { color: white; font-size: clamp(28px,4vw,46px); margin-bottom: 12px; }
  .investment-section > p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 520px; margin: 0 auto 48px; }
  .investment-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  .tier-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 36px 24px;
    color: white;
    transition: all 0.2s;
    position: relative;
  }
  .tier-card.featured {
    background: white;
    color: var(--dark);
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange);
  }
  .tier-card .best-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .tier-name { font-family: 'Fredoka One', cursive; font-size: 22px; margin-bottom: 8px; }
  .tier-price { font-family: 'Fredoka One', cursive; font-size: 42px; line-height: 1; margin-bottom: 4px; color: var(--orange); }
  .tier-card.featured .tier-price { color: var(--purple); }
  .tier-price-label { font-size: 13px; opacity: 0.7; margin-bottom: 20px; }
  .tier-features { list-style: none; text-align: left; }
  .tier-features li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tier-card.featured .tier-features li { border-color: var(--purple-light); }
  .tier-features li::before { content: '✓ '; color: var(--green); font-weight: 900; }

  .franchise-form-section {
    padding: 80px 40px;
    max-width: 700px;
    margin: 0 auto;
  }
  .franchise-intro {
    padding: 80px 40px;
    background: var(--light-bg);
  }
  .franchise-intro-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
    gap: 36px;
    align-items: start;
  }
  .franchise-copy-card,
  .franchise-gallery {
    background: white;
    border-radius: 28px;
    border: 3px solid var(--purple-light);
    box-shadow: 0 20px 60px rgba(124,58,237,0.08);
  }
  .franchise-copy-card {
    padding: 40px 36px;
  }
  .franchise-copy-card h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .franchise-copy-card p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .franchise-question {
    font-size: 22px;
    color: var(--dark);
    margin: 24px 0 14px;
  }
  .franchise-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 12px;
  }
  .franchise-points li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    padding-left: 18px;
    position: relative;
  }
  .franchise-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 900;
  }
  .franchise-gallery {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .franchise-photo {
    overflow: hidden;
    background: white;
    border: 4px solid white;
    box-shadow: 0 24px 60px rgba(124,58,237,0.12);
  }
  .franchise-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .franchise-gallery-main {
    border-radius: 32px;
    aspect-ratio: 0.9 / 1.05;
  }
  .franchise-photo-small {
    width: min(280px, 72%);
    margin-top: -110px;
    margin-left: 24px;
    border-radius: 26px;
    aspect-ratio: 0.95 / 1;
  }
  .franchise-photo-small img {
    object-position: 28% center;
  }
  .franchise-photo-large {
    border-radius: 34px;
    min-height: 420px;
  }
  .franchise-photo-large img {
    object-position: 52% center;
  }
  .franchise-gallery-caption {
    margin-left: 24px;
    margin-top: -6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
  }
  .franchise-form-section {
    max-width: 860px;
  }
  .franchise-charcount {
    font-size: 12px;
    color: var(--gray);
    text-align: right;
    margin-top: -10px;
    margin-bottom: 18px;
  }
  @media(max-width:980px){
    .franchise-intro-inner {
      grid-template-columns: 1fr;
    }
    .franchise-gallery {
      margin-top: 12px;
    }
  }
  @media(max-width:640px){
    .franchise-photo-large {
      min-height: 300px;
    }
    .franchise-photo-small {
      width: min(220px, 76%);
      margin-top: -72px;
      margin-left: 14px;
    }
    .franchise-gallery-caption {
      margin-left: 14px;
    }
  }

  /* ══════════════════════════════════════════════ */
  /*  FAQ PAGE                                      */
  /* ══════════════════════════════════════════════ */
  .faq-hero {
    background: var(--yellow);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .faq-hero h1 { color: var(--dark); font-size: clamp(32px,5vw,60px); margin-bottom: 12px; }
  .faq-hero p { color: rgba(30,27,46,0.75); font-size: 18px; }

  .faq-section {
    padding: 80px 40px;
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-item {
    border: 2.5px solid var(--purple-light);
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--purple); }
  .faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--dark);
    transition: background 0.2s;
    user-select: none;
  }
  .faq-item.open .faq-question { background: var(--purple-light); color: var(--purple); }
  .faq-chevron {
    font-size: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding: 0 28px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding: 20px 28px 24px; }

  .faq-cta {
    background: var(--purple-light);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 48px;
    border: 3px dashed var(--purple);
  }
  .faq-cta h3 { font-size: 26px; margin-bottom: 10px; color: var(--purple); }
  .faq-cta p { color: var(--gray); font-size: 15px; margin-bottom: 24px; }

  /* ══════════════════════════════════════════════ */
  /*  CONTACT PAGE                                  */
  /* ══════════════════════════════════════════════ */
  .contact-hero {
    background: var(--green);
    padding: 80px 40px;
    text-align: center;
  }
  .contact-hero h1 { color: white; font-size: clamp(32px,5vw,60px); margin-bottom: 12px; }
  .contact-hero p { color: rgba(255,255,255,0.9); font-size: 18px; }

  .contact-section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
  }
  @media(max-width:768px){.contact-section{grid-template-columns:1fr;}}

  .contact-info h2 { font-size: 30px; margin-bottom: 24px; color: var(--dark); }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 20px;
    background: var(--light-bg);
    border: 2px solid var(--purple-light);
    transition: border-color 0.2s;
  }
  .contact-info-item:hover { border-color: var(--purple); }
  .contact-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .contact-info-item:nth-child(2) .contact-icon { background: var(--orange); }
  .contact-info-item:nth-child(3) .contact-icon { background: var(--green); }
  .contact-info-text strong { display: block; font-weight: 800; font-size: 15px; margin-bottom: 4px; }
  .contact-info-text span { font-size: 14px; color: var(--gray); }

  .social-links { display: flex; gap: 12px; margin-top: 28px; }
  .social-btn {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--purple-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; cursor: pointer; transition: all 0.2s;
    text-decoration: none; border: 2px solid var(--purple-light);
  }
  .social-btn:hover { background: var(--purple); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(124,58,237,0.3); }

  /* ══════════════════════════════════════════════ */
  /*  FOOTER                                        */
  /* ══════════════════════════════════════════════ */
  .ticker {
    background: var(--dark);
    color: var(--yellow);
    padding: 14px 0;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Fredoka One', cursive;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .ticker-inner {
    display: inline-block;
    animation: ticker 20s linear infinite;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  footer {
    background: var(--dark);
    padding: 60px 40px 30px;
    color: rgba(255,255,255,0.7);
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.4fr 0.8fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media(max-width:768px){.footer-inner{grid-template-columns:1fr 1fr;}}
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 220px; }
  .footer-col h4 { color: white; font-size: 16px; margin-bottom: 16px; font-family: 'Fredoka One', cursive; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; cursor: pointer; }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-bottom {
    max-width: 1100px;
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center;
  }
  .footer-logo-white { display: flex; align-items: center; gap: 10px; min-height: 156px; }
  .footer-logo-white img { height: 156px; width: auto; display: block; }
  .footer-logo-white .logo-icon { background: var(--purple); box-shadow: 2px 2px 0 var(--orange); }
  .footer-logo-white .logo-text { color: white; }
  .footer-logo-white .logo-text span { color: var(--orange); }

  /* ══════════════════════════════════════════════ */
  /*  MISC HELPERS                                  */
  /* ══════════════════════════════════════════════ */
  .center { text-align: center; }
  .max-w { max-width: 1100px; margin: 0 auto; }
  .mt-4 { margin-top: 16px; }
  .mb-0 { margin-bottom: 0; }

  .sticker {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 900;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--dark);
  }


  /* ─── SLIDESHOW ──────────────────────────────── */
  .slideshow-wrap {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
  }
  .slideshow { position: absolute; inset: 0; }
  .slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .slide.active { opacity: 1; }
  .slide-overlay {
    position: absolute; inset: 0;
    background: rgba(30,27,46,0.50);
    z-index: 1;
  }
  .hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 760px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: clamp(34px, 5.5vw, 68px);
    color: white;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  }
  .hero-content .hero-sub {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 720px;
  }
  .hero-content .hero-btns { justify-content: center; }
  .slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
  }
  .dot.active { background: white; }
  @media(max-width:600px){
    .slideshow-wrap { height: 500px; }
    .hero-content { width: 92%; max-width: 100%; }
    .hero-content {
      padding-top: 20px;
      padding-bottom: 64px;
    }
  }

  @media (max-width: 768px) {
    .top-banner {
      gap: 12px;
      padding: 8px 12px;
      font-size: 12px;
    }
    nav {
      padding: 16px 18px;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .logo {
      margin: 0 auto;
      flex: 0 0 auto;
    }
    .logo img {
      height: 156px;
    }
    .nav-toggle {
      display: inline-flex;
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      margin-left: 0;
      order: 2;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      width: 100%;
      gap: 8px;
      order: 3;
      margin-left: 0;
      padding-top: 10px;
    }
    nav.menu-open .nav-links {
      display: flex;
    }
    .nav-links a {
      font-size: 14px;
      padding: 12px 14px;
      text-align: center;
      display: block;
      width: 100%;
    }
    .hero,
    .programs-section,
    .testimonials-section,
    .cta-section,
    .about-hero,
    .about-story,
    .values-section,
    .register-hero,
    .register-section,
    .franchise-hero,
    .franchise-intro,
    .franchise-form-section,
    .faq-hero,
    .faq-section,
    .contact-hero,
    .contact-section,
    footer {
      padding-left: 20px;
      padding-right: 20px;
    }
    .stats-bar {
      padding-left: 20px;
      padding-right: 20px;
      gap: 18px;
    }
    .section-title {
      font-size: clamp(26px, 7vw, 38px);
    }
    .section-sub,
    .hero-sub,
    .about-hero p,
    .contact-hero p,
    .faq-hero p,
    .register-hero p,
    .franchise-hero p,
    .cta-section p {
      font-size: 16px;
      line-height: 1.65;
    }
    .hero-content h1 {
      font-size: clamp(28px, 8vw, 44px);
      line-height: 1.08;
    }
    .hero-content .hero-sub {
      max-width: 520px;
      margin-bottom: 28px;
      font-size: 16px;
    }
    .hero-content .hero-btns,
    .hero-btns {
      width: 100%;
      justify-content: center;
    }
    .btn-primary,
    .btn-secondary,
    .btn-cta-white,
    .btn-hero-white {
      max-width: 100%;
      white-space: normal;
    }
    .programs-grid,
    .testimonials-grid,
    .values-grid {
      margin-top: 32px;
    }
    .program-card,
    .testimonial-card,
    .value-card {
      border-radius: 22px;
    }
    .about-story {
      gap: 28px;
    }
    .about-story-img {
      height: 300px;
      box-shadow: 6px 6px 0 var(--orange);
    }
    .values-logo-wrap {
      min-height: 250px;
    }
    .register-copy,
    .form-card,
    .franchise-copy-card,
    .faq-cta {
      padding: 28px 22px;
      border-radius: 24px;
    }
    .programs-picker {
      grid-template-columns: 1fr;
    }
    .franchise-copy-card p,
    .franchise-points li,
    .register-detail-list li,
    .register-feature-list li {
      font-size: 15px;
      line-height: 1.65;
    }
    .franchise-photo-large {
      min-height: 320px;
    }
    .faq-question {
      padding: 18px 20px;
      font-size: 15px;
      align-items: flex-start;
    }
    .faq-answer,
    .faq-item.open .faq-answer {
      padding-left: 20px;
      padding-right: 20px;
    }
    .contact-section {
      gap: 28px;
    }
    .contact-info-item {
      padding: 18px;
      margin-bottom: 18px;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 22px;
      text-align: center;
      padding-bottom: 26px;
    }
    .footer-brand,
    .footer-col {
      justify-self: center;
      width: 100%;
      max-width: 340px;
    }
    .footer-brand p {
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-logo-white {
      justify-content: center;
      min-height: auto;
    }
    .footer-col ul li {
      margin-bottom: 8px;
    }
    .footer-bottom {
      margin-top: 20px;
      padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    }
  }

  @media (max-width: 480px) {
    .top-banner {
      font-size: 11px;
      gap: 8px;
    }
    nav {
      padding: 12px 14px;
    }
    .logo img {
      height: 138px;
    }
    .nav-toggle {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      right: 14px;
    }
    footer {
      padding-top: 52px;
      padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    }
    .nav-links a {
      font-size: 13px;
      padding: 11px 12px;
    }
    .slideshow-wrap {
      height: 560px;
    }
    .hero-content h1 {
      font-size: clamp(22px, 9vw, 36px);
      line-height: 1.08;
      margin-bottom: 14px;
    }
    .hero-content .hero-sub {
      font-size: 14px;
      line-height: 1.55;
      max-width: 94%;
      margin-bottom: 24px;
    }
    .hero-content .btn-primary,
    .hero-content .btn-hero-white,
    .hero-content .btn-secondary {
      padding: 13px 26px;
      font-size: 16px;
    }
    .slide-dots {
      bottom: 18px;
    }
    .stats-bar {
      padding-top: 22px;
      padding-bottom: 24px;
    }
    .stat-item {
      width: 100%;
      justify-content: flex-start;
      text-align: left;
    }
    .stat-copy {
      max-width: none;
    }
    .program-card,
    .testimonial-card,
    .value-card,
    .contact-info-item {
      padding-left: 18px;
      padding-right: 18px;
    }
    .about-story-img {
      height: 250px;
    }
    .values-logo {
      width: min(100%, 200px);
    }
    .register-copy h2,
    .franchise-copy-card h2,
    .contact-info h2 {
      font-size: clamp(26px, 8vw, 34px);
    }
    .form-card {
      padding: 24px 18px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 14px;
      font-size: 14px;
    }
    .form-submit {
      font-size: 17px;
    }
    .franchise-photo-small {
      width: min(200px, 78%);
      margin-top: -52px;
      margin-left: 10px;
    }
    .faq-cta {
      padding: 28px 18px;
    }
    .footer-logo-white img {
      height: 140px;
    }
    .footer-bottom {
      font-size: 12px;
      line-height: 1.6;
    }
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--purple-light); }
  ::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }
