.elementor-1770 .elementor-element.elementor-element-f945128{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1770 .elementor-element.elementor-element-dad62be > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-dad62be *//* ===============================
   PIMscaN – PREMIUM STYLES
   Namespace: pimx-
================================ */

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

.pimx-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Poppins', system-ui, sans-serif;
  color: #1e2634;
  box-sizing: border-box;
}

/* Reset for internal elements */
.pimx-wrapper * {
  box-sizing: border-box;
}

/* ===== HERO SECTION ===== */
.pimx-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px;
  /* Premium Gradient Background */
  background: radial-gradient(circle at top left, #ffffff, #eef5ff, #d8f5f7);
  border-radius: 32px;
  box-shadow: 
    0 20px 40px -10px rgba(7, 26, 61, 0.1),
    0 0 0 1px rgba(255,255,255,0.8) inset;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.pimx-hero-content {
  flex: 1 1 400px;
  z-index: 2;
}

.pimx-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 167, 179, 0.1);
  color: #008c96;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 167, 179, 0.2);
}

.pimx-title {
  font-size: 38px; /* Increased size */
  line-height: 1.15;
  color: #071a3d;
  margin: 0 0 15px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.pimx-title span {
  background: linear-gradient(135deg, #00a7b3, #2d79d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pimx-subtitle {
  margin: 0 0 25px 0;
  color: #556075;
  font-size: 16px;
  line-height: 1.6;
  max-width: 90%;
}

/* Feature List with Icons */
.pimx-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pimx-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #2d3748;
}

.pimx-feature-list .icon {
  margin-right: 10px;
  font-size: 18px;
}

/* ===== BUTTONS & CTA ===== */
.pimx-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pimx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Primary Button Glow Effect */
.pimx-btn-primary {
  background: linear-gradient(135deg, #00a7b3, #008c96);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 167, 179, 0.3);
}

.pimx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 167, 179, 0.5);
  background: linear-gradient(135deg, #00b8c5, #009aa5);
}

/* Outline Button */
.pimx-btn-secondary, .pimx-btn-outline {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #475569;
}

.pimx-btn-outline:hover {
  border-color: #00a7b3;
  color: #00a7b3;
  background: rgba(0, 167, 179, 0.05);
}

/* White Button (Footer) */
.pimx-btn-white {
  background: #ffffff;
  color: #071a3d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.pimx-btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.pimx-powered {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 10px;
}

/* ===== LOGO ANIMATION ===== */
.pimx-hero-logo {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  position: relative;
}

.logo-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 167, 179, 0.2) 0%, rgba(255,255,255,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.floating-logo {
  max-width: 260px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(6, 20, 45, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ===== SECTIONS (GLASS & CARDS) ===== */
.pimx-section {
  margin-top: 30px;
  padding: 35px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #edf2f7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pimx-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(7, 26, 61, 0.08);
}

.pimx-heading {
  font-size: 24px;
  color: #0f172a;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.text-center { text-align: center; }
.text-center-sub { 
  text-align: center; 
  color: #64748b; 
  margin-bottom: 30px; 
}

/* ===== HOW IT WORKS GRID ===== */
.pimx-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.pimx-step-card {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pimx-step-card:hover {
  background: #ffffff;
  border-color: #00a7b3;
  box-shadow: 0 10px 20px rgba(0, 167, 179, 0.1);
  transform: translateY(-3px);
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  color: rgba(0, 167, 179, 0.1);
  position: absolute;
  top: 10px;
  right: 15px;
}

.pimx-step-card h3 {
  margin: 10px 0;
  color: #0f172a;
  font-size: 18px;
}

.pimx-step-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.pimx-privacy {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  margin-top: 20px;
  background: #f1f5f9;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  /* Center the bubble */
  margin-left: auto;
  margin-right: auto;
  display: table; 
}

/* ===== FINAL CTA ===== */
.pimx-final {
  margin-top: 40px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.final-content h2 {
  margin: 0 0 5px 0;
  font-size: 26px;
}

.pimx-footer-text {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .pimx-hero {
    padding: 24px;
    text-align: center;
  }
  
  .pimx-hero-content, .pimx-hero-logo {
    flex: 1 1 100%;
  }

  .pimx-cta {
    justify-content: center;
  }
  
  .pimx-title {
    font-size: 28px;
  }

  .pimx-final {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .pimx-feature-list li {
    justify-content: center;
  }
}/* End custom CSS */