:root{
  --blue:#003380;
  --teal:#0EA5A4;
  --amber:#F59E0B;
  --bg:#F8FAFC;
  --text:#111827;
  --muted:#64748B;
  --white:#ffffff;
  --navy:#00164B;
}

*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{
  max-width:100%;
}

/* NAVBAR */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(148,163,184,.22);
  box-shadow:0 18px 50px rgba(15,23,42,.08);
}

.navbar{
  width:min(92%,1180px);
  margin:auto;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  color:var(--navy);
  font-family:'Playfair Display',serif;
  font-size:35px;
  font-weight:800;
  letter-spacing:4.1px;
  text-decoration:none;
  white-space:nowrap;
}

.logo img{
  width:90px;
  height:90px;
  object-fit:contain;
}

.logo span{
  color:var(--amber);
  font-family:inherit;
}

.nav-toggle{
  position:fixed;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(226,232,240,.9);
  border-radius:12px;
  background:#fff;
  color:var(--navy);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
  position:relative;
  z-index:1001;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after{
  content:"";
  width:22px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  display:block;
  transition:transform .25s ease, opacity .25s ease;
}

.menu-toggle{
  flex-direction:column;
  gap:5px;
}

.nav-backdrop{
  display:none;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  list-style:none;
  padding:7px;
  border:1px solid rgba(226,232,240,.88);
  border-radius:999px;
  background:rgba(255,255,255,.62);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}

.nav-links a{
  position:relative;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  letter-spacing:.2px;
  padding:10px 16px;
  border-radius:999px;
  transition:color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.nav-links a:hover{
  color:var(--blue);
  background:#F8FAFC;
  box-shadow:0 8px 22px rgba(15,23,42,.07);
}

.nav-btn{
  background:linear-gradient(135deg,var(--amber),#F97316);
  color:white !important;
  padding:11px 22px !important;
  box-shadow:0 14px 26px rgba(245,158,11,.28);
}

.nav-btn:hover{
  background:linear-gradient(135deg,var(--amber),#F97316) !important;
  color:white !important;
  transform:translateY(-1px);
  box-shadow:0 18px 34px rgba(245,158,11,.34) !important;
}

/* HERO SLIDER */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  animation:slider 15s infinite;
  background-size:cover, cover;
  background-position:center, center;
  background-repeat:no-repeat;
  background-color:#07111F;
}

.slide:nth-child(1){
  background-image:
  linear-gradient(120deg,rgba(17,24,39,.78),rgba(29,78,216,.72)),
  url('/assets/img/lyj2.jpg');
}

.slide:nth-child(2){
  animation-delay:5s;
  background-image:
  linear-gradient(120deg,rgba(17,24,39,.78),rgba(14,165,164,.72)),
  url('/assets/img/lyj3.jpg');
}

.slide:nth-child(3){
  animation-delay:10s;
  background-image:
  linear-gradient(120deg,rgba(17,24,39,.82),rgba(245,158,11,.65)),
  url('/assets/img/lyj4.avif');
}

@keyframes slider{
  0%{opacity:0;}
  8%{opacity:1;}
  32%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:0;}
}

.hero-content{
  position:relative;
  z-index:5;
  height:100%;
  width:90%;
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:white;
  max-width:1100px;
}

.slide:nth-child(2) .hero-content{
  align-items:flex-start;
}

.slide:nth-child(3) .hero-content{
  align-items:flex-start;
}

.hero-content span{
  background:rgba(245,158,11,.2);
  color:#fff;
  border:1px solid var(--amber);
  padding:8px 18px;
  border-radius:30px;
  width:fit-content;
  max-width:100%;
  margin-bottom:20px;
  font-weight:600;
}

.hero-content h1,
.section-title h2,
.about-text h2,
.pitch-box h2,
.contact h2{
  font-family:'Playfair Display',serif;
  letter-spacing:.1px;
}

.hero-content h1{
  font-size:58px;
  line-height:1.15;
  max-width:800px;
  margin-bottom:20px;
}

.hero-content h1 b{
  color:var(--amber);
}

.hero-content p{
  font-size:18px;
  line-height:1.8;
  max-width:700px;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;
  padding:14px 32px;
  border-radius:35px;
  font-weight:700;
}

.btn-primary{
  background:var(--amber);
  color:white;
}

.btn-outline{
  border:1px solid white;
  color:white;
}

/* COMMON */
section{
  padding:90px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:55px;
}

.section-title span{
  color:var(--teal);
  font-weight:700;
}

.section-title .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--amber);
  font-size:13px;
  font-weight:800;
  letter-spacing:1.6px;
  text-transform:uppercase;
}

.section-title .eyebrow::before,
.section-title .eyebrow::after{
  content:"";
  width:34px;
  height:2px;
  border-radius:999px;
  background:var(--amber);
}

.section-title h2{
  font-size:38px;
  color:var(--text);
  margin-top:8px;
}

.course-title h2{
  font-size:46px;
  color:var(--navy);
  margin-top:12px;
}

.course-title h2 b{
  color:var(--blue);
  font-family:inherit;
}

.course-title p{
  max-width:650px;
  margin:14px auto 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.8;
}

.section-title p{
  color:#555;
  margin-top:12px;
}

/* ABOUT */
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.about-img{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-img img{
  width:100%;
  height:430px;
  object-fit:cover;
  display:block;
}

.about-text h2{
  font-size:38px;
  color:var(--blue);
  margin-bottom:18px;
}

.about-text p{
  line-height:1.8;
  color:#444;
  margin-bottom:15px;
}

/* VISION MISSION */
.vm-section{
  background:white;
}

.vm-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.vm-card{
  overflow:hidden;
  border-radius:26px;
  color:white;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.vm-card:first-child{
  background:linear-gradient(135deg,var(--blue),#2563eb);
}

.vm-card:last-child{
  background:linear-gradient(135deg,var(--teal),#14b8a6);
}

.vm-img{
  height:300px;
  overflow:hidden;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.vm-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  filter:saturate(1.08);
}

.vm-content{
  padding:34px;
}

.vm-card h3{
  font-size:30px;
  margin-bottom:15px;
}

.vm-card p{
  line-height:1.8;
}

.vm-card ul{
  list-style:none;
  margin-top:20px;
  display:grid;
  gap:10px;
}

.vm-card li{
  position:relative;
  padding-left:24px;
  line-height:1.6;
  font-weight:600;
}

.vm-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 0 5px rgba(245,158,11,.18);
}

.vm-card:last-child li::before{
  background:white;
  box-shadow:0 0 0 5px rgba(255,255,255,.18);
}

/* COURSE CARDS */
.course-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.course-card{
  position:relative;
  background:white;
  overflow:hidden;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  border:1px solid rgba(226,232,240,.9);
  transition:.3s;
}

.course-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:#F4B400;
  z-index:2;
  transition:background .3s ease;
}

.course-card:hover{
  transform:translateY(-8px);
  border-color:rgba(244,180,0,.42);
  box-shadow:0 26px 60px rgba(15,23,42,.14);
}

.course-card:hover::before{
  background:linear-gradient(90deg,#F4B400,#F59E0B,var(--teal));
}

.course-img{
  position:relative;
  height:190px;
  background:#EFF6FF;
  overflow:hidden;
}

.course-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,23,42,0),rgba(15,23,42,.12));
  pointer-events:none;
}

.course-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.course-card:hover .course-img img{
  transform:scale(1.05);
}

.course-content{
  padding:24px;
}

.course-card .icon{
  display:none;
}

.course-card h3{
  font-size:20px;
  color:var(--text);
  margin-bottom:10px;
  padding:22px 24px 0;
}

.course-card p{
  color:#555;
  font-size:14px;
  line-height:1.7;
  padding:0 24px 24px;
}

/* BENEFITS */
.benefits{
  background:linear-gradient(180deg,#F8FAFC 0%,#FFFFFF 100%);
}

.benefit-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:32px;
  align-items:stretch;
}

.benefit-grid{
  display:none;
}

.benefit-list,
.duration-panel{
  background:white;
  border-radius:26px;
  border:1px solid rgba(226,232,240,.9);
  box-shadow:0 16px 42px rgba(15,23,42,.08);
}

.benefit-list{
  padding:34px;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.benefit-point{
  position:relative;
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:24px;
  border-radius:22px;
  background:white;
  border:1px solid rgba(226,232,240,.9);
  box-shadow:0 14px 34px rgba(15,23,42,.07);
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.benefit-point::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:#F4B400;
  transition:background .28s ease;
}

.benefit-point:hover{
  transform:translateY(-5px);
  border-color:rgba(244,180,0,.36);
  box-shadow:0 22px 48px rgba(15,23,42,.11);
}

.benefit-point:hover::before{
  background:linear-gradient(90deg,#F4B400,#F59E0B,var(--teal));
}

.benefit-icon,
.duration-icon{
  flex:0 0 auto;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg,#FFF7ED,#FEF3C7);
  color:#B45309;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.icon-svg{
  width:24px;
  height:24px;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

.benefit-point h3,
.duration-item h3{
  color:var(--navy);
  font-size:19px;
  line-height:1.3;
  margin-bottom:6px;
}

.benefit-point p,
.duration-item p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.duration-panel{
  position:relative;
  overflow:hidden;
  padding:34px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,251,235,.92)),
    radial-gradient(circle at top right,rgba(244,180,0,.22),transparent 38%);
  color:var(--navy);
}

.duration-panel::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#F4B400,#F59E0B,var(--teal));
  pointer-events:none;
}

.duration-panel > *{
  position:relative;
  z-index:1;
}

.duration-panel span{
  color:#B45309;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-size:13px;
}

.duration-panel h2{
  color:var(--navy);
  font-size:34px;
  margin:10px 0 8px;
}

.duration-panel > p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:24px;
}

.duration-list{
  display:grid;
  gap:16px;
}

.duration-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:20px;
  border-radius:20px;
  background:white;
  border:1px solid rgba(226,232,240,.9);
  box-shadow:0 16px 36px rgba(15,23,42,.08);
}

.duration-icon{
  background:linear-gradient(135deg,#F59E0B,#D97706);
  color:white;
}

.duration-item h3{
  color:var(--navy);
}

.duration-item p{
  color:var(--muted);
}

/* PITCH */
.pitch{
  background:white;
}

.pitch-box{
  background:linear-gradient(135deg,#EFF6FF,#ECFEFF);
  border-left:7px solid var(--amber);
  padding:45px;
  border-radius:28px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.pitch-box h2{
  color:var(--blue);
  font-size:34px;
  margin-bottom:15px;
}

.pitch-box p{
  line-height:1.8;
  color:#333;
  font-size:17px;
}

/* FAQ */
.faq{
  background:#F8FAFC;
}

.faq-wrap{
  max-width:980px;
  margin:auto;
}

.faq-list{
  display:grid;
  gap:16px;
}

.faq-item{
  background:white;
  border:1px solid rgba(226,232,240,.9);
  border-radius:20px;
  box-shadow:0 14px 36px rgba(15,23,42,.07);
  overflow:hidden;
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:22px 26px;
  color:var(--navy);
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#FFF7ED;
  color:var(--amber);
  font-size:22px;
  flex:0 0 auto;
}

.faq-item[open] summary::after{
  content:"-";
}

.faq-item p{
  padding:0 26px 24px;
  color:var(--muted);
  line-height:1.8;
}

/* CONTACT CTA */
.contact{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left,rgba(245,158,11,.18),transparent 32%),
    linear-gradient(135deg,#0F172A,#111827);
  color:white;
}

.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}

.contact-content h2{
  font-size:46px;
  margin:20px 0 14px;
}

.contact-content{
  padding-top:42px;
}

.contact-content p{
  color:rgba(255,255,255,.78);
  line-height:1.8;
  font-size:17px;
  margin-bottom:26px;
}

.contact .seat{
  display:inline-block;
  background:var(--amber);
  padding:10px 22px;
  border-radius:30px;
  font-weight:800;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.contact-actions a{
  display:inline-block;
  text-decoration:none;
  background:var(--teal);
  color:white;
  padding:15px 36px;
  border-radius:35px;
  font-weight:700;
}

.contact-actions .outline-call{
  background:transparent;
  border:1px solid rgba(255,255,255,.32);
}

.contact-info-list{
  display:grid;
  gap:14px;
  margin-top:34px;
}

.contact-info{
  display:flex;
  gap:13px;
  align-items:flex-start;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.contact-info .info-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  color:var(--amber);
  background:rgba(245,158,11,.14);
  flex:0 0 auto;
}

.contact-info h4{
  color:white;
  font-size:15px;
  margin-bottom:3px;
}

.contact-info p,
.contact-info a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  line-height:1.5;
  font-size:14px;
  margin:0;
}

.social-row{
  display:flex;
  gap:12px;
  margin-top:28px;
}

.social-link{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:var(--amber);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  text-decoration:none;
  transition:transform .25s ease, background .25s ease, color .25s ease;
}

.social-link:hover{
  transform:translateY(-3px);
  color:white;
}

.social-link.instagram{
  color:white;
  background:linear-gradient(135deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}

.social-link.x-twitter{
  color:white;
  background:#050505;
}

.social-link.youtube{
  color:white;
  background:#FF0000;
}

.social-link.facebook{
  color:white;
  background:#1877F2;
}

.social-link.youtube .play-shape,
.social-link.facebook .brand-fill{
  fill:currentColor;
  stroke:none;
}

.contact-form{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,250,252,.98));
  color:var(--text);
  padding:38px;
  border-radius:30px;
  border:1px solid rgba(226,232,240,.92);
  box-shadow:0 28px 70px rgba(0,0,0,.28);
}

.contact-form::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,var(--amber),#F97316,var(--teal));
}

.contact-form h3{
  color:var(--navy);
  font-size:30px;
  margin-bottom:8px;
}

.contact-form p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:22px;
}

.form-group{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}

.form-group label{
  color:var(--navy);
  font-size:14px;
  font-weight:700;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #E2E8F0;
  border-radius:14px;
  padding:15px 16px;
  font:inherit;
  color:var(--text);
  background:white;
  outline:none;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.form-group textarea{
  min-height:110px;
  resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--amber);
  box-shadow:0 0 0 4px rgba(245,158,11,.14);
  background:white;
}

.form-submit{
  width:100%;
  border:0;
  border-radius:16px;
  padding:15px 20px;
  background:linear-gradient(135deg,var(--amber),#F97316);
  color:white;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(245,158,11,.28);
  transition:transform .25s ease, box-shadow .25s ease;
}

.form-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(245,158,11,.34);
}

/* FOOTER */
footer{
  background:linear-gradient(135deg,#020617,#0F172A);
  color:white;
  padding:60px 8% 22px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:36px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-brand .footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.footer-logo img{
  width:70px;
  height:70px;
  object-fit:contain;
  background:#fff;
  padding:0px;
  border-radius:8px;
}

.footer-logo strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:21px;
  color:white;
}

.footer-logo span,
footer h3{
  color:var(--amber);
}

.footer-brand p,
.footer-col p,
.footer-bottom{
  color:rgba(255,255,255,.68);
  line-height:1.8;
}

.footer-col h4{
  color:white;
  font-size:18px;
  margin-bottom:16px;
}

.footer-col ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.footer-col a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  transition:color .25s ease;
}

.footer-col a:hover{
  color:var(--amber);
}

.footer-contact-list{
  display:grid;
  gap:12px;
}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,.72);
  line-height:1.6;
}

.footer-contact-item svg{
  width:18px;
  height:18px;
  margin-top:4px;
  color:var(--amber);
  flex:0 0 auto;
}

.footer-contact-item a{
  color:inherit;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-top:20px;
  font-size:14px;
}

.footer-bottom b{
  color:var(--amber);
}

/* RESPONSIVE */
@media(max-width:1180px){
  .navbar{
    width:min(94%,940px);
    min-height:78px;
    gap:16px;
  }

  .logo{
    min-width:0;
    font-size:24px;
    letter-spacing:2px;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .logo img{
    width:62px;
    height:62px;
    flex:0 0 auto;
  }

  .menu-toggle{
    display:flex;
    flex:0 0 auto;
  }

  .nav-toggle:focus-visible + .menu-toggle{
    outline:3px solid rgba(29,78,216,.28);
    outline-offset:3px;
  }

  .nav-toggle:checked + .menu-toggle span{
    opacity:0;
  }

  .nav-toggle:checked + .menu-toggle::before{
    transform:translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-toggle::after{
    transform:translateY(-7px) rotate(-45deg);
  }

  .nav-backdrop{
    position:fixed;
    inset:0;
    display:block;
    background:rgba(15,23,42,.38);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
    z-index:998;
  }

  .nav-links{
    position:fixed;
    top:0;
    right:0;
    width:min(82vw,320px);
    height:100vh;
    height:100dvh;
    z-index:999;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:10px;
    padding:94px 22px 24px;
    border:0;
    border-radius:0;
    background:#fff;
    box-shadow:-24px 0 60px rgba(15,23,42,.2);
    transform:translateX(105%);
    transition:transform .28s ease;
  }

  .nav-links::before{
    content:"Menu";
    color:var(--navy);
    font-family:'Playfair Display',serif;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
  }

  .nav-links a{
    width:100%;
    justify-content:flex-start;
    min-height:48px;
    padding:14px 16px;
    font-size:15px;
    border-radius:14px;
  }

  .nav-btn{
    justify-content:center !important;
    margin-top:6px;
  }

  .nav-toggle:checked ~ .nav-backdrop{
    opacity:1;
    pointer-events:auto;
  }

  .nav-toggle:checked ~ .nav-links{
    transform:translateX(0);
  }

  .course-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .benefit-layout{
    grid-template-columns:1fr;
  }

  .about,
  .vm-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:34px 28px;
    align-items:start;
  }

  .footer-brand{
    grid-column:1 / -1;
  }
}

@media(max-width:768px){
  .navbar{
    min-height:68px;
    padding:6px 0;
    flex-direction:row;
    gap:12px;
  }

  .logo{
    max-width:calc(100vw - 120px);
    font-size:17px;
    letter-spacing:.8px;
  }

  .logo img{
    width:48px;
    height:48px;
  }

  .menu-toggle{
    width:42px;
    height:42px;
  }

  .slide{
    background-position:center, center;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-content p{
    font-size:16px;
  }

  section{
    padding:65px 5%;
  }

  .course-grid,
  .benefit-layout{
    grid-template-columns:1fr;
  }

  .benefit-list,
  .duration-panel{
    padding:24px;
  }

  .contact-wrap{
    grid-template-columns:1fr;
    gap:28px;
  }

  .contact-content h2{
    font-size:34px;
  }

  .contact-content{
    padding-top:0;
  }

  .contact-info-list{
    grid-template-columns:1fr;
  }

  .contact-form{
    padding:24px;
  }

  .footer-bottom{
    justify-content:space-between;
    align-items:center;
    flex-direction:row;
    flex-wrap:wrap;
    gap:12px;
    font-size:13px;
  }

  .footer-bottom p{
    min-width:0;
  }

  .footer-grid{
    gap:30px 18px;
  }

  .footer-col{
    min-width:0;
    text-align:left;
  }

  .footer-col h4{
    font-size:17px;
  }

  .footer-contact-item{
    align-items:flex-start;
    gap:8px;
    font-size:14px;
    text-align:left;
  }

  .footer-contact-item a,
  .footer-contact-item span{
    min-width:0;
    overflow-wrap:break-word;
  }

  .benefit-point,
  .duration-item{
    padding:16px;
  }

  .course-img{
    height:220px;
  }

  .vm-img{
    height:240px;
  }

  .section-title h2{
    font-size:30px;
  }

  .course-title h2{
    font-size:34px;
  }
}

@media(max-width:520px){
  .navbar{
    width:92%;
  }

  .logo{
    gap:8px;
    font-size:0;
    letter-spacing:0;
  }

  .logo::after{
    content:"LEARN YOUR JOB";
    font-family:'Playfair Display',serif;
    font-size:17px;
    font-weight:800;
    letter-spacing:.7px;
  }

  .logo img{
    width:40px;
    height:40px;
  }

  .nav-links{
    width:min(86vw,300px);
    padding:86px 18px 22px;
  }

  .footer-grid{
    grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
    gap:28px 12px;
  }

  .footer-brand{
    grid-column:1 / -1;
  }

  .footer-contact-item svg{
    width:16px;
    height:16px;
    margin-top:3px;
  }

  .footer-col ul,
  .footer-contact-list{
    gap:7px;
  }

  .footer-col a,
  .footer-col p,
  .footer-contact-item{
    font-size:13px;
  }

  .footer-bottom{
    gap:6px;
    font-size:10px;
  }
}