:root {
  --gradient: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  --primary-color: #2575fc;
  --secondary-color: #6a11cb;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f7f9fc;
  color: #333;
}

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

.hero, .footer-hero {
  min-height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero h1, .footer-hero h2 {
  font-size: 3.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.hero img {
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
}

.cta-button {
  margin-top: 30px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  color: white;
  background: var(--gradient);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(101, 114, 255, 0.2);
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.tagline {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

section {
  width: 100%;
  padding: 60px 0;
}

ul.features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

ul.features li {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

ul.features li:hover {
  transform: translateY(-5px);
}

footer a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Pricing Table Styles */
.pricing-table {
  max-width: 600px;
  margin: auto;
  font-family: Arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-top: 1em;
}

.pricing-table thead tr {
  background: var(--primary-color);
  color: white;
}

.pricing-table th, .pricing-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

.pricing-table th:first-child, .pricing-table td:first-child {
  text-align: left;
  font-weight: bold;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.pricing-message {
  text-align: center;
  margin-top: 1em;
  font-family: Arial, sans-serif;
}

header {
  background: white;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  margin-right: 12px;
}

.site-title {
  margin: 0;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
}

nav .nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
  padding: 8px 4px;
}



/* Active nav link gradient text fill */
.nav-link:hover,
.nav-link.active {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Optional: font weight or style */
  font-weight: 700;
  /* Remove underline explicitly if needed */
  text-decoration: none !important;
}



    :root {
      --gradient: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    }

    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #f7f9fc;
      color: #333;
    }

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

    .hero, .footer-hero {
      min-height: 100vh;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
    }

    .hero h1, .footer-hero h2 {
      font-size: 3.5rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }

    .hero img {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
    }

    .cta-button {
      margin-top: 30px;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      color: white;
      background: var(--gradient);
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(101, 114, 255, 0.2);
    }

 

    h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    p.tagline {
      font-size: 1.2rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
    }

    section {
      width: 100%;
      padding: 60px 0;
    }

    ul.features {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    ul.features li {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      font-size: 0.95rem;
      transition: transform 0.3s ease;
    }

    ul.features li:hover {
      transform: translateY(-5px);
    }

    form {
      max-width: 400px;
      width: 100%;
      margin: 20px auto 0;
    }

    input {
      width: 100%;
      padding: 12px;
      margin-bottom: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    label {
      display: block;
      font-size: 0.95rem;
      text-align: left;
    }

    footer {
      text-align: center;
      padding: 30px 20px;
      font-size: 0.9rem;
      color: #999;
      background: #fff;
      border-top: 1px solid #eee;
    }

    .highlight {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    #thankYou {
      animation: fadeIn 1s ease forwards;
      color: #333;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 100px; 
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.5); 
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.gradient-button {
  background: linear-gradient(135deg, #4f46e5, #9333ea); /* blue to purple */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gradient-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gradient-button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6a11cb;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  display: none;
}