@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family:'Inter',Arial,sans-serif;
  background:#f6f8fb;
  color:#0f172a;
}

a{text-decoration:none;color:inherit}

.header{
  width:100%;
  padding:22px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:50;
}

.logo{
  font-size:24px;
  font-weight:900;
  letter-spacing:-1px;
}

.logo span{color:#2563eb}

.nav{
  display:flex;
  gap:24px;
  align-items:center;
}

.nav a{
  font-size:14px;
  font-weight:700;
  color:#334155;
}

.nav a:hover{color:#2563eb}

.lang{
  padding:9px 12px;
  border:1px solid #dbe1ea;
  border-radius:12px;
  background:#fff;
  font-weight:700;
}

.hero{
  padding:95px 7% 70px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.16), transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f6f8fb 100%);
}

.badge{
  display:inline-flex;
  padding:10px 16px;
  border:1px solid #dbeafe;
  background:#eff6ff;
  color:#2563eb;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  margin-bottom:24px;
}

.hero h1{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-3px;
  margin-bottom:28px;
  max-width:820px;
}

.hero p{
  font-size:21px;
  line-height:1.65;
  color:#475569;
  max-width:700px;
  margin-bottom:36px;
}

.btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 26px;
  border-radius:16px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.primary{
  background:#2563eb;
  color:#fff;
  box-shadow:0 14px 35px rgba(37,99,235,.25);
}

.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 45px rgba(37,99,235,.35);
}

.secondary{
  background:#fff;
  border:1px solid #dbe1ea;
  color:#0f172a;
}

.secondary:hover{
  transform:translateY(-2px);
  border-color:#2563eb;
}

.trust{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.trust span{
  padding:9px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e5e7eb;
  color:#475569;
  font-size:13px;
  font-weight:700;
}

.hero-visual{
  position:relative;
}

.hero-visual img{
  width:100%;
  border-radius:34px;
  box-shadow:0 35px 90px rgba(15,23,42,.22);
}

.floating-card{
  position:absolute;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:22px;
  padding:18px 22px;
  box-shadow:0 25px 55px rgba(15,23,42,.18);
}

.floating-card strong{
  display:block;
  font-size:20px;
  margin-bottom:4px;
}

.floating-card span{
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.floating-card.top{
  top:28px;
  left:-28px;
}

.floating-card.bottom{
  bottom:28px;
  right:-28px;
}

.stats{
  margin:-20px 7% 0;
  background:#111827;
  color:#fff;
  border-radius:28px;
  padding:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  box-shadow:0 25px 70px rgba(15,23,42,.25);
}

.stats div{
  text-align:center;
  border-right:1px solid rgba(255,255,255,.12);
}

.stats div:last-child{border-right:0}

.stats strong{
  display:block;
  font-size:28px;
  margin-bottom:6px;
}

.stats span{
  color:#cbd5e1;
  font-size:14px;
  font-weight:700;
}

.section{
  padding:80px 7%;
}

.intro{
  text-align:center;
  max-width:980px;
  margin:0 auto;
}

.intro h2{
  font-size:44px;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.intro p{
  font-size:19px;
  color:#64748b;
  line-height:1.7;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.card{
  background:#fff;
  padding:34px;
  border-radius:28px;
  border:1px solid #e5e7eb;
  box-shadow:0 20px 55px rgba(15,23,42,.06);
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 75px rgba(15,23,42,.1);
}

.icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:#eff6ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin-bottom:22px;
}

.card h3{
  font-size:24px;
  margin-bottom:14px;
}

.card p{
  color:#64748b;
  line-height:1.7;
}

.industries{
  margin:20px 7% 80px;
  padding:60px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:34px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:45px;
  align-items:center;
}

.industries h2{
  font-size:38px;
  margin-bottom:16px;
}

.industries p{
  color:#64748b;
  line-height:1.7;
  font-size:18px;
}

.industry-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.industry-grid span{
  padding:14px 18px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:999px;
  font-weight:800;
  color:#334155;
}

.coordinator{
  margin:0 7% 80px;
  padding:55px 60px;
  background:linear-gradient(135deg,#111827,#1e293b);
  border-radius:34px;
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
}

.coordinator h2{
  font-size:38px;
  letter-spacing:-1.5px;
  margin-bottom:12px;
}

.coordinator p{
  color:#cbd5e1;
  font-size:18px;
  line-height:1.6;
}

.band{
  padding:90px 7%;
  background:#2563eb;
  color:#fff;
  text-align:center;
}

.band h2{
  font-size:46px;
  letter-spacing:-2px;
  margin-bottom:18px;
}

.band p{
  font-size:20px;
  color:#dbeafe;
}

footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:34px 7%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:14px;
}

footer strong{
  color:#fff;
}

@media(max-width:950px){
  .nav a{display:none}
  .hero{
    grid-template-columns:1fr;
    padding-top:65px;
  }
  .hero h1{
    font-size:42px;
    letter-spacing:-1.5px;
  }
  .hero p{font-size:18px}
  .floating-card{display:none}
  .stats{grid-template-columns:1fr 1fr}
  .stats div{border-right:0}
  .cards{grid-template-columns:1fr}
  .industries{grid-template-columns:1fr;padding:35px}
  .coordinator{flex-direction:column;align-items:flex-start;padding:38px}
  footer{flex-direction:column}
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.pricing-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:32px;
  padding:42px;
  box-shadow:0 22px 60px rgba(15,23,42,.07);
}

.pricing-card.featured{
  background:linear-gradient(135deg,#111827,#1e293b);
  color:#fff;
}

.plan-label{
  display:inline-flex;
  padding:9px 14px;
  border-radius:999px;
  background:#eff6ff;
  color:#2563eb;
  font-weight:900;
  font-size:12px;
  margin-bottom:22px;
}

.featured .plan-label{
  background:#2563eb;
  color:#fff;
}

.pricing-card h3{
  font-size:32px;
  margin-bottom:14px;
}

.pricing-card p{
  color:#64748b;
  line-height:1.7;
  margin-bottom:24px;
}

.featured p{
  color:#cbd5e1;
}

.pricing-card ul{
  list-style:none;
  margin-bottom:30px;
}

.pricing-card li{
  padding:10px 0;
  color:#334155;
  font-weight:700;
}

.featured li{
  color:#e5e7eb;
}

.pricing-card li::before{
  content:"✓ ";
  color:#2563eb;
  font-weight:900;
}

@media(max-width:950px){
  .pricing-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   PRICING
========================= */

.plans{
padding:90px 7%;
}

.plans h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.pricing{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1300px;
margin:auto;
}

.price-card{
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.price-card.featured{
background:linear-gradient(135deg,#07142c,#10254f);
color:#fff;
}

.tag{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:#2563eb;
color:#fff;
font-size:13px;
font-weight:700;
margin-bottom:25px;
}

.price-card h3{
font-size:34px;
margin-bottom:10px;
}

.price{
font-size:56px;
font-weight:800;
margin:25px 0;
}

.price-card ul{
list-style:none;
padding:0;
margin:30px 0;
}

.price-card ul li{
margin-bottom:14px;
font-size:18px;
}

.price-card .btn{
display:inline-block;
margin-top:20px;
}

/* =========================
   INDUSTRIES
========================= */

.industries{
padding:90px 7%;
text-align:center;
}

.industries h2{
font-size:42px;
margin-bottom:15px;
}

.industry-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:16px;
margin-top:40px;
}

.industry-grid span{
padding:14px 24px;
background:#fff;
border-radius:999px;
font-weight:600;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

.pricing{
grid-template-columns:1fr;
}

.plans h2,
.industries h2{
font-size:32px;
}

.price{
font-size:42px;
}

}