* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ===== HERO ===== */
.hero {
  background: #f2f7fd;
  padding: 120px 6%;
}

.hero-wrap {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.hero-left .badge {
  display: inline-block;
  background: #e3efff;
  color: #1a4fd8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: 3.4rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-left h1 span {
  color: #1a4fd8;
}

.hero-left p {
  max-width: 520px;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.btn-primary {
  background: #22c55e;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  background: #1a4fd8;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.hero-trust {
  font-size: 14px;
  opacity: 0.85;
}

.hero-right img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

/* ===== CORE SERVICES ===== */
.core-services {
  padding: 110px 6%;
  background: #ffffff;
  text-align: center;
}

.core-services h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.core-services .sub {
  opacity: 0.75;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 35px;
}

.service-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 25px 55px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  animation: fadeUp 0.9s ease both;
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

.service-box.highlight {
  border: 2px solid #1a4fd8;
}

.service-box .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.service-box h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-box p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 18px;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.service-box ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

.service-box a {
  display: inline-block;
  background: linear-gradient(120deg,#1a4fd8,#22c55e);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}
/* ===== REVOLZI STATS SECTION ===== */
.revolzi-stats {
  padding: 90px 6%;
  background: linear-gradient(180deg,#f9fbff,#ffffff);
}

.stats-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 40px;
}

.stat-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
    rgba(26,79,216,0.08),
    transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

/* ICON */
.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* ICON COLORS (CUSTOM – NOT COPY) */
.stat-icon.clients {
  background: linear-gradient(135deg,#dbeafe,#93c5fd);
}

.stat-icon.secure {
  background: linear-gradient(135deg,#dcfce7,#86efac);
}

.stat-icon.support {
  background: linear-gradient(135deg,#fce7f3,#f9a8d4);
}

.stat-card h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a4fd8;
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

/* MOBILE */
@media(max-width:768px){
  .revolzi-stats {
    padding: 70px 5%;
  }
}
