
:root{
  --bg:#f7f8f8;
  --paper:#ffffff;
  --ink:#243953;
  --text:#657487;
  --muted:#8b97a5;
  --accent:#ee6557;
  --green:#30ae58;
  --line:#e6e9ec;
  --shadow:0 20px 60px rgba(36,57,83,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,Arial,Helvetica,sans-serif;
}
a{text-decoration:none;color:inherit}
button,input,select{font:inherit}
img{display:block;max-width:100%}

.wrap{width:min(1400px,calc(100% - 40px));margin-inline:auto}

.header{
  width:min(1480px,calc(100% - 32px));
  height:76px;
  margin:14px auto 0;
  padding:0 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:sticky;
  top:12px;
  z-index:50;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(36,57,83,.08);
  border-radius:20px;
  box-shadow:0 12px 35px rgba(36,57,83,.06);
  backdrop-filter:blur(14px);
}
.brand{display:flex;align-items:center;gap:10px}
.logo{
  width:42px;height:42px;
  display:grid;place-items:center;
  border:2px solid var(--ink);
  border-radius:12px;
  font-weight:800;
}
.brand-copy strong{display:block;font-size:14px;letter-spacing:.12em}
.brand-copy small{display:block;font-size:8px;color:var(--muted);letter-spacing:.15em;margin-top:2px}
.nav{display:flex;gap:28px;font-size:13px;color:#5f6f81}
.nav a:hover{color:var(--accent)}
.header-actions{display:flex;align-items:center;gap:14px}
.langs{display:flex;gap:5px}
.langs button{border:0;background:transparent;font-size:10px;color:#667589;border-radius:8px;padding:7px 8px}
.langs .active{background:#d71818;color:#fff}
.whatsapp{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 19px;border-radius:999px;
  background:var(--ink);color:#fff;font-size:12px;font-weight:800
}
.menu{display:none;border:0;background:transparent;color:var(--ink);font-size:24px}
.mobile-nav{display:none}

.hero{padding-top:18px}
.hero-shell{
  position:relative;
  min-height:610px;
  overflow:hidden;
  border-radius:28px;
  background:linear-gradient(135deg,#fff,#eef4f4);
}
.hero-copy{
  position:relative;
  z-index:3;
  width:52%;
  padding:68px 0 120px 54px;
}
.kicker{display:block;font-size:10px;font-weight:800;letter-spacing:.16em;color:var(--accent)}
.kicker.light{color:#ffd0ca}
.hero h1{
  margin:15px 0 22px;
  font-size:clamp(54px,6vw,90px);
  line-height:.98;
  letter-spacing:-.05em;
}
.hero h1 em,.section-head h2 em{font-style:normal;color:var(--accent)}
.hero-copy>p{max-width:580px;color:var(--text);font-size:17px;line-height:1.65}
.hero-buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:27px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid transparent;border-radius:999px;
  padding:14px 22px;font-size:12px;font-weight:800
}
.btn-primary{background:var(--accent);color:white}
.btn-light{background:white;border-color:#d9dee4}
.btn-white{background:#fff;color:var(--ink)}
.hero-location{margin-top:26px;font-size:12px;color:#6d7c8e}
.hero-photo{
  position:absolute;
  right:0;top:0;bottom:0;
  width:58%;
}
.hero-photo:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#f8fbfb 0%,rgba(248,251,251,.7) 18%,transparent 50%);
}
.hero-photo img{width:100%;height:100%;object-fit:cover;object-position:center;image-rendering:auto}
.hero-stats{
  position:absolute;z-index:4;right:30px;bottom:24px;
  display:grid;grid-template-columns:repeat(4,1fr);
  min-width:640px;background:rgba(255,255,255,.96);
  border:1px solid rgba(36,57,83,.08);
  border-radius:18px;overflow:hidden;box-shadow:var(--shadow)
}
.hero-stats div{padding:18px 22px;border-right:1px solid var(--line)}
.hero-stats div:last-child{border-right:0}
.hero-stats strong{display:block;font-size:24px}
.hero-stats span{display:block;margin-top:4px;color:var(--muted);font-size:10px}
.demo-note{margin:8px 5px 0;color:#a0a9b3;font-size:9px}

.benefits{
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:10px;padding-top:14px
}
.benefit{
  display:flex;gap:12px;align-items:flex-start;
  background:var(--paper);border:1px solid var(--line);
  border-radius:18px;padding:18px
}
.benefit-icon{
  flex:0 0 auto;width:36px;height:36px;
  display:grid;place-items:center;border:1px solid #dbe1e6;border-radius:50%
}
.benefit strong{display:block;font-size:12px;line-height:1.35}
.benefit span{display:block;margin-top:4px;color:var(--muted);font-size:10px;line-height:1.5}

.section{padding-top:80px;padding-bottom:20px}
.section-head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:34px}
.section-head h2{
  margin:10px 0 0;
  font-size:clamp(38px,4.4vw,62px);
  line-height:1.03;letter-spacing:-.04em
}
.section-head>p{max-width:420px;color:var(--muted);line-height:1.65}

.programs-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.program-card{
  background:var(--paper);border:1px solid var(--line);
  border-radius:20px;padding:12px;overflow:hidden
}
.program-card img{
  width:100%;height:230px;object-fit:cover;border-radius:14px;
  image-rendering:auto;
}
.age{
  display:block;margin:14px 6px 0;
  color:var(--accent);font-size:9px;font-weight:800;letter-spacing:.12em
}
.program-card h3{margin:6px;font-size:17px}
.program-card p{margin:0 6px 8px;color:var(--muted);font-size:11px;line-height:1.55}

.campus{padding-top:72px}
.campus-card{
  position:relative;min-height:500px;border-radius:28px;overflow:hidden
}
.campus-card>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;image-rendering:auto}
.campus-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(21,37,54,.82),rgba(21,37,54,.25) 58%,rgba(21,37,54,.02))}
.campus-copy{position:relative;z-index:2;max-width:600px;padding:70px 0 70px 56px;color:white}
.campus-copy h2{margin:12px 0 18px;font-size:clamp(44px,5vw,68px);line-height:1.03;letter-spacing:-.04em}
.campus-copy p{color:#dfe6eb;line-height:1.7;max-width:540px}
.campus-copy .btn{margin-top:18px}

.life-grid{
  display:grid;
  grid-template-columns:1.45fr .75fr .75fr;
  grid-template-rows:260px 210px;
  gap:12px
}
.life-card{position:relative;overflow:hidden;border-radius:20px;background:#dfe4e7}
.life-card.large{grid-row:1/3}
.life-card.wide{grid-column:2/4}
.life-card img{width:100%;height:100%;object-fit:cover}
.life-shade{position:absolute;inset:0;background:linear-gradient(transparent 45%,rgba(14,28,42,.7))}
.life-copy{position:absolute;z-index:2;left:20px;right:20px;bottom:18px;color:white}
.life-copy strong{display:block;font-size:17px}
.life-copy span{display:block;margin-top:4px;font-size:10px;opacity:.9}

.why{padding-top:80px}
.why-grid{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;
  align-items:center;background:#fff;border:1px solid var(--line);
  border-radius:26px;padding:20px
}
.why-image{overflow:hidden;border-radius:20px;min-height:420px}
.why-image img{width:100%;height:100%;min-height:420px;object-fit:cover}
.why-copy{padding:28px}
.why-copy h2{font-size:clamp(38px,4vw,56px);line-height:1.05;letter-spacing:-.04em;margin:12px 0 26px}
.why-points{display:grid;gap:18px}
.why-points>div{display:grid;grid-template-columns:42px 1fr;gap:14px;align-items:start;border-top:1px solid var(--line);padding-top:16px}
.why-points span{color:var(--accent);font-size:11px;font-weight:800}
.why-points p{margin:0;color:var(--muted);font-size:13px;line-height:1.55}
.why-points strong{color:var(--ink)}

.admission{
  display:grid;grid-template-columns:1fr .85fr;gap:60px;
  align-items:start;padding-top:85px;padding-bottom:70px
}
.admission-copy h2{font-size:clamp(42px,4.8vw,64px);line-height:1.04;letter-spacing:-.04em;margin:12px 0 18px}
.admission-copy>p{color:var(--muted);line-height:1.7;max-width:620px}
.steps{display:grid;gap:10px;margin-top:28px}
.steps>div{display:flex;gap:12px;align-items:center}
.steps span{width:30px;height:30px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;font-size:10px}
.steps p{margin:0;font-size:13px}
.form{
  display:grid;gap:17px;background:white;border:1px solid var(--line);
  border-radius:22px;padding:28px
}
.form label{display:grid;gap:7px;color:var(--muted);font-size:11px}
.form input,.form select{
  width:100%;padding:12px 0;border:0;border-bottom:1px solid var(--line);
  outline:none;background:transparent;color:var(--ink)
}
.form small{font-size:9px;color:var(--muted)}
.full{width:100%}
.success{display:none;padding:10px;background:#e7f4e9;color:#39794a;border-radius:10px;font-size:11px}

.contacts{
  margin-bottom:45px;padding:30px 32px;
  display:flex;justify-content:space-between;gap:20px;align-items:center;
  background:white;border:1px solid var(--line);border-radius:22px
}
.contacts h2{margin:8px 0}
.contacts p{margin:0;color:var(--muted);font-size:11px}
.large-wa{background:var(--green)}

.footer{
  padding:28px 4vw;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  color:var(--muted);font-size:10px
}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}
.delay-4{transition-delay:.32s}

@media(max-width:1050px){
  .nav,.header-actions{display:none}.menu{display:block}
  .mobile-nav{
    position:fixed;top:98px;left:20px;right:20px;z-index:45;
    padding:18px;flex-direction:column;gap:15px;
    background:white;border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow)
  }
  .mobile-nav.open{display:flex}
  .hero-shell{min-height:760px}
  .hero-copy{width:70%}
  .hero-photo{width:65%}
  .hero-stats{left:28px;right:28px;min-width:0}
  .benefits{grid-template-columns:repeat(3,1fr)}
  .programs-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr}
}
@media(max-width:720px){
  .wrap{width:calc(100% - 20px)}
  .header{width:calc(100% - 20px);height:68px;margin-top:10px;padding:0 15px}
  .mobile-nav{top:86px;left:10px;right:10px}
  .hero{padding-top:10px}
  .hero-shell{min-height:840px;border-radius:22px}
  .hero-copy{width:100%;padding:42px 18px 0}
  .hero h1{font-size:48px}
  .hero-copy>p{font-size:15px}
  .hero-photo{top:auto;bottom:0;width:100%;height:46%}
  .hero-photo:after{background:linear-gradient(180deg,#f5f9f9 0%,rgba(245,249,249,.25) 38%,transparent)}
  .hero-stats{grid-template-columns:1fr 1fr;left:16px;right:16px;bottom:14px}
  .hero-stats div{min-width:0;padding:13px;border-bottom:1px solid var(--line)}
  .benefits{grid-template-columns:1fr;padding-top:12px}
  .section{padding-top:58px}
  .section-head{flex-direction:column;align-items:flex-start}
  .section-head h2{font-size:39px}
  .programs-grid{grid-template-columns:1fr}
  .program-card img{height:250px}
  .campus{padding-top:58px}
  .campus-card{min-height:560px}
  .campus-copy{padding:48px 20px}
  .campus-copy h2{font-size:43px}
  .life-grid{grid-template-columns:1fr;grid-template-rows:none}
  .life-card,.life-card.large,.life-card.wide{grid-column:auto;grid-row:auto;height:240px}
  .why{padding-top:58px}
  .why-grid{padding:10px;gap:15px}
  .why-image,.why-image img{min-height:280px}
  .why-copy{padding:18px 10px}
  .admission{grid-template-columns:1fr;gap:28px;padding-top:58px}
  .contacts{flex-direction:column;align-items:flex-start;margin-bottom:30px}
  .large-wa{width:100%}
  .footer{flex-direction:column;align-items:flex-start}
}
