body {
  /*padding-top: 80px;*/
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #0b1020;
}

.premium-nav {
  background: rgba(5,8,20,0.9);
  backdrop-filter: blur(10px);
}

/* Static Hero Section */
.hero-enterprise {
  position: relative;
  background: radial-gradient(circle at top, #1e2a5a, #050814);
  padding: 0 0 0;  /* Reduced top padding for less gap */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(6,10,30,0.75), rgba(6,10,30,0.85));
  z-index: 1;
}

.hero-enterprise .container {
  position: relative;
  z-index: 2;
}

.hero-mockup {
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.section-dark {
  background: #0b1020;
  padding: 80px 0;
}

.section-light {
  background: #ffffff;
  padding: 80px 0;
}

.glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  height: 100%;
}

.pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card.premium {
  background: linear-gradient(135deg,#ffc107,#ff9800);
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}

.feature-icon {
  font-size: 42px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #000;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Floating Contact Buttons */
.float-btn {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  font-size: 24px;
  color: #fff;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

.float-btn.whatsapp {
  bottom: 20px;
  background: #25d366;
}

.float-btn.email {
  bottom: 86px;
  background: #0d6efd;
}

/* Client Trust Section */
.clients-enterprise {
  background: #0b1020;
  color: #fff;
  padding: 110px 0;
}

.trust-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.trust-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.trust-header p {
  font-size: 18px;
  color: #b5bdd8;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.metric span {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #ffc107;
}

.metric p {
  margin-top: 8px;
  font-size: 15px;
  color: #c7cce3;
}

/* Logo Strip */
.logo-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 35px 0;
  margin-bottom: 40px;
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: scrollLogos 30s linear infinite;
  align-items: center;
}

.logo-track img {
  height: 55px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-footer {
  text-align: center;
  font-size: 16px;
  color: #b5bdd8;
}

/* Footer */
.footer-pro {
  background: #0b1020;
  color: #cbd5e1;
  padding: 70px 0 30px;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffc107;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #25d366;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #94a3b8;
}