* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.welcome-container {
  width: 100%;
  max-width: 1200px;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-header {
  text-align: center;
  padding: 40px 20px;
  color: #333;
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  height: 100px;
  display: block;
  margin: 0 auto 20px;
  filter: none;
  animation: none;
}

.welcome-header h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: none;
  color: #333;
}

.tagline {
  font-size: 1.2em;
  opacity: 0.7;
  margin-top: 10px;
  color: #666;
}

.customer-selection {
  background: white;
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 30px 0;
  border: 1px solid #e5e5e5;
}

.customer-selection h2 {
  text-align: center;
  color: #333;
  font-size: 2.2em;
  margin-bottom: 40px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-weight: 700;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.selection-card {
  background: #f8f8f8;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.selection-card::before {
  display: none;
}

.selection-card:hover {
  transform: translateY(-3px);
  border-color: #e31837;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.selection-card.featured {
  background: #e31837;
  color: white;
  grid-column: 1 / -1;
  border-color: #e31837;
}

.selection-card.featured .card-icon {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.selection-card.featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 24, 55, 0.3);
  border-color: #e31837;
}

.card-icon {
  font-size: 1.6em;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin: 0 auto 15px auto;
  position: relative;
  z-index: 1;
  color: #e31837;
  padding: 12px 20px;
  background: rgba(227, 24, 55, 0.08);
  border-radius: 4px;
  border: 2px solid #e31837;
  display: inline-block;
  width: fit-content;
}

.selection-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: inherit;
  position: relative;
  z-index: 1;
}

.selection-card p {
  font-size: 1em;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.quick-info {
  text-align: center;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #e31837;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #e31837;
}

.quick-info h3 {
  color: #333;
  font-size: 1.6em;
  margin-bottom: 12px;
  font-weight: 700;
}

.quick-info p {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e31837;
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.2s ease;
  box-shadow: none;
}

.contact-btn i {
  font-size: 1.1em;
}

.contact-btn:hover {
  transform: none;
  box-shadow: none;
  background: #c01830;
}

.contact-btn.secondary {
  background: white;
  color: #e31837;
  border: 2px solid #e31837;
}

.contact-btn.secondary:hover {
  background: #e31837;
  color: white;
}

footer {
  text-align: center;
  padding: 30px 25px;
  color: #999;
  font-size: 0.95em;
  opacity: 0.9;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-links a {
  color: #999;
  font-size: 1.6em;
  transition: all 0.2s ease;
}

.social-links a:hover {
  transform: none;
  opacity: 1;
  color: #e31837;
}

footer p {
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .welcome-header h1 {
    font-size: 2em;
  }

  .logo {
    height: 80px;
  }

  .tagline {
    font-size: 1.1em;
  }

  .customer-selection {
    padding: 30px 20px;
  }

  .customer-selection h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .selection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .selection-card {
    padding: 25px 20px;
  }

  .card-icon {
    font-size: 1.5em;
  }

  .selection-card h3 {
    font-size: 1.3em;
  }

  .quick-info {
    padding: 20px;
  }

  .quick-info h3 {
    font-size: 1.5em;
  }

  .quick-info p {
    font-size: 1em;
  }

  .contact-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .welcome-header h1 {
    font-size: 1.6em;
  }

  .logo {
    height: 60px;
  }

  .tagline {
    font-size: 1em;
  }

  .customer-selection h2 {
    font-size: 1.5em;
  }

  .card-icon {
    font-size: 1.3em;
  }

  .selection-card h3 {
    font-size: 1.2em;
  }
}
