
/*
Theme Name: KrogerPro Premium UI
Theme URI: https://krogerpro.com
Author: OpenAI
Description: Premium colorful enterprise UI inspired by the generated KrogerPro design.
Version: 2.0
*/

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

body{
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg,#020617,#0f172a,#1e1b4b);
  color:white;
  overflow-x:hidden;
}

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

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  padding:20px 70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(18px);
  background:rgba(2,6,23,0.65);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:34px;
  font-weight:800;
}

.logo span{
  background:linear-gradient(90deg,#06b6d4,#3b82f6,#8b5cf6,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

nav{
  display:flex;
  gap:32px;
  color:#cbd5e1;
}

.hero{
  min-height:100vh;
  padding:180px 70px 120px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.badge{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(6,182,212,0.15),rgba(139,92,246,0.15));
  border:1px solid rgba(6,182,212,0.2);
  color:#67e8f9;
  margin-bottom:25px;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
  margin-bottom:24px;
}

.hero p{
  color:#cbd5e1;
  font-size:20px;
  line-height:1.7;
  max-width:700px;
}

.buttons{
  margin-top:40px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn-primary{
  padding:18px 36px;
  border-radius:18px;
  background:linear-gradient(90deg,#06b6d4,#3b82f6,#8b5cf6);
  color:white;
  font-weight:700;
  box-shadow:0 20px 40px rgba(59,130,246,0.35);
}

.btn-secondary{
  padding:18px 36px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.05);
}

.dashboard{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:34px;
  padding:30px;
  backdrop-filter:blur(20px);
  box-shadow:0 25px 80px rgba(59,130,246,0.18);
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.card{
  background:#0f172a;
  border-radius:24px;
  padding:26px;
  border:1px solid rgba(255,255,255,0.06);
}

.card h3{
  font-size:14px;
  color:#94a3b8;
  margin-bottom:12px;
}

.metric{
  font-size:40px;
  font-weight:800;
}

.analytics{
  background:#0f172a;
  border-radius:24px;
  padding:30px;
  min-height:260px;
  border:1px solid rgba(255,255,255,0.06);
}

.bar{
  height:14px;
  border-radius:999px;
  margin-top:18px;
}

.bar1{
  width:85%;
  background:linear-gradient(90deg,#06b6d4,#3b82f6);
}

.bar2{
  width:65%;
  background:linear-gradient(90deg,#10b981,#84cc16);
}

.bar3{
  width:75%;
  background:linear-gradient(90deg,#ec4899,#8b5cf6);
}

.services{
  padding:120px 70px;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:54px;
  margin-top:14px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.service-card{
  padding:36px;
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(6,182,212,0.35);
}

.icon{
  width:65px;
  height:65px;
  border-radius:20px;
  background:linear-gradient(135deg,#06b6d4,#8b5cf6);
  margin-bottom:24px;
}

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

.service-card p{
  color:#cbd5e1;
  line-height:1.7;
}

.cta{
  margin:100px 70px;
  padding:90px 60px;
  border-radius:42px;
  text-align:center;
  background:linear-gradient(90deg,#06b6d4,#3b82f6,#8b5cf6,#ec4899);
}

.cta h2{
  font-size:58px;
  margin-bottom:20px;
}

.cta p{
  max-width:900px;
  margin:auto;
  line-height:1.8;
  font-size:20px;
}

footer{
  padding:50px;
  text-align:center;
  color:#94a3b8;
}

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

  .hero h1{
    font-size:52px;
  }

  nav{
    display:none;
  }

  .cta h2{
    font-size:42px;
  }
}
