
:root{
  --deep:#020617;
  --navy:#06152b;
  --royal:#1e3a8a;
  --gold:#f6d365;
  --silver:#dbeafe;
  --light:#f8fafc;
  --white:#ffffff;
}

/* GLOBAL */
.schools-page{
  overflow:hidden;
  background:#f8fafc;
}

.wrap{
  max-width:1350px;
  margin:auto;
}

.section{
  padding:80px 25px;
}

/* HERO */
.hero{
  padding:95px 25px 85px;
  background:
    radial-gradient(circle at top left, rgba(246,211,101,.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 30%),
    linear-gradient(135deg,#020617,#06152b,#0f172a,#1e3a8a);
  color:#fff;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}

.hero h1{
  font-size:58px;
  line-height:1.1;
  margin-bottom:22px;
  font-weight:900;
}

.hero h1 span{
  background:linear-gradient(90deg,#fff,#f6d365,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  font-size:19px;
  line-height:1.8;
  color:#dbeafe;
  max-width:720px;
  margin-bottom:28px;
}

.hero-btn{
  display:inline-block;
  text-decoration:none;
  background:#f6d365;
  color:#06152b;
  padding:16px 28px;
  border-radius:14px;
  font-weight:800;
  transition:.3s;
}

.hero-btn:hover{
  transform:translateY(-4px);
}

.hero-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  padding:30px;
  backdrop-filter:blur(14px);
}

.hero-line{
  background:rgba(255,255,255,.08);
  padding:14px 18px;
  border-radius:14px;
  margin-bottom:12px;
  font-weight:700;
}

/* TITLES */
.title{
  text-align:center;
  margin-bottom:55px;
}

.title h2{
  font-size:42px;
  color:#06152b;
  margin-bottom:10px;
}

.title p{
  color:#475569;
  font-size:18px;
}

/* GRID */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 15px 35px rgba(0,0,0,.06);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:18px;
  background:linear-gradient(135deg,#06152b,#1e3a8a);
  color:#fff;
}

.card h3{
  font-size:24px;
  color:#06152b;
  margin-bottom:12px;
}

.card p{
  color:#475569;
  line-height:1.8;
}

/* STEPS */
.steps{
  background:#fff;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(260px,1fr));
  gap:24px;
  align-items:stretch;
}

.step{
  background:linear-gradient(135deg,#06152b,#1e3a8a);
  color:#fff;
  border-radius:24px;
  padding:40px;
  min-height:340px;

  display:flex;
  flex-direction:column;
}

.number{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#f6d365;
  color:#06152b;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  font-weight:900;
  margin-bottom:22px;
  flex-shrink:0;
}

.step h3{
  font-size:24px;
  line-height:1.35;
  margin-bottom:22px;
  min-height:70px;
}

.step p{
  color:#dbeafe;
  line-height:1.9;
  font-size:17px;
  margin:0;
}

/* Responsive */
@media (max-width:1500px){
  .steps-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:900px){
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .steps-grid{
    grid-template-columns:1fr;
  }
}

/* CTA */
.cta-box{
  background:linear-gradient(135deg,#020617,#06152b,#1e3a8a);
  border-radius:28px;
  padding:70px 40px;
  text-align:center;
  color:#fff;
}

.cta-box h2{
  font-size:46px;
  margin-bottom:18px;
}

.cta-box p{
  color:#dbeafe;
  font-size:20px;
  line-height:1.8;
  max-width:900px;
  margin:0 auto 32px;
}

.cta-box a{
  display:inline-block;
  text-decoration:none;
  background:#f6d365;
  color:#06152b;
  padding:18px 34px;
  border-radius:14px;
  font-weight:800;
  font-size:17px;
  transition:.25s ease;
}

.cta-box a:hover{
  transform:translateY(-3px);
}

/* Responsive */
@media (max-width:1400px){
  .steps-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:900px){
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .steps-grid{
    grid-template-columns:1fr;
  }
}

/* CTA */
.cta-box{
  background:linear-gradient(135deg,#020617,#06152b,#1e3a8a);
  border-radius:28px;
  padding:60px 35px;
  text-align:center;
  color:#fff;
}

.cta-box h2{
  font-size:42px;
  margin-bottom:14px;
}

.cta-box p{
  color:#dbeafe;
  font-size:18px;
  margin-bottom:28px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.cta-box a{
  display:inline-block;
  text-decoration:none;
  background:#f6d365;
  color:#06152b;
  padding:16px 28px;
  border-radius:14px;
  font-weight:800;
  transition:.25s ease;
}

.cta-box a:hover{
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:1100px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .grid-3{
    grid-template-columns:1fr 1fr;
  }

  .steps-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:46px;
  }
}

@media(max-width:700px){

  .hero{
    padding:70px 18px 60px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:17px;
  }

  .title h2,
  .cta-box h2{
    font-size:30px;
  }

  .grid-3,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .hero-btn,
  .cta-box a{
    width:100%;
    text-align:center;
  }
}
