/* ==========================
   BASIS
========================== */

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    line-height:1.6;
  }
  
  .container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
  }
  
  .section-spacing{
    padding:120px 0;
  }
  
  /* ==========================
     HERO
  ========================== */
  
  .junior-hero{
    position:relative;
    height:100vh;
    min-height:850px;
    display:flex;
    align-items:center;
    overflow:hidden;
  }
  
  .junior-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .junior-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.72));
  }
  
  .junior-hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:850px;
  }
  
  .hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    margin-bottom:24px;
    font-size:14px;
    font-weight:700;
  }
  
  .junior-hero h1{
    font-size:clamp(4rem,7vw,7rem);
    line-height:.95;
    letter-spacing:-5px;
    margin-bottom:28px;
  }
  
  .junior-hero p{
    font-size:1.15rem;
    color:rgba(255,255,255,.88);
    max-width:680px;
    margin-bottom:40px;
  }
  
  /* ==========================
     BUTTONS
  ========================== */
  
  .hero-buttons,
  .final-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-secondary-dark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 32px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
  }
  
  .btn-primary{
    background:white;
    color:#111;
  }
  
  .btn-secondary{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.35);
    color:white;
  }
  
  .btn-secondary-dark{
    background:#0f3fae;
    color:white;
  }
  
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-secondary-dark:hover{
    transform:translateY(-3px);
  }
  
  /* ==========================
     TYPO
  ========================== */
  
  .section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#2563eb;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
  }
  
  .section-head{
    text-align:center;
    margin-bottom:70px;
  }
  
  .section-head p{
    max-width:780px;
    margin:14px auto 0;
    color:#666;
  }
  
  h2{
    font-size:clamp(2.8rem,4vw,4.8rem);
    line-height:1.05;
    letter-spacing:-3px;
  }
  
  /* ==========================
     PHILOSOPHY
  ========================== */
  
  .philosophy-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
  }
  
  .philosophy-grid p{
    color:#555;
    margin-bottom:22px;
    font-size:1.05rem;
  }
  
  /* ==========================
     MEANING
  ========================== */
  
  .meaning-section{
    padding:80px 0;
    background:#fafafa;
  }
  
  .meaning-card{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:60px;
    align-items:center;
    background:#0f3fae;
    color:white;
    border-radius:42px;
    padding:60px;
  }
  
  .meaning-card .section-tag{
    color:rgba(255,255,255,.75);
  }
  
  .meaning-card p{
    color:rgba(255,255,255,.88);
    font-size:1.08rem;
  }
  
  /* ==========================
     PATHS
  ========================== */
  
  .paths-section{
    background:#fff;
  }
  
  .path-grid{
    display:grid;
    gap:30px;
  }
  
  .path-card{
    background:#f8f9fc;
    border-radius:36px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(0,0,0,.06);
    transition:.3s ease;
  }
  
  .path-card:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 65px rgba(0,0,0,.08);
  }
  
  .path-card-horizontal{
    display:grid;
    grid-template-columns:1fr 250px;
    gap:34px;
    align-items:stretch;
    padding:36px;
  }
  
  .path-content span{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:#eef4ff;
    color:#0f3fae;
    font-size:.85rem;
    font-weight:800;
    margin-bottom:18px;
  }
  
  .path-content h3{
    font-size:clamp(1.8rem,3vw,2.7rem);
    line-height:1.05;
    letter-spacing:-1.5px;
    margin-bottom:20px;
  }
  
  .path-content p{
    color:#555;
    margin-bottom:18px;
    font-size:1.04rem;
  }
  
  .learning-points{
    margin-top:28px;
    background:white;
    border-radius:24px;
    padding:24px;
  }
  
  .learning-points strong{
    display:block;
    margin-bottom:14px;
    color:#111827;
  }
  
  .learning-points ul{
    margin:0;
    padding:0;
    list-style:none;
  }
  
  .learning-points li{
    position:relative;
    padding-left:28px;
    margin-bottom:10px;
    color:#555;
  }
  
  .learning-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#2563eb;
    font-weight:900;
  }
  
  .path-person{
    background:#eef2f7;
    border-radius:28px;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  
  .path-person img{
    width:100%;
    height:270px;
    object-fit:cover;
    object-position:center top;
    border-radius:22px;
    display:block;
    margin-bottom:14px;
  }
  
  .path-person small{
    color:#666;
    font-size:.85rem;
    line-height:1.4;
  }
  
  /* ==========================
     LEARNING
  ========================== */
  
  .learning-section{
    background:#fafafa;
  }
  
  .learning-steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
  }
  
  .learning-step{
    background:white;
    border-radius:28px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.04);
  }
  
  .learning-step strong{
    display:block;
    font-size:3rem;
    color:#2563eb;
    margin-bottom:14px;
    line-height:1;
  }
  
  .learning-step h3{
    margin-bottom:12px;
  }
  
  .learning-step p{
    color:#666;
  }
  
  /* ==========================
     SKILLS
  ========================== */
  
  .skills-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  
  .skill-card{
    background:#f8f9fc;
    border-radius:30px;
    padding:34px;
  }
  
  .skill-card h3{
    margin-bottom:12px;
  }
  
  .skill-card p{
    color:#666;
  }
  
  /* ==========================
     VOICES
  ========================== */
  
  .voices-section{
    padding:120px 0;
    background:#fff;
  }
  
  .voices-card{
    background:#0f3fae;
    color:white;
    border-radius:42px;
    padding:70px;
  }
  
  .voices-card .section-tag{
    color:rgba(255,255,255,.7);
  }
  
  .voice-list{
    margin-top:42px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  
  .voice-list blockquote{
    background:rgba(255,255,255,.09);
    padding:28px;
    border-radius:24px;
    font-size:1.05rem;
  }
  
  .voice-list span{
    display:block;
    margin-top:16px;
    color:rgba(255,255,255,.72);
    font-size:.95rem;
  }
  
  /* ==========================
     FACTS
  ========================== */
  
  .facts-section{
    background:#fafafa;
  }
  
  .facts-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  
  .fact-card{
    background:white;
    border-radius:30px;
    padding:42px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.04);
  }
  
  .fact-card strong{
    display:block;
    font-size:4rem;
    color:#0f3fae;
    line-height:1;
    margin-bottom:12px;
  }
  
  .fact-card span{
    color:#666;
  }
  
  /* ==========================
     CTA
  ========================== */
  
  .final-cta{
    background:#111827;
    color:white;
    text-align:center;
    padding:120px 0;
  }
  
  .final-cta h2{
    max-width:900px;
    margin:0 auto 18px;
  }
  
  .final-cta p{
    max-width:760px;
    margin:0 auto 32px;
    color:rgba(255,255,255,.75);
  }
  
  /* ==========================
     RESPONSIVE
  ========================== */
  
  @media(max-width:1200px){
    .learning-steps{
      grid-template-columns:repeat(2,1fr);
    }
  
    .facts-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .voice-list{
      grid-template-columns:1fr;
    }
  }
  
  @media(max-width:1000px){
    .philosophy-grid,
    .meaning-card{
      grid-template-columns:1fr;
    }
  
    .skills-grid{
      grid-template-columns:1fr 1fr;
    }
  
    .path-card-horizontal{
      grid-template-columns:1fr;
    }
  
    .path-person{
      max-width:270px;
    }
  }
  
  @media(max-width:700px){
    .section-spacing{
      padding:90px 0;
    }
  
    .junior-hero{
      min-height:760px;
    }
  
    .junior-hero h1{
      letter-spacing:-2px;
    }
  
    .hero-buttons,
    .final-buttons{
      flex-direction:column;
    }
  
    .btn-primary,
    .btn-secondary,
    .btn-secondary-dark{
      width:100%;
    }
  
    .meaning-card,
    .voices-card{
      padding:34px;
    }
  
    .path-card-horizontal{
      padding:26px;
    }
  
    .path-person{
      max-width:100%;
    }
  
    .path-person img{
      height:300px;
    }
  
    .learning-steps,
    .skills-grid,
    .facts-grid{
      grid-template-columns:1fr;
    }
  
    .fact-card strong{
      font-size:3rem;
    }
  }

  /* ==========================
   TEAM VOICES
========================== */

.team-voices-section{
  padding:120px 0;
  background:#fafafa;
}

.team-voices-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px;
}

.team-voices-head h2{
  font-size:clamp(2.8rem,4vw,4.8rem);
  line-height:1.05;
  letter-spacing:-3px;
  margin-bottom:20px;
}

.team-voices-head p{
  color:#666;
  font-size:1.05rem;
}

.team-voices-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.team-voice-card{
  position:relative;
  background:white;
  border-radius:36px;
  padding:44px;
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.voice-mark{
  font-size:6rem;
  line-height:.8;
  color:#0f3fae;
  font-weight:900;
  margin-bottom:12px;
}

.team-voice-card p{
  color:#444;
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:34px;
}

.voice-author{
  border-top:1px solid #eef0f4;
  padding-top:22px;
}

.voice-author strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:4px;
}

.voice-author span{
  color:#666;
  font-size:.95rem;
}

/* MOBILE */

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

@media(max-width:700px){
  .team-voices-section{
    padding:90px 0;
  }

  .team-voice-card{
    padding:32px;
  }

  .voice-mark{
    font-size:4.8rem;
  }
}