:root{
  --bg:#f7fbfd;
  --accent:#E40046; /* primary red */
  --accent-2:#001F6B; /* secondary blue */
  --muted:#6b7280;
  --card-shadow: 0 6px 18px rgba(16,24,40,0.06);
  --glass: rgba(255,255,255,0.95);
  --radius:12px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior: smooth;}
html,body{height:100%}
body{
  margin:0; font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: white; color:#0f172a; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
   display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  overflow-x:hidden; width:100%;
}

.wrap{width:100%; max-width:var(--max); background:var(--bg); border-radius:6px; padding:28px;}

header{display:flex; align-items:center; justify-content:space-between; padding:8px 18px; background: white; border-radius: var(--radius); margin-bottom: 16px;}
.logo{display:flex; align-items:center; gap:12px}
.main-nav{display:flex; align-items:center; gap:24px;}
.nav-link{color:var(--muted); text-decoration:none; font-weight:500; font-size:14px; text-transform:uppercase; letter-spacing:0.05em; transition:color 0.2s ease;}
.nav-link:hover{color:var(--accent);}
.nav-link.active{color:var(--accent); font-weight:600;}

/* Mobile Menu Toggle */
.mobile-menu-toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: 2px solid var(--accent);
  cursor: pointer;
  padding: 10px;
  margin: 0;
  border-radius: 8px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  box-shadow: 0 2px 8px rgba(228, 0, 70, 0.3);
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle:hover{
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: 0 4px 12px rgba(0, 31, 107, 0.3);
}

.mobile-menu-toggle:hover .hamburger-line{
  background: white;
}

.mobile-menu-toggle:active{
  transform: scale(0.95);
}

.hamburger-line{
  width: 24px;
  height: 3px;
  background: white;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav{
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active{
  right: 0;
}

.mobile-nav-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav-logo{
  height: 50px;
  width: auto;
}

.mobile-nav-close{
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.mobile-nav-close:hover{
  color: var(--accent);
}

.mobile-nav-links{
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 8px;
}

.mobile-nav-links .nav-link{
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-links .nav-link:hover{
  background: var(--bg);
  color: var(--accent);
}

.mobile-nav-links .nav-link.active{
  background: var(--accent);
  color: white;
}

/* Mobile Overlay */
.mobile-nav-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active{
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-menu-toggle {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-nav{
    display: none !important;
  }
  
  .logo-full{
    height: 4%;
    width: auto;
  }
  
  .mobile-nav,
  .mobile-nav-overlay{
    display: block;
  }
}

@media (max-width: 520px) {
  .logo-full {
    height: 70px;
    width: auto;
  }
  
  .hero-img{
    border-top-left-radius: 50px !important;
  }
  
  .stats-block{
    padding: 30px 20px;
  }
  
  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number{
    font-size: 36px;
  }
  
  .stat-label{
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle{
    display: none !important;
  }
  
  .mobile-nav,
  .mobile-nav-overlay{
    display: none !important;
  }
}
.logo-full{height:60px; width:auto;}
.brand{font-weight:700; color:var(--accent)}
.tag{font-size:12px; color:var(--muted); background:transparent}

/* HERO */
.hero{display:grid; grid-template-columns:1fr 520px; gap:28px; align-items:start; padding:18px}
.hero-left{padding:14px 10px}
.eyebrow{color:#8493b8; text-transform:uppercase; letter-spacing:0.08em; font-size:12px; font-weight:700; margin-bottom:12px}
.hero-title{
  font-size:36px;
  line-height:1.05;
  margin:0 0 20px;
  color:#001f6b;
  font-weight:800;
}
.accent-strong{color:var(--accent)}
.hero-copy{
  color:#1c2437;
  font-size:18px;
  line-height:1.7;
  margin:0 0 26px;
  max-width:640px;
}
.accent-text{color:var(--accent); font-weight:600}
.cta{display:inline-block; padding:12px 22px; background:var(--accent); color:white; border-radius:8px; text-decoration:none; font-weight:600;}
.cta:hover{background:var(--accent-2); color:white; transform:translateY(-1px); box-shadow:0 4px 12px rgba(0,31,107,0.3);}
.hero-cta{
  background:var(--accent);
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 12px 24px rgba(228,0,70,0.35);
  letter-spacing:0.04em;
}
.hero-cta:hover{background:var(--accent-2); color:white; transform:translateY(-1px); box-shadow:0 12px 24px rgba(0,31,107,0.35);}

.hero-right{position:relative; height:380px}
.hero-img{position:absolute; right:0; top:0; bottom:0; left:0; border-top-left-radius:220px; overflow:hidden}
.hero-img img{width:100%; height:100%; object-fit:cover}

.trust-band{padding:32px 28px; text-align:center}
.trust-band h3{margin:0 0 16px; font-size:18px; color:#122041}
.trust-avatars{display:flex; justify-content:center; flex-wrap:wrap; gap:12px}
.trust-avatars img{
  width:min(300px,60vw);
  height:auto;
  border-radius:999px;
  border:4px solid white;
  box-shadow:0 12px 30px rgba(15,23,42,0.18);
}

.about-identity,
.vision-mission,
.departments,
.objectives,
.core-values,
.department-modules{
  padding:60px 28px;
  margin:0 0 32px;
  background:white;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(4,15,45,0.08);
}
.about-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:32px;
  align-items:start;
}
.about-lead h3{
  margin:0 0 18px;
  font-size:30px;
  color:#001f6b;
}
.about-lead p{
  margin:0 0 18px;
  line-height:1.7;
  color:#1c2437;
}
.about-pillars{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.pillars-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--accent-2);
}
.about-pillars-card{
  background:linear-gradient(135deg,#001f6b,#052861);
  color:white;
  padding:28px;
  border-radius:24px;
  box-shadow:0 20px 46px rgba(0,11,44,0.45);
}
.about-pillars-card h4{
  margin:0 0 10px;
  font-size:20px;
}
.about-pillars-card ul{
  padding-left:18px;
  margin:0;
  line-height:1.6;
}

.vision-mission{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  background:linear-gradient(135deg,#f9fbff 0%,#eef3ff 100%);
}
.vision-card{
  background:white;
  padding:32px;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(16,28,67,0.08);
}
.vision-card h3{
  margin:0 0 12px;
  font-size:24px;
  color:#0f172a;
}
.vision-card p{
  margin:0;
  line-height:1.7;
  color:#475569;
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:28px;
}
.section-head h3{
  margin:0;
  font-size:28px;
  color:#0f172a;
}
.section-head p{
  margin:0;
  color:#475569;
  line-height:1.6;
}
.section-head.center{
  text-align:center;
  align-items:center;
}

.department-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.department-card{
  background:#f6f8ff;
  padding:26px;
  border-radius:20px;
  box-shadow:inset 0 0 0 1px rgba(0,31,107,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.department-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(4,12,32,0.12);
}
.department-number{
  font-size:34px;
  font-weight:800;
  color:rgba(0,31,107,0.25);
  display:block;
  margin-bottom:10px;
}
.department-card h4{
  margin:0 0 10px;
  font-size:18px;
  color:#06133a;
}
.department-card p{
  margin:0;
  color:#475569;
  line-height:1.5;
}

@media (max-width:900px){
  .department-grid{
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  }
}

.objectives{
  background:linear-gradient(135deg,#001f6b 0%,#E40046 100%);
  color:white;
}
.objectives .section-head h3,
.objectives .section-head p,
.objectives .eyebrow{
  color:white;
}
.objectives-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.objectives-grid article{
  background:rgba(255,255,255,0.08);
  border-radius:18px;
  padding:18px;
  line-height:1.6;
}
.objectives-grid strong{
  color:#ffd400;
}

@media (max-width:900px){
  .objectives-grid{
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  }
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.value-card{
  padding:24px;
  border-radius:22px;
  background:#f8fbff;
  box-shadow:0 16px 34px rgba(5,15,40,0.06);
  border:1px solid rgba(0,31,107,0.05);
}
.value-card h4{
  margin:0 0 8px;
  font-size:18px;
  color:#001f6b;
}
.value-card p{
  margin:0;
  color:#475569;
}

@media (max-width:900px){
  .values-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:600px){
  .values-grid{
    grid-template-columns:1fr;
  }
}

.module-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}
.module-card{
  background:#fdfefe;
  border-radius:28px;
  border:1px solid rgba(4,12,32,0.06);
  box-shadow:0 24px 48px rgba(6,13,34,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.module-card header{
  position:relative;
  padding:56px 32px 36px;
  background:linear-gradient(135deg,#001f6b 0%,#023089 100%);
  color:white;
  border-radius:28px 28px 0 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.module-card header h4{
  margin:0;
  font-size:22px;
  line-height:1.35;
}
.module-card header p{
  margin:0;
  color:rgba(255,255,255,0.85);
  line-height:1.55;
  max-width:520px;
}
.module-tag{
  position:absolute;
  top:24px;
  right:32px;
  padding:6px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.4);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.module-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  padding:30px 32px 36px;
  color:#1c2437;
  background:white;
}
.module-content h5{
  margin:0 0 12px;
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#001f6b;
}
.module-content ul{
  margin:0 0 18px;
  padding-left:20px;
  line-height:1.65;
}
.module-content ul li{
  margin-bottom:8px;
}
.module-content p{
  margin:0 0 14px;
  line-height:1.65;
}

.module-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(4,12,32,0.75);
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding:60px 16px;
  z-index:9999;
  backdrop-filter:blur(8px);
  overflow-y:auto;
  opacity:0;
  transition:opacity 0.3s ease;
}
.module-modal-overlay[hidden]{
  display:none;
}
.module-modal-overlay.active{
  opacity:1;
}
.module-modal{
  background:#f8fbff;
  border-radius:32px;
  max-width:1080px;
  width:100%;
  box-shadow:0 40px 80px rgba(3,8,20,0.35);
  position:relative;
}
.module-modal-content{
  max-height:calc(100vh - 160px);
  overflow-y:auto;
  padding:12px 12px 32px;
}
.module-modal-footer{
  display:flex;
  justify-content:center;
  padding:0 32px 32px;
  background:#f8fbff;
}
.module-modal-close-btn{
  padding:12px 28px;
  border-radius:999px;
  border:none;
  background:var(--accent);
  color:white;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(2,6,23,0.25);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.module-modal-close-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(2,6,23,0.35);
}
.module-modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.9);
  box-shadow:0 10px 24px rgba(4,12,32,0.18);
  font-size:28px;
  color:#0b1b3a;
  cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.module-modal-close:hover{
  transform:scale(1.05);
  box-shadow:0 14px 30px rgba(4,12,32,0.22);
}

.module-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(5,12,32,0.12);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width:960px){
  .about-grid{
    grid-template-columns:1fr;
  }
  .module-grid{
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  }
  .module-content{
    grid-template-columns:1fr;
  }
  .module-modal{
    border-radius:24px;
  }
  .module-modal-content{
    max-height:none;
  }
}

@media (min-width:960px){
  .module-card header{
    text-align:center;
    align-items:center;
  }
  .module-card header p{
    max-width:680px;
    margin:0 auto;
  }
}

.spotlight-cta{
  padding:48px 28px 60px;
  background:#050505;
  border-radius:28px;
  margin:0 28px 32px;
  position:relative;
  overflow:hidden;
}
.spotlight-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.12) 1px, transparent 0);
  background-size:32px 32px;
  opacity:0.35;
  pointer-events:none;
}
.spotlight-inner{
  position:relative;
  z-index:1;
  text-align:center;
  color:white;
  max-width:720px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.spotlight-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 16px;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:999px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:600;
}
.spotlight-inner h2{
  margin:0;
  font-size:36px;
  line-height:1.2;
  font-weight:800;
}
.spotlight-inner p{
  margin:0 auto;
  color:rgba(255,255,255,0.85);
  font-size:18px;
  line-height:1.7;
  max-width:640px;
}

@media (max-width:600px){
  .spotlight-inner h2{
    font-size:26px;
    line-height:1.3;
  }
  .spotlight-inner p{
    font-size:16px;
  }
}
.spotlight-btn {
    align-self: center;
    background: #d90049;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 32px rgb(228 0 70 / 32%);
}


.spotlight-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 36px rgba(255,212,0,0.45);
}

/* Avatars */
.avatars{display:flex; gap:-10px; margin-top:14px; align-items:center}
.avatars img{width:36px; height:36px; border-radius:50%; border:3px solid white; box-shadow:0 2px 6px rgba(2,6,23,0.12)}

/* Stats Block */
.stats-block{
  padding: 40px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  text-align: center;
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item{
  text-align: center;
}

.stat-number{
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label{
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Features */
.features{padding:28px;}
.features h3{margin:0 0 12px; font-size:22px}
.feature-description{
  margin:0 0 22px;
  color:#475569;
  line-height:1.6;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.feature-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 22px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(15,23,42,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  cursor:pointer;
}
.feature-icon{
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
}

.feature-card .info{
  display:flex;
  align-items:center;
  gap:12px;
}
.feature-card .title{
  font-weight:600;
  color:#0f172a;
}
.feature-arrow{
  font-size:22px;
  color:rgba(15,23,42,0.4);
}
.feature-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(15,23,42,0.12);
}
.feature-card.filled{
  color:white;
  box-shadow:0 16px 32px rgba(15,23,42,0.18);
}
.feature-card.filled .title{color:white}
.feature-card.filled .feature-arrow{color:white}
.feature-card.outline{
  background:white;
}
.accent-blue{background:var(--accent);}
.accent-teal{background:var(--accent-2);}
.accent-orange{background:#E40046;}
.feature-card.filled .feature-icon{color:white;}
.feature-card.outline .feature-icon{color:var(--accent);}

/* Proof section */
.proof{padding:28px 28px 40px}
.proof-header{display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap}
.proof-header h3{margin:0; font-size:22px}
.proof-header p{margin:0; color:#475569}
.proof-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:22px}
.proof-card{background:white; border-radius:14px; padding:20px; box-shadow:0 12px 28px rgba(15,23,42,0.08)}
.metric{font-size:42px; font-weight:800; color:var(--accent); margin-bottom:8px}
.quote{font-size:18px; font-weight:600; color:#0f172a; margin-bottom:12px}
.quote-author{margin:0; color:#64748b; font-size:14px}

/* Integrations */
.integrations{padding:28px; background:#f1f5ff; border-radius:18px; margin:0 28px}
.integration-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin-top:16px}
.integration-card{background:white; padding:18px; border-radius:12px; box-shadow:0 10px 24px rgba(15,23,42,0.06)}
.integration-card h4{margin:0 0 8px}
.integration-card p{margin:0; color:#475569}

/* CTA panel */
.cta-panel{padding:40px 28px}
.cta-panel-content{background:#0f1e3c; color:white; border-radius:20px; padding:32px; display:flex; flex-direction:column; gap:16px; box-shadow:0 20px 40px rgba(6,13,34,0.4)}
.cta-panel-content h3{margin:0;font-size:28px}
.cta-actions{display:flex; gap:16px; flex-wrap:wrap}
.text-link{color:white; font-weight:600; text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.4); padding-bottom:2px}
.cta.secondary{background:white; color:#0f1e3c; border-radius:12px; padding:12px 20px; font-weight:700}

/* FAQ + Contact */
.faq-contact{display:grid; grid-template-columns:2fr 1fr; gap:24px; padding:28px; flex-wrap:wrap}
.faq-contact .faq, .faq-contact .contact{background:white; border-radius:16px; padding:24px; box-shadow:0 12px 24px rgba(15,23,42,0.08)}
.faq-item{margin-bottom:16px}
.faq-item h4{margin:0 0 6px}
.faq-item p{margin:0; color:#475569}
.contact p{color:#475569}
.contact a{text-decoration:none; font-weight:600}

.app-promo{padding:40px 28px 60px; display:flex; flex-direction:column; gap:28px; align-items:center; text-align:center}
.app-hero{position:relative; width:100%; max-width:900px; border-radius:26px; overflow:hidden; box-shadow:0 20px 40px rgba(6,20,60,0.15)}
.app-hero img{width:100%; height:100%; object-fit:cover; display:block}
.device-frame{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:220px; height:420px; border-radius:32px; background:white; box-shadow:0 20px 40px rgba(0,0,0,0.2); padding:14px; display:flex; flex-direction:column; justify-content:flex-start}
.device-notch{width:60%; height:8px; background:#111927; border-radius:0 0 6px 6px; align-self:center}
.device-screen{background:#f3f5ff; border-radius:22px; margin-top:12px; flex:1; display:flex; flex-direction:column}
.device-header{padding:14px; font-weight:700; color:#0f172a}
.device-body{padding:0 14px 14px; color:#475569; font-size:14px; line-height:1.5}
.app-copy h3{margin:0 0 8px; font-size:26px}
.store-badges{display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-top:12px}
.store-badges img{height:44px}
.app-reasons{display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:18px; width:100%; max-width:900px}
.reason{background:white; border-radius:16px; padding:18px; box-shadow:0 10px 20px rgba(15,23,42,0.08)}
.reason-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:10px;
  box-shadow:0 8px 16px rgba(15,23,42,0.12);
  background:linear-gradient(145deg,#ffffff,#eef2ff);
  border:1px solid rgba(15,23,42,0.05);
}
.reason h4{margin:0 0 6px}
.reason p{margin:0; color:#475569}

.powered-agc{padding:24px 28px; text-align:center; background:#f8fbff; border-top:1px solid #edf1fb}
.powered-wrapper{display:flex; align-items:center; justify-content:center; gap:12px; font-weight:600; color:#1c2437}
.powered-wrapper img{height:32px}
.agc-name{letter-spacing:0.12em}

@media (max-width:600px){
  .powered-wrapper{
    flex-direction:column;
    gap:6px;
    font-size:14px;
    line-height:1.4;
  }
  .agc-name{
    letter-spacing:0.08em;
  }
}

/* responsive */
@media (max-width:1100px){
  .hero{grid-template-columns:1fr 420px}
  h1{font-size:36px}
}
@media (max-width:880px){
  .hero{grid-template-columns:1fr;}
  .hero-right{order: -1; height:260px}
  .hero-img{border-top-left-radius:120px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .faq-contact{grid-template-columns:1fr}
}
@media (max-width:520px){
  body{padding:0}
  .wrap{padding:16px}
  header{padding:6px 10px}
  h1{font-size:26px}
  .hero-title{font-size:28px; line-height:1.15}
  .hero-right{height:200px}
  .hero-img{border-top-left-radius:60px}
  .logo-full{height:40px; width:auto;}
  .grid{grid-template-columns:1fr}
  .card{padding:14px}
}

/* small helpers */
.muted{color:var(--muted); font-size:14px}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-body {
  padding: 24px;
}

.modal-body p {
  margin: 0 0 24px;
  color: #6b7280;
  line-height: 1.6;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .waitlist-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .waitlist-form .form-group.full-width,
  .waitlist-form .submit-btn,
  .waitlist-form .form-error {
    grid-column: 1 / -1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 99, 214, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
  cursor: pointer;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.form-group.has-error label {
  color: #b42318;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #b42318;
  box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.1);
}

.field-error {
  margin: -4px 0 0;
  font-size: 13px;
  color: #b42318;
}

.form-error {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(180, 35, 24, 0.08);
  color: #82160f;
  font-size: 14px;
}

.submit-btn.loading {
  opacity: 0.7;
  cursor: progress;
}

.submit-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #0a52cc;
}

.submit-btn:active {
  transform: scale(0.98);
}

/* Success message styles */
.success-message {
  display: none;
  text-align: center;
  padding: 32px;
}

.waitlist-form .success-message {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}

.success-message.show {
  display: block;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 24px;
}

.success-message h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.success-message p {
  margin: 0;
  color: #6b7280;
}

/* Training Section Styles */
.training {
  padding: 48px 28px 60px;
  background: linear-gradient(135deg,#f6f8ff 0%,#eef6ff 100%);
  border-radius:32px;
  margin:0 14px;
  box-shadow:0 28px 60px rgba(5,12,32,0.08);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.training-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: none;
  box-shadow:0 18px 40px rgba(5,10,30,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.training-card:hover {
  transform: translateY(-4px);
  box-shadow:0 26px 48px rgba(5,10,30,0.16);
}

.training-icon {
  font-size: 32px;
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(228,0,70,0.1);
  color:var(--accent);
}

.training-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #040b1a;
}

.training-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.training-card li {
  padding-left: 20px;
  font-size: 14px;
  color: #1c2437;
  position: relative;
  line-height:1.5;
}

.training-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.training-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}

.feature-item .feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #040b1a;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--muted);
}

.courses{
  padding:40px 28px 60px;
}
.section-head.center{
  text-align:center;
  max-width:720px;
  margin:0 auto 32px;
}
.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}
.course-card{
  display:flex;
  flex-direction:column;
  background:white;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:0 18px 36px rgba(5,10,30,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
}
.course-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 48px rgba(5,10,30,0.14);
}
.course-meta{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.course-tag{
  align-self:flex-start;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(228,0,70,0.12);
  color:var(--accent);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.course-meta h4{
  margin:0;
  font-size:20px;
  color:#04102c;
}
.course-meta p{
  margin:0;
  color:#4b5567;
  line-height:1.6;
}

/* Mobile responsive for modal */
@media (max-width:520px) {
  .modal-content {
    width: 95%;
    margin: 16px;
  }
  
  .modal-header {
    padding: 16px 16px 0;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 16px;
  }
  
  .submit-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Training section responsive */
  .training {
    padding: 24px 18px;
  }

  .impact-grid{
    grid-template-columns:1fr;
  }
  .impact-card{
    min-height:auto;
  }
  .hero-copy{
    font-size:15px;
    line-height:1.6;
  }
  .training-card {
    padding: 20px;
  }

  .training-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .feature-item {
    padding: 16px;
  }
}
