/* ===========================
   HOME PAGE STYLES
   =========================== */

.header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 3px solid #0b8c1a;
  padding-bottom: 25px;
}

.subtitle {
  color: #666;
  font-size: 18px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #0b8c1a 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* ===========================
   FEATURES GRID
   =========================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.feature {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  background: #f0f2ff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* ===========================
   INTRO SECTIONS
   =========================== */
.intro {
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9ff;
  border-left: 4px solid #0b8c1a;
  border-radius: 4px;
}

.intro h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}

.intro ul {
  margin-left: 20px;
}

.intro li {
  margin: 10px 0;
  color: #555;
}

.intro li strong {
  color: #0b8c1a;
}

/* ===========================
   TRUST BADGE
   =========================== */
.trust-badge {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 14px;
  font-style: italic;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .logo {
    padding: 12px 20px;
  }

  .logo-icon {
    font-size: 36px;
  }

  .logo-name {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 11px;
  }

  .subtitle {
    font-size: 16px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 14px;
  }

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

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-image {
    width: 40px;
    height: 40px;
  }
}