.webdev-msc-container.container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.webdev-msc-container .back-arrow {
  width: 40px;
  height: 40px;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none !important;
}

.webdev-msc-container .back-arrow:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(-4px);
}

.webdev-msc-container .logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
  cursor: pointer;
}

.webdev-msc-container .header {
  margin-top: 15px;
  margin-bottom: 50px;
  column-gap: 16px;
}

.webdev-msc-container .header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.webdev-msc-container .header p {
  color: #7f8c8d;
  font-size: 1.1rem;
}

.webdev-msc-container .logo-cont {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}

.webdev-msc-container .logo-cont .logo-text-cont {
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.webdev-msc-container .cards-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.webdev-msc-container .card {
  background: white;
  flex: 0 0 50%;
  max-width: 50%;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  border: 2px solid transparent;

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.webdev-msc-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #ff9d00;
}

.webdev-msc-container .tier-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.webdev-msc-container .tier-badge.free {
  background: #e8f5e9;
  color: #2e7d32;
}

.webdev-msc-container .tier-badge.premium {
  background: #fff3e0;
  color: #e65100;
}

.webdev-msc-container .card h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.webdev-msc-container .card .subtitle {
  color: #ff9d00;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.webdev-msc-container .features {
  list-style: none;
  margin-bottom: 30px;
}

.webdev-msc-container .features li {
  padding: 10px 0;
  color: #555;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.webdev-msc-container .features li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.2rem;
}

.webdev-msc-container .cta-button {
    width: 100% !important;
    padding: 14px 28.5px 14px 28.5px;
    font-family: "Poppins", sans-serif;
    display: block;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    line-height: initial !important;
}

.webdev-msc-container .cta-button.free {
  background: linear-gradient(135deg, #ff9d00 0%, #ff6b00 100%);
  color: white;
}

.webdev-msc-container .cta-button.free:hover {
  background: linear-gradient(135deg, #ff8800 0%, #ff5500 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.webdev-msc-container .cta-button.premium {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
}

.webdev-msc-container .cta-button.premium:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.webdev-msc-container .disclaimer {
  text-align: center;
  color: #95a5a6;
  font-size: 0.8rem;
  margin-top: 10px;
}

.webdev-msc-container .email-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.webdev-msc-container .email-input:focus {
  outline: none;
  border-color: #ff9d00;
}

.webdev-msc-container .note {
  text-align: center;
  color: #7f8c8d;
  font-size: 0.85rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .webdev-msc-container .header {
    text-align: center;
    margin-block: 50px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .webdev-msc-container .logo-cont {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 0px;
  }
  .webdev-msc-container .header h1 {
    font-size: 2rem;
  }

  .webdev-msc-container .cards-container {
    grid-template-columns: 1fr;
  }

  .webdev-msc-container .card {
    padding: 25px;
  }
}

.webdev-msc-container .success-message {
  background: #4caf50;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
