/* ===================================
   COMPONENT STYLES - Buttons, Cards, etc.
   =================================== */

/* Navigation Components */
.navbar {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar-brand {
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Components */
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,250,252,0.3) 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(2, 6, 23, 0.12);
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 1rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #374151;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #d1d5db;
  transform: translateY(-1px);
}

/* Icon Components */
.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
}

/* Table Components */
.comparison-table {
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,250,252,0.3) 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.table-row:last-child {
  border-bottom: none;
}

/* Step Components */
.step-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.5rem;
}

/* Contact Components */
.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,250,252,0.3) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
  text-align: center;
}

.contact-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-feature:hover .contact-icon {
  color: #10b981;
  transform: scale(1.1);
}

.contact-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}