/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box;}
html,body{width:100%;max-width:100%;overflow-x:hidden;}
body{font-family:'Segoe UI', Arial, sans-serif;background:#eef2ff;color:#111;}
a{text-decoration:none;border:none;outline:none;color:inherit;}
a:focus,a:active{outline:none;border:none;}

/* =================================================
   RESPONSIVE GLOBAL – TOUS APPAREILS
================================================= */
@media (max-width:1200px){
  .hero-container,.features-container,.about-container,.categories-container,
  .courses-container,.cta-container,.testimonial-wrapper,.team-container,
  .blog-container,.footer-container,.contact-container{
    padding-left:24px;padding-right:24px;
  }
  h1{font-size:48px;}
  h2{font-size:38px;}
}

@media (max-width:992px){
  .hero-container{grid-template-columns:1fr;text-align:center;}
  .hero-image{margin-top:50px;}

  .about-container{grid-template-columns:1fr;text-align:center;}
  .about-image{margin-bottom:50px;}

  .team-grid{grid-template-columns:repeat(2,1fr);}
  .blog-grid{grid-template-columns:repeat(2,1fr);}
  .courses-grid{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:768px){
  h1{font-size:40px;line-height:1.2;}
  .hero-buttons a{margin-bottom:12px;}

  .features-grid{grid-template-columns:repeat(2,1fr);}
  .category-card{min-width:240px;}
  .testimonial-card{min-width:300px;}
}

@media (max-width:576px){
  section{padding:90px 0;}
  h1{font-size:34px;}
  h2{font-size:30px;}
  p{font-size:15px;}

  .features-grid{grid-template-columns:1fr;}
  .courses-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .blog-grid{grid-template-columns:1fr;}

  .countdown{flex-wrap:wrap;}
  .time-box{min-width:90px;}
}

@media (max-width:360px){
  h1{font-size:30px;}
  h2{font-size:26px;}
  .hero-buttons a{width:100%;justify-content:center;}
}

/* =========================================================
   HEADER – Fixed + Blur bleu
========================================================= */
.header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:99999 !important;
  background:linear-gradient(135deg,#03108a,#ad04bd) !important;
  -webkit-backdrop-filter:blur(14px) !important;
  backdrop-filter:blur(14px) !important;
  border-bottom:none !important;
  overflow:visible !important;
}

.header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:rgba(255,255,255,.9);
  z-index:100000;
  pointer-events:none;
}

.header-container{
  max-width:1300px !important;
  margin:0 auto !important;
  padding:12px 24px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  min-height:72px !important;
  gap:26px !important;
}

.header-logo{
  display:inline-flex !important;
  align-items:center !important;
  padding:10px 16px !important;
  background:rgba(255,255,255,.96) !important;
  border-radius:16px !important;
  box-shadow:0 12px 28px rgba(0,0,0,.22) !important;
  border:1px solid rgba(255,255,255,.55) !important;
  transform:translateY(2px) !important;
}
.header-logo img{
  height:64px !important;
  width:auto !important;
  display:block !important;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.25)) !important;
}

.header-nav{
  display:flex !important;
  align-items:center !important;
  gap:28px !important;
  flex:1 !important;
  justify-content:center !important;
}
.header-nav a{
  color:#fff !important;
  font-size:15px !important;
  font-weight:700 !important;
  opacity:.95 !important;
  padding:6px 0 !important;
  position:relative !important;
}
.header-nav a::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:-6px !important;
  width:0 !important;
  height:2px !important;
  background:#ff7a18 !important;
  transition:.25s !important;
}
.header-nav a:hover::after{width:100% !important;}

.header-actions{
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
  justify-content:flex-end !important;
  flex-shrink:0 !important;
}

.header-user{
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  white-space:nowrap !important;
  color:#fff;
  font-weight:800;
}
.header-user .icon{
  width:40px !important;
  height:40px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.28) !important;
  background:rgba(255,255,255,.12) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#fff !important;
}
.header-user span{
  color:#fff !important;
  font-weight:800 !important;
  font-size:14px !important;
}

.btn-header{
  background:#ff7a18 !important;
  color:#fff !important;
  padding:10px 18px !important;
  font-size:14px !important;
  border-radius:12px !important;
  font-weight:900 !important;
  box-shadow:0 10px 22px rgba(0,0,0,.18) !important;
  white-space:nowrap !important;
}

/* ===== HAMBURGER ===== */
.header-burger{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  border-radius:12px;
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.header-burger span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:.25s ease;
}
.header-burger.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.header-burger.is-active span:nth-child(2){
  opacity:0;
}
.header-burger.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu{
  display:none;
  padding:0 18px 16px;
  background:linear-gradient(135deg,#1e1b8f 0%, #7e22ce 100%);
  border-top:1px solid rgba(255,255,255,.10);
}
.mobile-menu.is-open{display:block;}

.mobile-menu-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-menu-nav a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-weight:800;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.mobile-menu-nav a:hover{
  background:rgba(255,255,255,.14);
}
.mobile-menu-nav .mobile-menu-cta{
  background:#ff7a18;
  border-color:#ff7a18;
  color:#fff;
  justify-content:center;
}

@media (max-width:900px){
  .header-container{
    padding:10px 14px !important;
    min-height:64px !important;
    gap:12px !important;
  }

  .header-nav{display:none !important;}
  .header-actions{display:none !important;}
  .header-burger{display:flex;}
  .header-logo{
    padding:6px 12px !important;
    border-radius:12px !important;
  }
  .header-logo img{
    height:48px !important;
    max-height:52px;
    width:auto;
  }
}

/* Evita que o conteúdo fique embaixo do header */
.header-spacer{height:45px;}
@media (max-width:768px){
  .header-spacer{height:-78px;}
}



/* ================= HERO ================= */
.hero{
  min-height:100vh;
  background:linear-gradient(135deg,#03108a,#ad04bd);
  position:relative;
  overflow:hidden;
  color:#fff;
}
.hero::before{
  content:"";
  position:absolute;
  width:700px;height:700px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
  top:-200px;left:-200px;
  pointer-events:none;
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  background:rgba(255,255,255,.06);
  border-radius:50%;
  bottom:-160px;right:-160px;
  pointer-events:none;
  z-index:0;
}
.hero-container{
  max-width:1300px;
  margin:auto;
  padding:170px 32px 120px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:40px;
  position:relative;
  z-index:2;
}
@media (max-width:768px){ .hero-container{padding-top:120px;} }

.hero h1{
  font-size:56px;
  line-height:1.1;
  margin-bottom:22px;
}
.hero p{
  font-size:18px;
  max-width:520px;
  opacity:.95;
}

.hero-buttons{margin-top:36px;margin-bottom:14px;}
.hero-buttons a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:6px;
  font-weight:600;
  margin-right:15px;
  transition:.3s;
}
.btn-orange{background:#ff7a18;color:#fff;}
.btn-outline{border:2px solid rgba(255,255,255,.8);color:#fff;}
.hero-buttons a:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.hero-image{
  position:relative;
  display:flex;
  justify-content:center;
}
.hero-image .circle{
  width:420px;height:420px;
  border-radius:50%;
  overflow:hidden;
  border:18px solid rgba(255,255,255,.15);
}
.hero-image img{width:100%;height:100%;object-fit:cover;}
.float-card{
  position:absolute;
  bottom:20px;
  left:-40px;
  background:#fff;
  color:#222;
  padding:18px 22px;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
  display:flex;
  align-items:center;
  gap:15px;
}
.float-card img{width:48px;height:48px;border-radius:50%;}
.float-card strong{display:block;}
.float-card a{font-size:14px;color:#ff7a18;font-weight:600;}

@media (max-width:900px){
  .hero-container{grid-template-columns:1fr;text-align:center;}
  .hero h1{font-size:42px;}
  .hero-image{margin-top:40px;}
  .float-card{left:50%;transform:translateX(-50%);}
}

/* HERO MOBILE (unifié) */
@media (max-width:768px){
  .hero{min-height:auto;padding-bottom:20px;}
  .hero-container{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;
    padding:80px 20px 40px !important;
    gap:16px !important;
  }
  .hero h1{
    max-width:360px;
    margin:0 auto 14px !important;
    font-size:28px !important;
    line-height:1.18 !important;
    color:#fff !important;
    text-shadow:0 2px 8px rgba(0,0,0,.25);
  }
  .hero h1 span{display:block;white-space:nowrap !important;}
  .hero p:first-of-type{display:none !important;}
  .hero p:last-of-type{
    margin-top:6px !important;
    font-size:14px !important;
    color:#e8ebff !important;
    opacity:1 !important;
    text-shadow:0 1px 4px rgba(0,0,0,.25);
    max-width:100% !important;
  }
  .hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    margin-top:20px !important;
    margin-bottom:26px;
  }
  .hero-buttons a{
    margin:0 !important;
    width:100%;
    max-width:280px;
    justify-content:center;
  }
  .hero-image{margin-top:22px !important;}
  .hero-image .circle{
    width:190px !important;
    height:190px !important;
    border-width:10px !important;
  }
  .float-card{
    position:relative !important;
    left:auto !important;
    bottom:auto !important;
    transform:none !important;
    margin-top:12px !important;
    max-width:260px !important;
    padding:14px 16px !important;
    font-size:14px;
    text-align:left;
  }
  .float-card img{width:40px !important;height:40px !important;}
  .float-card strong{font-size:15px;}
  .float-card a{font-size:13px;}
}
@media (max-width:360px){
  .hero h1{font-size:24px !important;max-width:320px;}
  .hero-image .circle{width:200px !important;height:200px !important;}
  .float-card{max-width:240px !important;}
}
.hero a,.hero button,.hero input,.hero form{position:relative;z-index:3;}
.hero::before,.hero::after{pointer-events:none !important;}

/* HERO Search */
.hero-copy{
  text-align:center;
  width:100%;
  max-width:720px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero-title{font-size:52px;line-height:1.1;margin:0;text-align:center;}
.hero-title span{display:block;margin-top:6px;white-space:nowrap;}
.hero-title span:first-child{margin-top:0;}
.hero-text{max-width:680px;}
.hero-proof{margin-top:14px;font-weight:600;opacity:.95;}
.hero-search{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  width:100%;
  position:relative;
  margin-top:10px;
}
.hero-search-field{position:relative;width:min(520px, 100%);}
.hero-search-field input{
  width:100%;
  padding:12px 14px 12px 44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.10);
  color:#fff;
  outline:none;
  font-size:14px;
}
.hero-search-field input::placeholder{color:#fff;opacity:1;}
.hero-search-icon{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  opacity:.9;
}
.hero-search-btn{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}

/* HERO Search Results */
.hero-search-results{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  width:50%;
  min-width:220px;
  max-width:360px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:16px;
  padding:6px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  display:none;
  z-index:50;
  max-height:260px;
  overflow-y:auto;
}
.hero-search-results a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:#fff;
  background:transparent;
  transition:background .15s ease, transform .15s ease;
}
.hero-search-results a:hover{
  background:rgba(255,255,255,0.18);
  transform:translateX(2px);
}
.hero-search-results .badge{
  margin-left:auto;
  font-size:11px;
  padding:3px 8px;
  border-radius:999px;
  background:#ff7a18;
  color:#fff;
  font-weight:800;
}
.hero-search-results::-webkit-scrollbar{width:6px;}
.hero-search-results::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.25);
  border-radius:10px;
}

/* ================= BACK TO TOP ================= */
#backToTop{
  position:fixed;
  bottom:30px;right:30px;
  width:52px;height:52px;
  border-radius:50%;
  border:none;
  background:linear-gradient(135deg,#03108a,#ad04bd);
  color:#fff;
  font-size:22px;
  font-weight:700;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  transition:.3s ease;
  z-index:999;
}
#backToTop:hover{background:#ff7a18;transform:translateY(-4px);}
@media (max-width:600px){
  #backToTop{width:46px;height:46px;font-size:20px;bottom:20px;right:20px;}
}

/* ================= SECTIONS “APP CARDS” (premium) ================= */
.features,.about,.categories,.courses,.testimonials,.team,.contact{
  background:#fff !important;
  border-radius:28px;
  margin:22px 16px;
  box-shadow:
    0 24px 70px rgba(17,24,39,0.12),
    0 6px 18px rgba(17,24,39,0.08);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.85);
}
@media (min-width:992px){
  .features,.about,.categories,.courses,.testimonials,.team,.contact{
    max-width:1200px;
    margin:28px auto;
  }
}

/* ================= FEATURES ================= */
.features{padding:120px 0;position:relative;overflow:hidden;}
.features::before{display:none !important;content:none !important;}
.features-container{max-width:1300px;margin:auto;padding:0 32px;position:relative;z-index:2;}
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;}
.feature-card{
  padding:42px 34px;border-radius:26px;position:relative;
  border:1px solid rgba(79,95,227,.10);
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 18px 45px rgba(17,24,39,0.10),0 6px 16px rgba(17,24,39,0.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card::after{
  content:"";position:absolute;bottom:0;right:0;width:90px;height:90px;
  background:#eef0ff;border-radius:90px 0 26px 0;transition:.35s ease;
}
.feature-icon{
  width:70px;height:70px;border-radius:18px;background:#ff7a18;
  display:flex;align-items:center;justify-content:center;font-size:30px;color:#fff;
  margin-bottom:26px;box-shadow:0 14px 30px rgba(255,122,24,.25);
  transition:.35s ease;
}
.feature-card h3{font-size:22px;margin-bottom:14px;color:#111827;font-weight:900;letter-spacing:-.2px;}
.feature-card p{font-size:15px;color:rgba(17,24,39,.70);line-height:1.7;}
.feature-card a{
  display:inline-flex;align-items:center;gap:8px;margin-top:22px;
  font-weight:600;color:#ff7a18;transition:.35s ease;
}
@media (hover:hover){
  .feature-card:hover{
    transform:translateY(-8px);
    border-color:rgba(79,95,227,.22);
    box-shadow:0 28px 75px rgba(17,24,39,0.16),0 10px 22px rgba(17,24,39,0.10);
  }
  .feature-card:hover .feature-icon{background:#4f5fe3;}
  .feature-card:hover::after{background:#4f5fe3;}
  .feature-card:hover a{color:#4f5fe3;}
}
@media (max-width:1100px){.features-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.features-grid{grid-template-columns:1fr;}}

/* ================= ABOUT ================= */
.about{position:relative;padding:140px 0;overflow:hidden;}
.about::before{display:none !important;content:none !important;}
.about-container{
  max-width:1300px;margin:auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1.1fr;align-items:center;gap:70px;
  position:relative;z-index:2;
}
.about-image{position:relative;display:flex;justify-content:center;}
.about-image .circle{width:520px;height:520px;border-radius:50%;overflow:hidden;}
.about-image img{width:100%;height:100%;object-fit:cover;}
.about-float{
  position:absolute;bottom:40px;left:0;background:#fff;
  padding:18px 22px;border-radius:14px;box-shadow:0 20px 50px rgba(0,0,0,.15);
  display:flex;align-items:center;gap:14px;
}
.about-float span{
  width:48px;height:48px;background:#ff7a18;color:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:20px;
}
.about-float strong{display:block;color:#222;}
.about-float a{color:#4f5fe3;font-weight:600;font-size:14px;}

.about-content{text-align:left;}
.about small{color:#4f5fe3;font-weight:800;letter-spacing:1px;}
.about h2{font-size:42px;line-height:1.15;margin:16px 0 22px;color:#222;font-weight:900;}
.about p{color:rgba(17,24,39,.72);max-width:520px;line-height:1.8;}

.about-cards{margin-top:40px;display:grid;grid-template-columns:1fr;gap:22px;}
.about-card{
  padding:22px 26px;border-radius:16px;display:flex;align-items:flex-start;gap:18px;
  border:1px solid rgba(79,95,227,.10);
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 18px 45px rgba(17,24,39,0.10),0 6px 16px rgba(17,24,39,0.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-card span{
  width:56px;height:56px;border-radius:14px;background:#ff7a18;color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:22px;
  box-shadow:0 14px 30px rgba(255,122,24,.25);
  transition:.35s ease;
}
.about-card h4{margin-bottom:6px;font-size:18px;color:#111827;font-weight:900;}
.about-card p{font-size:14px;margin:0;color:rgba(17,24,39,.70);}
@media (hover:hover){
  .about-card:hover{
    transform:translateY(-8px);
    border-color:rgba(79,95,227,.22);
    box-shadow:0 28px 75px rgba(17,24,39,0.16),0 10px 22px rgba(17,24,39,0.10);
  }
  .about-card:hover span{background:#4f5fe3;}
}
.about-btn{
  display:inline-block;margin-top:40px;padding:14px 28px;background:#4f5fe3;
  color:#fff;border-radius:6px;font-weight:700;
}
@media (max-width:1000px){
  .about-container{grid-template-columns:1fr;text-align:center;}
  .about-content{text-align:center;}
  .about p{max-width:100%;margin:0 auto;}
  .about-image{margin-bottom:40px;}
  .about-float{left:50%;transform:translateX(-50%);}
  .about-cards{justify-items:center;}
  .about-card{max-width:420px;margin:auto;text-align:left;}
  .about-btn{margin-left:auto;margin-right:auto;}
}
@media (max-width:600px){
  .about{padding:110px 0;}
  .about h2{font-size:30px;line-height:1.25;}
  .about p{font-size:15px;line-height:1.7;padding:0 6px;}
  .about-card{padding:18px 20px;border-radius:22px;}
  .about-card span{width:46px;height:46px;font-size:18px;}
  .about-card h4{font-size:16px;}
}
@media (max-width:600px){
  .about-image{
    width:100%;
    max-width:100%;
    overflow:hidden;
    display:flex;
    justify-content:center;
  }
  .about-image .circle{
    width:min(320px, 88vw) !important;
    height:min(320px, 88vw) !important;
    border-radius:50%;
  }
  .about-image img{width:100%;height:100%;object-fit:cover;}
  .about-float{
    left:50% !important;
    transform:translateX(-50%) !important;
    max-width:min(340px, 92vw) !important;
    padding:14px 16px !important;
    gap:12px !important;
    bottom:-15px !important;
  }
  .about-float strong{white-space:nowrap !important;font-size:14px !important;}
  .about-float a{white-space:nowrap !important;display:inline-block !important;font-size:13px !important;}
}

/* ================= CATEGORIES ================= */
.categories{position:relative;padding:120px 0;overflow:hidden;}
.categories::before{display:none !important;content:none !important;}
.categories-container{max-width:1300px;margin:auto;padding:0 32px;position:relative;z-index:2;}
.categories-header{text-align:center;margin-bottom:70px;}
.categories-header small{color:#4f5fe3;font-weight:800;letter-spacing:1px;}
.categories-header h2{font-size:42px;margin-top:14px;color:#222;font-weight:900;}

.category-slider{display:flex;gap:30px;animation:slide 30s linear infinite;}
.categories:hover .category-slider{animation-play-state:paused;}

.category-card{
  min-width:280px;border-radius:26px;overflow:hidden;position:relative;
  border:1px solid rgba(79,95,227,.10);
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 18px 45px rgba(17,24,39,0.10),0 6px 16px rgba(17,24,39,0.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-image{position:relative;height:200px;overflow:hidden;}
.category-image img{width:100%;height:100%;object-fit:cover;transition:.5s ease;}
.category-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(79,95,227,.95),rgba(79,95,227,.2));
  opacity:0;transition:.35s ease;
}
.category-content{padding:28px 26px;position:relative;}
.category-icon{
  width:60px;height:60px;border-radius:16px;background:#ff7a18;color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:26px;margin-top:-52px;
  box-shadow:0 14px 30px rgba(255,122,24,.25);
  transition:.35s ease;
}
.category-content h3{margin:18px 0 8px;font-size:20px;color:#111827;font-weight:900;}
.category-content span{font-size:14px;color:rgba(17,24,39,.70);}
@media (hover:hover){
  .category-card:hover{
    transform:translateY(-8px);
    border-color:rgba(79,95,227,.22);
    box-shadow:0 28px 75px rgba(17,24,39,0.16),0 10px 22px rgba(17,24,39,0.10);
  }
  .category-card:hover .category-overlay{opacity:1;}
  .category-card:hover img{transform:scale(1.08);}
  .category-card:hover .category-icon{background:#4f5fe3;}
}
@keyframes slide{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ================= COURSES (Home sections) ================= */
.courses{position:relative;padding:130px 0;background:#fff;}
.courses-container{max-width:1300px;margin:auto;padding:0 32px;}
.courses-header{text-align:center;margin-bottom:70px;}
.courses-header small{color:#4f5fe3;font-weight:800;letter-spacing:1px;}
.courses-header h2{font-size:42px;margin-top:14px;color:#222;font-weight:900;}

.courses-grid{display:grid;grid-template-columns:repeat(5, minmax(0,1fr));gap:20px;}
@media (max-width:1400px){.courses-grid{grid-template-columns:repeat(4,1fr);}}
@media (max-width:1100px){.courses-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:768px){.courses-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:480px){.courses-grid{grid-template-columns:1fr;}}

.my-courses,
.dashboard-courses{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:20px;
}

.course-card{
  border-radius:18px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(79,95,227,.10);
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 18px 45px rgba(17,24,39,0.10),0 6px 16px rgba(17,24,39,0.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.course-image{position:relative;height:220px;overflow:hidden;}
.course-image img,
.course-card img{
  width:100%;
  object-fit:cover;
  transition:.5s ease;
}
.course-card img{height:140px;}
.course-badge{
  position:absolute;top:18px;left:18px;background:#ff7a18;color:#fff;
  padding:6px 14px;border-radius:30px;font-size:13px;font-weight:700;
  box-shadow:0 12px 22px rgba(255,122,24,.22);
}
.course-content,
.course-card .course-content{padding:14px;}
.course-content small{color:#4f5fe3;font-weight:700;}
.course-content h3,
.course-card h3{
  font-size:15px;
  line-height:1.3;
  margin:10px 0 6px;
  color:#111827;
  font-weight:900;
}
.course-card p{font-size:13px;}
.course-meta{display:flex;justify-content:space-between;align-items:center;font-size:14px;color:rgba(17,24,39,.70);}
.course-rating{color:#ffb703;font-weight:700;}
.course-price{font-size:20px;font-weight:900;color:#111827;margin-top:14px;}
@media (hover:hover){
  .course-card:hover{
    transform:translateY(-8px);
    border-color:rgba(79,95,227,.22);
    box-shadow:0 28px 75px rgba(17,24,39,0.16),0 10px 22px rgba(17,24,39,0.10);
  }
  .course-card:hover img{transform:scale(1.08);}
  .course-card:hover .course-content h3{color:#4f5fe3;}
}

/* Course bottom (price + button) */
.course-bottom,
.course-card .course-bottom{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.course-buy,
.course-card .course-buy,
.course-card .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:10px;
  background:#4f5fe3;
  color:#fff;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
  transition:.25s;
}
.course-buy:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(17,24,39,.18);}
@media (max-width:600px){
  .course-bottom{flex-direction:column;align-items:flex-start;}
  .course-buy{width:100%;}
}

/* ================= CTA / DISCOUNT ================= */
.cta-discount{
  position:relative;
  padding:90px 0;
  background:linear-gradient(135deg,#4f5fe3,#5e6be9) !important;
  color:#fff !important;
  overflow:hidden;
}
.cta-discount::before{
  content:"";position:absolute;width:420px;height:420px;background:rgba(255,255,255,.08);
  border-radius:50%;top:-160px;left:-160px;pointer-events:none;
}
.cta-discount::after{
  content:"";position:absolute;width:360px;height:360px;background:rgba(255,255,255,.06);
  border-radius:50%;bottom:-140px;right:-140px;pointer-events:none;
}
.cta-container{
  max-width:1200px;margin:auto;padding:0 32px;text-align:center;
  position:relative;z-index:2;
}
.cta-container small{font-weight:800;letter-spacing:1px;opacity:.9;font-size:14px;color:#fff !important;}
.cta-container h2{font-size:42px;line-height:1.15;margin:14px 0 18px;font-weight:900;color:#fff !important;}
.cta-container p{max-width:680px;margin:0 auto 26px;font-size:17px;opacity:.95;color:rgba(255,255,255,.92) !important;}
.countdown{display:flex;justify-content:center;gap:20px;margin:18px 0 28px;}
.time-box{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  padding:16px 20px;border-radius:16px;min-width:90px;
}
.time-box span{display:block;font-size:28px;font-weight:900;}
.time-box small{font-size:12px;opacity:.85;}
.cta-buttons{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;}
.cta-buttons a{
  display:inline-flex;align-items:center;gap:10px;padding:14px 28px;border-radius:8px;
  font-weight:800;margin:0 8px;transition:.3s;
}
.cta-btn-orange{background:#ff7a18;color:#fff;box-shadow:0 14px 28px rgba(255,122,24,.22);}
.cta-btn-outline{
  background:rgba(255,255,255,.10);
  border:2px solid rgba(255,255,255,.85);
  color:#fff;
}
.cta-buttons a:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(0,0,0,.25);}
@media (max-width:700px){
  .cta-discount{padding:80px 0;}
  .cta-container h2{font-size:30px;line-height:1.2;}
  .countdown{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    max-width:280px;
    margin:18px auto 26px;
  }
  .cta-buttons{flex-direction:column;width:100%;max-width:320px;margin:0 auto;}
  .cta-buttons a{margin:0;width:100%;justify-content:center;}
}

/* ================= TESTIMONIALS ================= */
.testimonials{
  position:relative;
  padding:120px 20px;
  background:url("assets/images/testimonials-bg.jpg") center/cover no-repeat;
  overflow:hidden;
}
.testimonials-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.85);
  z-index:1;
}
.testimonials-container{position:relative;z-index:2;}
.testimonials-header{text-align:center;color:#000000;margin-bottom:50px;}
.testimonials-header small{letter-spacing:2px;opacity:0.8;font-weight:700;}
.testimonials-header h2{font-size:38px;font-weight:900;margin:10px 0;}
.testimonials-header p{opacity:0.85;}
.testimonial-wrapper{max-width:1300px;margin:auto;padding:0 32px;}
.testimonial-slider{
  display:flex;gap:24px;overflow-x:auto;scroll-behavior:smooth;
  scroll-snap-type:x mandatory;padding-bottom:10px;
}
.testimonial-slider::-webkit-scrollbar{display:none;}
.testimonial-card{
  flex:0 0 360px;
  min-width:320px;
  max-width:360px;
  scroll-snap-align:start;
  border-radius:22px;
  padding:26px;
  background:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}
.testimonial-card p{font-size:16px;line-height:1.6;font-weight:600;color:#111;}
.testimonial-user{display:flex;align-items:center;gap:14px;margin-top:20px;}
.testimonial-user img{width:52px;height:52px;border-radius:50%;object-fit:cover;}
.testimonial-user strong{display:block;}
.testimonial-user span{font-size:13px;opacity:0.7;}
@media (max-width:600px){.testimonial-card{flex:0 0 300px;}}

/* ================= TEAM ================= */
.team{padding:130px 0;background:#fff;}
.team-container{max-width:1300px;margin:auto;padding:0 32px;}
.team-header{text-align:center;margin-bottom:70px;}
.team-header small{color:#4f5fe3;font-weight:800;letter-spacing:1px;}
.team-header h2{font-size:42px;margin-top:14px;color:#222;font-weight:900;}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;}
.team-card{
  border-radius:26px;overflow:hidden;
  border:1px solid rgba(79,95,227,.10);
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 18px 45px rgba(17,24,39,0.10),0 6px 16px rgba(17,24,39,0.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover:hover){
  .team-card:hover{
    transform:translateY(-8px);
    border-color:rgba(79,95,227,.22);
    box-shadow:0 28px 75px rgba(17,24,39,0.16),0 10px 22px rgba(17,24,39,0.10);
  }
}
.team-image{position:relative;height:260px;}
.team-image img{width:100%;height:100%;object-fit:cover;}
.team-overlay{
  position:absolute;inset:0;background:rgba(79,95,227,.85);
  display:flex;align-items:center;justify-content:center;gap:14px;
  opacity:0;transition:.35s ease;
}
.team-card:hover .team-overlay{opacity:1;}
.team-overlay a{
  width:42px;height:42px;border-radius:50%;
  background:#fff;color:#4f5fe3;
  display:flex;align-items:center;justify-content:center;font-weight:900;
}
.team-info{padding:26px;text-align:center;}
.team-info h4{font-size:20px;margin-bottom:6px;color:#111827;font-weight:900;}
.team-info span{font-size:14px;color:rgba(17,24,39,.70);}
@media (max-width:1000px){.team-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.team-grid{grid-template-columns:1fr;}}

/* ================= CONTACT ================= */
.contact{padding:130px 0;background:#fff;}
.contact-container{max-width:1300px;margin:auto;padding:0 32px;}
.contact-header{text-align:center;margin-bottom:70px;}
.contact-header small{color:#4f5fe3;font-weight:800;letter-spacing:1px;}
.contact-header h2{font-size:42px;margin-top:14px;color:#222;font-weight:900;}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:flex-start;}
.contact-info,.contact-form{
  border-radius:26px;padding:40px;
  border:1px solid rgba(79,95,227,.10);
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  box-shadow:0 18px 45px rgba(17,24,39,0.10),0 6px 16px rgba(17,24,39,0.06);
}
.contact-info h3,.contact-form h3{font-size:26px;margin-bottom:24px;color:#111827;font-weight:900;}
.contact-info p{color:rgba(17,24,39,.70);line-height:1.8;margin-bottom:30px;}
.contact-item{display:flex;align-items:center;gap:18px;margin-bottom:22px;}
.contact-icon{
  width:54px;height:54px;border-radius:16px;background:#4f5fe3;color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:22px;
}
.contact-item strong{display:block;color:#111827;font-weight:900;}
.contact-item span{font-size:14px;color:rgba(17,24,39,.70);}
.form-group{margin-bottom:18px;}
.form-group input,.form-group textarea{
  width:100%;padding:16px 18px;border-radius:10px;border:1px solid #ddd;
  font-size:15px;outline:none;
}
.form-group textarea{resize:none;height:140px;}
.contact-form button{
  margin-top:10px;padding:16px 34px;background:#ff7a18;color:#fff;border:none;
  border-radius:8px;font-weight:900;cursor:pointer;transition:.3s;
}
.contact-form button:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(0,0,0,.25);}
@media (max-width:1000px){.contact-grid{grid-template-columns:1fr;}}
@media (max-width:600px){.contact-info,.contact-form{padding:28px;border-radius:22px;}}

/* ================= FOOTER ================= */
footer{background:#1b1f3b;color:#cfd3ff;padding:90px 0 40px;}
.footer-container{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}
footer h4{
  color:#fff;
  margin-bottom:12px;
  font-size:16px;
  font-weight:800;
}
footer a{
  display:block;
  margin-bottom:8px;
  text-decoration:none;
  color:#e5e7eb;
  font-size:14px;
  transition:.3s;
}
footer a:hover{color:#ff7a18;}
.footer-text{font-size:14px;line-height:1.7;}
.footer-bottom{
  text-align:center;
  padding:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:20px;
  font-size:13px;
  color:#b6bbff;
}
.footer-bottom span{color:#ff7a18;font-weight:700;}
@media (max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
    text-align:left;
  }
}
@media (max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* ================= CHECKOUT (Section classique) ================= */
.checkout{
  padding:140px 0 110px;
  background:#eef2ff;
}
.checkout-container{max-width:1200px;margin:0 auto;padding:0 24px;}
.checkout-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:26px;align-items:start;}
.checkout-card{
  background:linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border:1px solid rgba(79,95,227,.12);
  border-radius:26px;
  box-shadow:0 24px 70px rgba(17, 24, 39, 0.12), 0 6px 18px rgba(17, 24, 39, 0.08);
  padding:26px;
}
.checkout-empty{
  text-align:center;
  background:#fff;
  border-radius:26px;
  border:1px solid rgba(79,95,227,.12);
  box-shadow:0 24px 70px rgba(17, 24, 39, 0.12);
  padding:48px 24px;
}
.checkout-empty h1{font-size:34px;margin-bottom:10px;color:#111827;}
.checkout-empty p{color:rgba(17,24,39,.72);margin-bottom:22px;}

.checkout-course{display:grid;grid-template-columns:170px 1fr;gap:18px;align-items:start;}
.checkout-thumb{
  position:relative;
  width:170px;height:170px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(79,95,227,.14);
}
.checkout-thumb img{width:100%;height:100%;object-fit:cover;}
.checkout-badge{
  position:absolute;top:12px;left:12px;background:#ff7a18;color:#fff;
  padding:6px 12px;border-radius:999px;font-size:12px;font-weight:800;
  box-shadow:0 12px 22px rgba(255,122,24,.22);
}
.checkout-course-info small{color:#4f5fe3;font-weight:800;letter-spacing:.6px;}
.checkout-course-info h1{font-size:30px;line-height:1.15;margin:10px 0 12px;color:#111827;font-weight:900;}
.checkout-meta{display:flex;flex-wrap:wrap;gap:10px;color:rgba(17,24,39,.72);font-weight:600;margin-bottom:14px;}
.checkout-price{
  display:flex;align-items:baseline;justify-content:space-between;
  padding:16px 18px;border-radius:18px;
  background:rgba(79,95,227,.06);
  border:1px solid rgba(79,95,227,.10);
}
.checkout-price span{color:rgba(17,24,39,.72);font-weight:700;}
.checkout-price strong{font-size:28px;color:#111827;font-weight:900;}
.checkout-guarantee{
  margin-top:18px;display:flex;gap:14px;padding:18px;border-radius:18px;
  background:rgba(255,122,24,.08);
  border:1px solid rgba(255,122,24,.18);
}
.checkout-guarantee .g-icon{
  width:44px;height:44px;border-radius:14px;background:#ff7a18;color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:900;
}
.checkout-guarantee strong{display:block;color:#111827;font-weight:900;}
.checkout-guarantee p{margin-top:4px;color:rgba(17,24,39,.72);}
.checkout-card h2{font-size:26px;color:#111827;font-weight:900;margin-bottom:8px;}
.checkout-sub{color:rgba(17,24,39,.72);margin-bottom:18px;}
.checkout-form label{display:block;font-weight:800;color:#111827;margin-bottom:8px;font-size:13px;}
.checkout-form input,.checkout-form select{
  width:100%;padding:14px 16px;border-radius:14px;border:1px solid rgba(17,24,39,.14);
  outline:none;background:#fff;font-size:15px;
}
.checkout-form input:focus,.checkout-form select:focus{
  border-color:rgba(79,95,227,.45);
  box-shadow:0 0 0 4px rgba(79,95,227,.10);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.checkout-pay{
  width:100%;margin-top:12px;padding:16px 18px;border:none;border-radius:14px;
  background:#ff7a18;color:#fff;font-weight:900;cursor:pointer;
  box-shadow:0 14px 28px rgba(255,122,24,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.checkout-pay:hover{transform:translateY(-2px);box-shadow:0 18px 40px rgba(255,122,24,.26);}
.checkout-note{margin-top:12px;font-size:14px;color:rgba(17,24,39,.72);text-align:center;}
.checkout-note a{color:#4f5fe3;font-weight:800;}
@media (max-width:900px){
  .checkout{padding:120px 0 90px;}
  .checkout-grid{grid-template-columns:1fr;}
  .checkout-course{grid-template-columns:1fr;}
  .checkout-thumb{width:100%;height:210px;}
  .form-row{grid-template-columns:1fr;}
}

/* ===============================
   LOGIN / AUTH PAGES
================================ */
.page{
  min-height:calc(100vh - 120px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 16px 60px;
}
.auth-wrap{width:100%;max-width:1100px;}
.auth-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:48px;align-items:center;}

.auth-left{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:40px;
  backdrop-filter:blur(8px);
}
.auth-title{font-size:46px;font-weight:900;margin:0 0 12px;}
.auth-subtitle{font-size:17px;opacity:.9;max-width:480px;line-height:1.5;margin:0 0 28px;}

.auth-features{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:28px;}
.auth-feature{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:14px;
  text-align:center;
}
.auth-feature span{font-size:22px;display:block;margin-bottom:6px;}
.auth-feature strong{display:block;font-size:14px;font-weight:800;}
.auth-feature small{font-size:12px;opacity:.75;}
.auth-register{font-size:15px;margin:0;}
.auth-register a{font-weight:800;text-decoration:underline;}

.auth-right{
  background:#ffffff;
  border-radius:24px;
  padding:36px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}
.auth-right-title{margin:0 0 16px;font-size:20px;font-weight:900;}
.field{margin-bottom:14px;}
.auth-right label{display:block;font-weight:800;margin:0 0 6px;}
.auth-right input{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid #d1d5db;
  font-size:15px;
  outline:none;
}
.auth-alert{
  background:#fee2e2;
  border:1px solid #ef4444;
  border-radius:12px;
  padding:12px;
  margin-bottom:14px;
}
.btn-auth{
  width:100%;
  height:52px;
  font-size:16px;
  font-weight:900;
  border-radius:14px;
  letter-spacing:.4px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.auth-note{margin-top:12px;text-align:center;font-size:14px;opacity:.75;}
.auth-forgot{margin:8px 0 14px;text-align:right;}
.auth-forgot a{color:#4f5fe3;font-weight:800;font-size:14px;}

@media (max-width:900px){
  .auth-grid{grid-template-columns:1fr;gap:28px;}
  .auth-left,.auth-right{padding:24px;}
  .auth-features{grid-template-columns:1fr;}
}

.auth-image-card{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
}
.auth-image-card img{width:100%;height:170px;object-fit:cover;display:block;}
.auth-image-overlay{
  position:absolute;inset:0;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:14px 16px;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  color:#fff;
}
.auth-image-overlay strong{font-size:16px;font-weight:900;}
.auth-image-overlay small{opacity:.92;margin-top:4px;}
@media (max-width:900px){ .auth-image-card img{height:150px;} }

.auth-left-bottom{
  background:rgba(255,255,255,.92) !important;
  border:1px solid rgba(79,95,227,.18) !important;
  color:#4f5fe3 !important;
}
.auth-left-bottom span{color:#4f5fe3 !important;font-weight:600;}
.auth-left-bottom a{color:#4f5fe3 !important;font-weight:900;text-decoration:underline;}
.auth-left-bottom a:hover{color:#ff7a18 !important;}

/* ===============================
   COURSES PAGE (DJPRO) – page list
================================ */
.page .container{max-width:1180px;margin:0 auto;padding:0 18px;}
.page-title{font-size:44px;font-weight:800;letter-spacing:-0.02em;margin:0 0 10px;color:#0b0f19;}
.page-subtitle{margin:0 0 22px;opacity:.75;font-size:16px;}

.courses-toolbar{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin:18px 0 26px;
}
.courses-search{
  flex:1;
  min-width:260px;
  display:flex;
  gap:10px;
}
.courses-search input[type="search"]{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.9);
  outline:none;
}
.courses-search button{
  padding:12px 14px;
  border-radius:14px;
  border:none;
  cursor:pointer;
  font-weight:800;
}

/* =========================
   ADMIN / DASHBOARD – MOBILE FIX
========================= */
.admin-wrap,.dashboard-wrap,.panel-wrap,.admin-container,.dashboard-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:18px;
}
.admin-wrap *,.dashboard-wrap *,.panel-wrap *{max-width:100%;box-sizing:border-box;}

.stats-grid,.kpi-grid,.dashboard-grid,.admin-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  align-items:start;
}
@media (max-width:768px){
  .stats-grid,.kpi-grid,.dashboard-grid,.admin-grid{grid-template-columns:1fr !important;}
}

.table-card,.payments-card,.orders-card,.students-card,.card,.panel-card{
  width:100% !important;
  max-width:100% !important;
  border-radius:18px;
  overflow:hidden !important;
}
.table-card,.payments-card,.orders-card,.students-card{
  overflow-x:auto !important;
  -webkit-overflow-scrolling:touch;
}
.table-card table,.payments-card table,.orders-card table,.students-card table{
  width:100% !important;
  max-width:100% !important;
  border-collapse:collapse;
  table-layout:fixed;
}
.table-card th,.table-card td,
.payments-card th,.payments-card td,
.orders-card th,.orders-card td,
.students-card th,.students-card td{
  padding:10px 8px;
  vertical-align:top;
  overflow:hidden;
  text-overflow:ellipsis;
}
.table-card td:first-child,
.payments-card td:first-child,
.orders-card td:first-child,
.students-card td:first-child{
  white-space:normal !important;
  word-break:break-word;
}
@media (max-width:600px){
  .admin-wrap,.dashboard-wrap,.panel-wrap,.admin-container,.dashboard-container,.container{
    padding-left:12px !important;
    padding-right:12px !important;
  }
}

/* Top headers + buttons mobile */
@media (max-width:600px){
  .dashboard-header, .dash-header, .panel-header, .admin-header, .header-dashboard,
  .dashboard-hero, .dash-hero, .panel-hero, .admin-hero, .hero-dashboard,
  .page-header, .page-head, .top-header, .top-area { text-align:center !important; }

  .dashboard-actions, .dash-actions, .panel-actions, .admin-actions,
  .quick-actions, .actions, .btn-group, .button-group, .panel-buttons,
  .dashboard-buttons, .dashboard-nav, .panel-nav, .nav-actions{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;
    grid-template-columns:1fr !important;
  }

  .dashboard-actions a, .dashboard-actions button,
  .dash-actions a, .dash-actions button,
  .panel-actions a, .panel-actions button,
  .admin-actions a, .admin-actions button,
  .quick-actions a, .quick-actions button,
  .actions a, .actions button,
  .btn-group a, .btn-group button,
  .button-group a, .button-group button,
  .panel-buttons a, .panel-buttons button,
  .dashboard-buttons a, .dashboard-buttons button,
  .dashboard-nav a, .dashboard-nav button,
  .panel-nav a, .panel-nav button,
  .nav-actions a, .nav-actions button{
    width:100% !important;
    max-width:320px !important;
    min-height:48px !important;
    justify-content:center !important;
    text-align:center !important;
  }
}

/* ===============================
   CHECKOUT – PAY METHODS (Résumé)
================================ */
.pay-methods{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.08);
}
.pay-methods-title{font-weight:900;font-size:13px;opacity:.85;margin-bottom:10px;}
.pay-badges{display:flex;flex-wrap:wrap;gap:8px;}
.pay-badge{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 10px;border-radius:999px;
  background:rgba(79,95,227,.06);
  border:1px solid rgba(79,95,227,.14);
  font-weight:900;font-size:12px;color:#0b0f19;
  white-space:nowrap;
}
.pay-logos{display:flex;flex-wrap:wrap;gap:10px;}
.pay-logos img{
  height:26px;width:auto;max-width:72px;object-fit:contain;
  padding:6px 10px;border-radius:12px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.08);
}
@media (max-width:520px){
  .pay-badge{font-size:11px;padding:7px 9px;}
  .pay-logos img{height:24px;max-width:66px;}
}

/* ===== OVERLAY GLOBAL ===== */
.pay-modal{
  position:fixed;
  inset:0;
  width:100vw;height:100vh;
  background:rgba(15, 23, 42, 0.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}
.pay-modal.open{display:flex;}

/* ===== CONTAINER ===== */
.pay-container{
  width:100%;
  max-width:880px;
  max-height:90vh;
  background:#ffffff;
  border-radius:22px;
  box-shadow:0 40px 120px rgba(0,0,0,.45);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* ===== HEADER ===== */
.pay-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:22px 24px;
  border-bottom:1px solid #e5e7eb;
}
.pay-header h3{margin:0;font-size:22px;font-weight:900;}
.pay-header p{margin:6px 0 0;font-size:14px;color:#6b7280;}
.pay-close{font-size:30px;background:none;border:none;cursor:pointer;line-height:1;}

/* ===== BODY ===== */
.pay-body{padding:22px 24px;overflow-y:auto;}

/* ===== RÉSUMÉ ===== */
.pay-summary{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  margin-bottom:20px;
}
.pay-summary strong{display:block;margin-bottom:6px;}

/* ===== MÉTHODES ===== */
.pay-section-title{font-weight:900;margin-bottom:14px;}
.pay-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));gap:14px;}
.pay-option{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition:all .18s ease;
}
.pay-option:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
  border-color:#ff7a18;
}
.pay-option img{max-height:36px;max-width:120px;object-fit:contain;}
.pay-option span{font-weight:800;font-size:14px;}

/* ===== ACTIONS ===== */
.pay-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:22px;}
.pay-btn-primary{
  background:#ff7a18;color:#fff;
  padding:14px 26px;border-radius:14px;
  font-weight:900;text-decoration:none;
}
.pay-btn-outline{
  background:#fff;border:1px solid #e5e7eb;
  padding:14px 26px;border-radius:14px;
  font-weight:900;cursor:pointer;
}

/* ===== FOOTER ===== */
.pay-footer{
  padding:16px 24px;
  border-top:1px solid #e5e7eb;
  font-size:14px;
  color:#6b7280;
}
.pay-footer a{font-weight:800;}

/* ===== MOBILE ===== */
@media (max-width:640px){
  .pay-container{max-height:95vh;border-radius:18px;}
  .pay-actions{flex-direction:column;}
}

/* ===== FORÇAGE LOGOS PAIEMENT ===== */
.pay-item{
  height:96px !important;
  padding:8px !important;
}
.pay-item img{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain !important;
  transform:scale(1.25);
}

/* =========================
   FIX MOBILE — labels du graphique
========================= */
.bar span{display:block;}
@media (max-width:640px){
  .bar span{display:none !important;}
  .chart::after{
    content:attr(data-range);
    display:block;
    margin-top:10px;
    font-size:13px;
    font-weight:700;
    opacity:.75;
    text-align:center;
  }
}

/* =========================
   TITLE & FILTERS MOBILE
========================= */
h1{margin:0;}

@media (max-width:640px){
  .dashboard{padding:18px !important;}

  h1{
    font-size:22px !important;
    font-weight:900;
    line-height:1.2;
    text-align:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin-bottom:6px;
    max-width:100%;
  }

  p.muted{
    text-align:center;
    font-size:13px;
    line-height:1.4;
    margin:0 0 12px;
  }

  .topbar{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    margin:12px 0 16px !important;
  }
  .topbar a{
    width:100% !important;
    justify-content:center !important;
    padding:12px 10px !important;
    border-radius:14px !important;
    white-space:nowrap !important;
  }

  .filters{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    align-items:stretch !important;
    margin:0 0 16px !important;
  }
  .filters select,
  .filters input,
  .filters button,
  .filters .ghost{
    width:100% !important;
    padding:12px !important;
    border-radius:14px !important;
  }
  .filters button{height:44px !important;}
  .filters .ghost{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
  }

  .kpis{grid-template-columns:1fr !important;gap:12px !important;}
}

/* ===============================
   REVIEW CARD
=============================== */
.review-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.10);
  max-width:980px;
}
.review-head{margin-bottom:14px;}
.review-title{font-size:22px;font-weight:1000;}
.review-sub{opacity:.7;font-weight:700;margin-top:4px;}

.review-type{
  display:flex;gap:10px;flex-wrap:wrap;
  margin:12px 0 16px;
}
.pill{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#f8fafc;
  font-weight:900;cursor:pointer;
}
.pill input{accent-color:#ff7a18;}

.field{margin-top:12px;}
.label{display:block;font-weight:900;margin-bottom:6px;}
.input, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  outline:none;
  font-weight:800;
  background:#fff;
}
.textarea{min-height:120px;resize:vertical;}
.hint{margin-top:6px;font-size:12px;opacity:.7;font-weight:800;}

.btn-review{
  margin-top:14px;
  width:100%;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#0b0f19;
  color:#fff;
  font-weight:1000;
  cursor:pointer;
}
.btn-review:hover{filter:brightness(1.05);}

/* ==============================
   FIX DEFINITIVO: overflow direita (mobile)
============================== */
html, body {
  overflow-x:hidden !important;
  width:100% !important;
}

.student-wrap,
.student-container {
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
}

.student-hero {
  width:100% !important;
  max-width:100% !important;
  display:flex !important;
  flex-wrap:wrap !important;
  gap:14px !important;
  align-items:flex-start !important;
}
.student-hero > div,
.student-actions {
  min-width:0 !important;
  max-width:100% !important;
}

.student-actions {
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  max-width:100% !important;
  min-width:0 !important;
}

.student-actions > div {
  max-width:100% !important;
  min-width:0 !important;
  overflow:hidden !important;
}

.student-actions > div > div {
  min-width:0 !important;
  max-width:100% !important;
  overflow:hidden !important;
}

.student-actions > div > div > div:nth-child(1),
.student-actions > div > div > div:nth-child(2) {
  display:block !important;
  max-width:100% !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

@media (max-width:768px){
  .student-hero {
    flex-direction:column !important;
  }

  .student-actions {
    width:100% !important;
  }

  .student-actions .btn {
    width:100% !important;
  }

  .student-actions > div {
    width:100% !important;
  }

  .student-actions > div a {
    margin-left:0 !important;
  }

  .student-hero h1{
    font-size:22px;
    line-height:1.3;
  }
}
.student-hero h1{
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}





/* ===============================
   BREADCRUMBS
================================ */
.breadcrumbs{
  max-width:1100px;
  margin:0 auto 18px;
  padding:0 18px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:800;
  color:rgba(15,23,42,.72);
}

.breadcrumbs a{
  color:#4f46e5;
  text-decoration:none;
}

.breadcrumbs a:hover{
  color:#ff7a18;
}

.breadcrumbs .sep{
  opacity:.45;
}

.breadcrumbs .current{
  color:#111827;
}

@media (max-width:640px){
  .breadcrumbs{
    font-size:13px;
    gap:6px;
  }
}


/* ===============================
   PAGES / LEGAL / ABOUT / FAQ
================================ */

.info-page{
  padding:40px 0 80px;
  overflow-x:hidden;
}

.info-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;
}

/* HERO */

.info-hero{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  min-height:320px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  align-items:center;
  gap:24px;
  padding:34px;
  background:linear-gradient(135deg,#03108a,#ad04bd);
  color:#fff;
  box-shadow:0 24px 70px rgba(17,24,39,.18);
}

.info-hero > *{
  min-width:0;
}

.info-hero::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  top:-120px;
  left:-120px;
}

.info-hero::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  right:-90px;
  bottom:-90px;
}

.info-hero-copy,
.info-hero-media{
  position:relative;
  z-index:2;
  min-width:0;
  max-width:100%;
}

/* BADGE */

.info-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  margin-bottom:14px;
  max-width:100%;
}

/* TITLES */

.info-title{
  font-size:42px;
  line-height:1.1;
  font-weight:1000;
  margin:0 0 14px;
  max-width:100%;
  white-space:normal;
  overflow:visible;
  text-overflow:unset;
  overflow-wrap:break-word;
  word-break:break-word;
}

.info-subtitle{
  font-size:16px;
  line-height:1.75;
  max-width:58ch;
  opacity:.96;
  overflow-wrap:break-word;
  word-break:break-word;
}

/* BUTTONS */

.info-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
  max-width:100%;
}

.info-btn-primary,
.info-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  max-width:100%;
  text-align:center;
}

.info-btn-primary{
  background:#ff7a18;
  color:#fff;
  box-shadow:0 14px 30px rgba(255,122,24,.22);
}

.info-btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

/* HERO IMAGE */

.info-hero-media{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.info-hero-card{
  width:100%;
  max-width:420px;
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 55px rgba(0,0,0,.16);
}

.info-hero-card img{
  width:100%;
  max-width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.info-hero-card-body{
  padding:16px 18px;
}

.info-hero-card-body strong{
  display:block;
  font-size:18px;
  font-weight:900;
  line-height:1.35;
  overflow-wrap:break-word;
  word-break:break-word;
}

.info-hero-card-body span{
  display:block;
  margin-top:6px;
  font-size:14px;
  line-height:1.6;
  opacity:.92;
  overflow-wrap:break-word;
  word-break:break-word;
}

/* GRID CARDS */

.info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:28px;
}

.info-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  padding:22px;
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  min-width:0;
}

.info-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:#ff7a18;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 14px 30px rgba(255,122,24,.22);
  margin-bottom:14px;
}

.info-card h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:900;
  color:#111827;
  line-height:1.35;
  overflow-wrap:break-word;
  word-break:break-word;
}

.info-card p,
.info-rich p{
  margin:0 0 12px;
  line-height:1.75;
  color:rgba(17,24,39,.78);
  overflow-wrap:break-word;
  word-break:break-word;
}

/* SECTIONS */

.info-section{
  margin-top:28px;
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  overflow:hidden;
}

.info-section-header{
  padding:22px 24px 0;
}

.info-section-header h2{
  margin:0;
  font-size:28px;
  font-weight:1000;
  color:#111827;
  line-height:1.3;
  overflow-wrap:break-word;
  word-break:break-word;
}

.info-section-header p{
  margin-top:10px;
  color:rgba(17,24,39,.72);
  line-height:1.7;
  overflow-wrap:break-word;
  word-break:break-word;
}

.info-section-body{
  padding:22px 24px 26px;
}

.info-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.info-rich ul{
  margin:0;
  padding-left:18px;
  color:rgba(17,24,39,.78);
}

.info-rich li{
  margin-bottom:10px;
  line-height:1.7;
  overflow-wrap:break-word;
  word-break:break-word;
}

/* FAQ */

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.faq-question{
  width:100%;
  text-align:left;
  background:#fff;
  border:0;
  padding:18px 20px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  line-height:1.45;
}

.faq-answer{
  display:none;
  padding:0 20px 18px;
  color:rgba(17,24,39,.78);
  line-height:1.75;
  overflow-wrap:break-word;
  word-break:break-word;
}

.faq-item.active .faq-answer{
  display:block;
}

/* CONTACT */

.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:22px;
}

.contact-mini{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:20px;
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  min-width:0;
}

.contact-mini h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
  line-height:1.35;
  overflow-wrap:break-word;
  word-break:break-word;
}

.contact-mini a,
.contact-mini p{
  color:rgba(17,24,39,.78);
  line-height:1.7;
  overflow-wrap:break-word;
  word-break:break-word;
}

/* NOTE */

.legal-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff7ed;
  border:1px solid rgba(255,122,24,.16);
  color:#9a3412;
  font-weight:800;
  line-height:1.6;
  overflow-wrap:break-word;
  word-break:break-word;
}

/* TABLET */

@media (max-width:980px){

  .info-hero{
    grid-template-columns:1fr;
    padding:24px 18px;
  }

  .info-hero-copy{
    width:100%;
  }

  .info-hero-media{
    width:100%;
    justify-content:center;
  }

  .info-hero-card{
    width:100%;
    max-width:100%;
  }

  .info-grid,
  .contact-cards,
  .info-two-col{
    grid-template-columns:1fr;
  }

}

/* MOBILE */

@media (max-width:640px){

  .info-page{
    overflow-x:hidden;
  }

  .info-container{
    width:100%;
    max-width:100%;
    padding:0 14px;
    overflow-x:hidden;
  }

  .info-title{
    font-size:30px;
    line-height:1.15;
  }

  .info-subtitle{
    font-size:15px;
    line-height:1.7;
    max-width:100%;
  }

  .info-hero{
    padding:22px 14px;
    border-radius:22px;
    gap:18px;
  }

  .info-kicker{
    max-width:100%;
  }

  .info-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .info-btn-primary,
  .info-btn-secondary{
    width:100%;
  }

  .info-hero-card{
    border-radius:18px;
  }

  .info-hero-card img{
    height:220px;
  }

  .info-section{
    border-radius:22px;
  }

  .info-card,
  .contact-mini{
    border-radius:18px;
    padding:18px;
  }

  .info-section-header{
    padding:18px 18px 0;
  }

  .info-section-body{
    padding:18px 18px 22px;
  }

}














/* ===============================
   HOME PREMIUM
================================ */

.hero-premium .hero-copy{
  align-items:flex-start;
  text-align:left;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  margin-bottom:14px;
  color:#fff;
}

.section-heading{
  text-align:center;
  max-width:780px;
  margin:0 auto 36px;
}

.section-heading small{
  color:#4f5fe3;
  font-weight:800;
  letter-spacing:1px;
}

.section-heading h2{
  margin-top:12px;
  font-size:40px;
  line-height:1.15;
  color:#111827;
  font-weight:1000;
}

.section-heading p{
  margin-top:12px;
  color:rgba(17,24,39,.72);
  line-height:1.8;
}

.home-stats{
  position:relative;
  margin-top:-52px;
  z-index:3;
}

.home-stats-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.home-stat-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.10);
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.home-stat-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#ff7a18;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 14px 30px rgba(255,122,24,.22);
  flex-shrink:0;
}

.home-stat-card strong{
  display:block;
  font-size:16px;
  font-weight:900;
  color:#111827;
}

.home-stat-card span{
  display:block;
  margin-top:6px;
  font-size:14px;
  line-height:1.65;
  color:rgba(17,24,39,.72);
}

.home-section-subtitle{
  margin-top:12px;
  color:rgba(17,24,39,.72);
  line-height:1.75;
}

.home-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:24px;
}

.home-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border-radius:14px;
  background:#111827;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 18px 40px rgba(17,24,39,.16);
}

.home-why{
  padding:24px 0 8px;
}

.home-why-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.home-why-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.home-why-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  padding:24px;
  box-shadow:0 18px 55px rgba(0,0,0,.08);
}

.home-why-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:#4f5fe3;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:14px;
  box-shadow:0 14px 30px rgba(79,95,227,.22);
}

.home-why-card h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:1000;
  color:#111827;
}

.home-why-card p{
  margin:0;
  line-height:1.75;
  color:rgba(17,24,39,.74);
}

@media (max-width:1100px){
  .home-stats-container{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .home-why-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .hero-premium .hero-copy{
    align-items:center;
    text-align:center;
  }

  .section-heading h2{
    font-size:30px;
  }

  .home-stats{
    margin-top:18px;
  }
}

@media (max-width:640px){
  .home-stats-container{
    grid-template-columns:1fr;
  }

  .hero-kicker{
    font-size:11px;
  }
}