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

:root {
  --bg-primary: #0f0320;
  --bg-secondary: #1a0b2e;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-magenta: #d946ef;
  --text-primary: #ffffff;
  --text-secondary: #c4b5fd;
  --border-color: rgba(168, 85, 247, 0.2);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f0320, #1a0b2e, #2d1b4e);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 3, 32, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.navbar-actions {
  display: flex;
  gap: 1rem;
}

.btn-signin, .btn-registration {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-signin {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-signin:hover {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
}

.btn-registration {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  border: none;
  color: white;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.btn-registration:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
}

/* Hero */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero-background-modern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb-purple, .gradient-orb-pink {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 25s ease-in-out infinite;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #a855f7, transparent);
  top: -250px;
  right: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d946ef, transparent);
  bottom: -200px;
  left: -150px;
  animation-delay: -10s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ec4899, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translate(0); }
  33% { transform: translate(60px, -60px); }
  66% { transform: translate(-40px, 40px); }
}

.hero-content-clean {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}

.hero-title-clean {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

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

.gradient-text-purple {
  background: linear-gradient(135deg, #d946ef, #ec4899, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 4.2rem;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description-clean {
  font-size: 1.2rem;
  color: rgba(196, 181, 253, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-buttons-clean {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.btn-registration-hero, .btn-signin-hero, .btn-video-hero {
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  color: white;
  display: inline-block;
}

.btn-registration-hero {
  background: linear-gradient(135deg, #d946ef, #ec4899);
  box-shadow: 0 8px 30px rgba(217, 70, 239, 0.6);
  position: relative;
  overflow: hidden;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(217, 70, 239, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 40px rgba(217, 70, 239, 0.8), 0 0 0 15px rgba(217, 70, 239, 0.1);
    transform: scale(1.02);
  }
}

.btn-registration-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(217, 70, 239, 0.8);
  animation: none;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 100%; }
}

.btn-signin-hero {
  background: rgba(15, 3, 32, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(10px);
}

.btn-signin-hero:hover {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.15);
  transform: translateY(-3px);
}

.btn-video-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 3, 32, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(10px);
}

.btn-video-hero:hover {
  border-color: var(--accent-pink);
  background: rgba(217, 70, 239, 0.1);
}

/* Features */
.features-modern {
  padding: 100px 0;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-modern {
  background: rgba(15, 3, 32, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.feature-content {
  flex: 1;
}

.feature-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.feature-title-modern {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.feature-description-modern {
  color: rgba(196, 181, 253, 0.8);
  line-height: 1.7;
  max-width: 320px;
}

.feature-visual-container {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  font-size: 120px;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
  transition: transform 0.5s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-card-modern:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  animation: none;
}

/* Verticals */
.verticals {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.verticals-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.verticals-title {
  font-size: 2.3rem;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verticals-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vertical-card {
  background: rgba(15, 3, 32, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-50px);
}

.vertical-card:hover,
.vertical-card.active {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--vertical-color);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 40px var(--vertical-color);
}

.vertical-card.active .vertical-badge {
  background: var(--vertical-color);
  color: white;
  border-color: var(--vertical-color);
  box-shadow: 0 4px 15px var(--vertical-color);
  transform: scale(1.05);
}

.vertical-card.active .vertical-btn {
  border-color: var(--vertical-color);
  background: var(--vertical-color);
  color: white;
}

.vertical-content {
  flex: 1;
}

.vertical-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.vertical-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.vertical-title {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
}

.vertical-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.vertical-description {
  color: rgba(196, 181, 253, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.vertical-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 1rem 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
}

.vertical-btn:hover {
  border-color: var(--vertical-color);
  background: var(--vertical-color);
  color: white;
  transform: translateY(-2px);
}

.vertical-icon-container {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */
.faq {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(50px);
}

.faq-item:hover {
  border-color: var(--accent-purple);
}

.faq-item.open {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 2rem;
  color: var(--accent-purple);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  transition: all 0.3s;
  margin-left: 1rem;
}

.faq-item.open .faq-icon {
  background: var(--accent-purple);
  color: white;
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Contact */
.contact {
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.contact-form-wrapper {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s;
}

.detail-item:hover {
  border-color: var(--accent-purple);
  transform: translateX(10px);
}

.detail-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
}

.detail-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form-wrapper {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--accent-purple);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title-clean {
    font-size: 2.5rem;
  }

  .gradient-text-purple {
    font-size: 2.7rem;
  }

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

  .feature-card-modern,
  .vertical-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 80px rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(20px);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ec4899;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #d946ef, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="password"] {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus,
.modal-form input[type="password"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.modal-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.checkbox-group {
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem !important;
}

.checkbox-group label {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #a855f7;
}

.checkbox-group span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.terms-link {
  color: #ec4899;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #d946ef;
  text-decoration: underline;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.forgot-password {
  color: #ec4899;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #d946ef;
  text-decoration: underline;
}

.modal-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.modal-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.modal-footer a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.modal-footer a:hover {
  color: #d946ef;
  text-decoration: underline;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 2rem 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.75rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}
