@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background: #181c2a;
  color: #eaf1fb;
  font-size: 1.08rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  background: none;
  padding: 0 24px;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(16,21,34,0.95);
  box-shadow: 0 2px 16px rgba(37,117,252,0.10);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6vw;
  height: 68px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-weight: 900;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f8cff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #10152299;
}
.nav-logo span {
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #eaf1fb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover {
  color: #4f8cff;
  border-bottom: 2px solid #4f8cff;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(120deg, #101522 0%, #181c2a 100%);
  padding: 90px 0 60px 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 120vw;
  height: 340px;
  background: radial-gradient(circle at 50% 30%, #4f8cff44 0%, #10152200 80%);
  transform: translateX(-50%);
  z-index: 0;
  filter: blur(2px);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.4em;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 24px #101522cc;
}
.hero h1 span {
  color: #4f8cff;
  background: linear-gradient(90deg, #4f8cff, #6a11cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.25rem;
  color: #b3b8c5;
  margin-top: -10px;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-cta input[type="text"] {
  width: 320px;
  padding: 16px 18px;
  border: 1.5px solid #4f8cff;
  border-radius: 10px;
  font-size: 1.13rem;
  outline: none;
  background: #23263a;
  color: #fff;
  font-weight: 600;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #10152233;
}
.hero-cta input[type="text"]:focus {
  border-color: #fff;
  box-shadow: 0 2px 16px #4f8cff33;
}
.hero-cta button {
  background: linear-gradient(90deg, #4f8cff, #6a11cb);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 2px 16px #4f8cff33;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.hero-cta button:hover {
  background: linear-gradient(90deg, #6a11cb, #4f8cff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px #4f8cff55;
}
#result {
  margin-top: 14px;
  text-align: left;
  font-size: 1.13rem;
  min-height: 40px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 8px #10152299;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  font-size: 1.05rem;
  color: #b3b8c5;
}
.social-proof img {
  filter: grayscale(1) brightness(1.2);
  height: 22px;
  margin-right: 4px;
}

/* Features Section */
.features {
  background: #181c2a;
  padding: 64px 0 40px 0;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature {
  background: rgba(35,38,58,0.92);
  border-radius: 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  padding: 32px 20px 22px 20px;
  box-shadow: 0 4px 32px #4f8cff22;
  margin: 0 4px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  color: #eaf1fb;
  border: 1.5px solid #23263a;
}
.feature:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px #4f8cff44;
  border: 1.5px solid #4f8cff;
}
.feature .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px #10152299;
}
.feature h4 {
  margin: 0 0 10px 0;
  font-size: 1.18rem;
  color: #4f8cff;
  font-weight: 700;
}

/* How it Works */
.how-it-works {
  background: linear-gradient(120deg, #101522 0%, #181c2a 100%);
  padding: 64px 0 40px 0;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.step {
  background: rgba(35,38,58,0.92);
  border-radius: 14px;
  padding: 28px 20px 18px 20px;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 2px 16px #4f8cff22;
  color: #eaf1fb;
  border: 1.5px solid #23263a;
  font-weight: 500;
}
.step-icon {
  font-size: 2.1rem;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 8px #10152299;
}
.step h5 {
  margin: 0 0 8px 0;
  font-size: 1.08rem;
  color: #4f8cff;
  font-weight: 700;
}

/* Pricing Section */
.pricing {
  background: #101522;
  padding: 64px 0 40px 0;
}
.pricing h2 {
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.pricing-table {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.pricing-card {
  background: rgba(35,38,58,0.92);
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 4px 32px #4f8cff22;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, border 0.15s;
  color: #eaf1fb;
  border: 1.5px solid #23263a;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px #4f8cff44;
  border: 1.5px solid #4f8cff;
}
.pricing-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
  color: #4f8cff;
  font-weight: 800;
}
.pricing-card h3 span {
  font-size: 1.08rem;
  color: #6a11cb;
  font-weight: 600;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 22px 0;
  text-align: left;
  font-size: 1.13rem;
  font-weight: 500;
}
.pricing-card li {
  margin-bottom: 12px;
}
.pricing-card button {
  background: linear-gradient(90deg, #4f8cff, #6a11cb);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.13rem;
  margin-top: 12px;
  box-shadow: 0 2px 16px #4f8cff33;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.pricing-card button.secondary {
  background: #181c2a;
  color: #4f8cff;
  border: 1.5px solid #4f8cff;
}
.pricing-card button.secondary:hover {
  background: #23263a;
}
.pricing-card button:hover {
  background: linear-gradient(90deg, #6a11cb, #4f8cff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px #4f8cff55;
}

/* Testimonials */
.testimonials {
  background: #181c2a;
  padding: 64px 0 40px 0;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.testimonial-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial {
  background: rgba(35,38,58,0.92);
  border-radius: 14px;
  padding: 24px 18px 16px 18px;
  min-width: 180px;
  max-width: 240px;
  box-shadow: 0 2px 16px #4f8cff22;
  margin: 8px 0;
  text-align: left;
  font-size: 1.08rem;
  transition: transform 0.15s, box-shadow 0.15s, border 0.15s;
  color: #eaf1fb;
  border: 1.5px solid #23263a;
  font-weight: 500;
}
.testimonial:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px #4f8cff55;
  border: 1.5px solid #4f8cff;
}
.avatar {
  font-size: 1.5rem;
  margin-right: 6px;
  vertical-align: middle;
  text-shadow: 0 2px 8px #10152299;
}
.author {
  color: #4f8cff;
  font-size: 0.98em;
  font-weight: 700;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(90deg, #4f8cff22 0%, #6a11cb22 100%);
  padding: 64px 0 40px 0;
  text-align: center;
}
.newsletter-signup h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.signup-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.signup-form input[type="email"] {
  width: 320px;
  padding: 16px 18px;
  border: 1.5px solid #4f8cff;
  border-radius: 10px;
  font-size: 1.13rem;
  outline: none;
  background: #23263a;
  color: #fff;
  font-weight: 600;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #10152233;
}
.signup-form input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 2px 16px #4f8cff33;
}
.signup-form button {
  background: linear-gradient(90deg, #4f8cff, #6a11cb);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 2px 16px #4f8cff33;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.signup-form button:hover {
  background: linear-gradient(90deg, #6a11cb, #4f8cff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px #4f8cff55;
}

/* FAQ */
.faq {
  background: #101522;
  padding: 64px 0 40px 0;
}
.faq h2 {
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.faq-item {
  margin-bottom: 22px;
  font-size: 1.13rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #eaf1fb;
  font-weight: 500;
  background: rgba(35,38,58,0.92);
  border-radius: 10px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 2px 12px #4f8cff11;
  border: 1.5px solid #23263a;
}

/* Footer */
footer {
  background: #101522;
  padding: 28px 0 16px 0;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #23263a;
}
.footer-content {
  color: #b3b8c5;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.footer-content a {
  color: #4f8cff;
  text-decoration: none;
  margin: 0 4px;
  font-weight: 700;
}
.footer-content a:hover {
  text-decoration: underline;
}

/* Animated Hero Background */
.hero-bg {
  animation: heroBgMove 12s ease-in-out infinite alternate;
}
@keyframes heroBgMove {
  0% { filter: blur(2px) brightness(1) opacity(1); transform: translateX(-50%) scale(1) }
  100% { filter: blur(6px) brightness(1.1) opacity(0.95); transform: translateX(-48%) scale(1.04) }
}

/* Card Hover Effects */
.feature, .pricing-card, .testimonial, .faq-item {
  transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s, border 0.25s, filter 0.25s;
}
.feature:hover, .pricing-card:hover, .testimonial:hover, .faq-item:hover {
  transform: translateY(-10px) scale(1.045);
  box-shadow: 0 8px 40px #4f8cff66, 0 2px 16px #10152244;
  filter: brightness(1.08) saturate(1.1);
}

/* CTA Button Glow & Pulse */
.hero-cta button, .pricing-card button, .signup-form button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hero-cta button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #4f8cff55 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
  animation: ctaPulse 2.5s infinite alternate;
}
@keyframes ctaPulse {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.7); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.hero-cta button:hover {
  box-shadow: 0 0 0 4px #4f8cff44, 0 4px 24px #4f8cff99;
  filter: brightness(1.08) saturate(1.1);
}

/* Section Fade-in Animation */
section, .container {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.1s cubic-bezier(.4,2,.3,1) forwards;
}
section:nth-of-type(1), .navbar, footer {
  opacity: 1;
  transform: none;
  animation: none;
}
section:nth-of-type(2) { animation-delay: 0.2s; }
section:nth-of-type(3) { animation-delay: 0.4s; }
section:nth-of-type(4) { animation-delay: 0.6s; }
section:nth-of-type(5) { animation-delay: 0.8s; }
section:nth-of-type(6) { animation-delay: 1.0s; }
section:nth-of-type(7) { animation-delay: 1.2s; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Smooth transitions for links and interactive elements */
a, button, input, .feature, .pricing-card, .testimonial, .faq-item {
  transition: color 0.2s, background 0.2s, border 0.2s, box-shadow 0.2s, filter 0.2s, transform 0.2s;
}

/* Floating effect for hero icons (if any) */
.hero .icon, .hero .avatar {
  animation: floatIcon 3.5s ease-in-out infinite alternate;
}
@keyframes floatIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px) scale(1.07); }
}

/* SVG Wave Divider */
.wave-divider {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -2px;
  z-index: 2;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100vw;
  min-width: 100%;
  height: 90px;
}

/* Glassmorphism Card Effect */
.glassmorphism {
  background: rgba(35,38,58,0.55);
  border: 1.5px solid rgba(79,140,255,0.18);
  box-shadow: 0 8px 40px #4f8cff33, 0 2px 16px #10152233;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.4s, box-shadow 0.4s, border 0.4s, filter 0.4s, transform 0.25s cubic-bezier(.4,2,.3,1);
}
.feature, .pricing-card, .testimonial, .faq-item {
  /* Add glassmorphism */
  background: rgba(35,38,58,0.55);
  border: 1.5px solid rgba(79,140,255,0.18);
  box-shadow: 0 8px 40px #4f8cff33, 0 2px 16px #10152233;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Extra smooth transitions for all animated elements */
.feature, .pricing-card, .testimonial, .faq-item, .hero-cta button, .signup-form button, .nav-links li a {
  transition: all 0.35s cubic-bezier(.4,2,.3,1);
}

/* Responsive */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .features-grid, .testimonial-list, .pricing-table, .steps {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .navbar {
    padding: 0 2vw;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 2vw;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .feature, .step, .pricing-card, .testimonial, .faq-item {
    min-width: 0;
    max-width: 100%;
    padding: 14px 6px 12px 6px;
  }
  .signup-form input[type="email"], .hero-cta input[type="text"] {
    width: 100%;
  }
  .signup-form, .hero-cta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 8px 2vw;
  }
  .nav-links {
    gap: 12px;
    font-size: 0.98rem;
  }
  .nav-logo, .logo-text {
    font-size: 1.3rem;
  }
  .logo-emoji {
    font-size: 1.7rem;
  }
  .hero h1 {
    font-size: 1.5rem;
    gap: 8px;
  }
  .hero h1 .logo-emoji {
    font-size: 1.5rem;
  }
} 
#paymentForm {
  display: none;
} 

.logo-emoji {
  font-size: 2.7rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  filter: drop-shadow(0 2px 12px #4f8cff88);
  background: linear-gradient(120deg, #4f8cff 30%, #6a11cb 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 24px #4f8cff55, 0 1px 0 #fff2;
  animation: logoGlow 2.5s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  0% { filter: drop-shadow(0 2px 12px #4f8cff88); }
  100% { filter: drop-shadow(0 4px 24px #6a11cbcc); }
}

/* Logo and Heading Styles - Refined */
.nav-logo, .logo-text {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(90deg, #4f8cff 30%, #6a11cb 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px #10152299;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-emoji {
  font-size: 1.7rem;
  margin-right: 6px;
  filter: drop-shadow(0 1px 6px #4f8cff66);
  background: linear-gradient(120deg, #4f8cff 30%, #6a11cb 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px #4f8cff33, 0 1px 0 #fff2;
  animation: logoGlow 2.5s ease-in-out infinite alternate;
}

.hero h1 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  color: #fff;
  background: none;
  margin-bottom: 0.4em;
  text-shadow: 0 4px 16px #4f8cff22, 0 1px 4px #10152299;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.18;
  border-bottom: 2.5px solid #4f8cff33;
  padding-bottom: 8px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .logo-emoji {
  font-size: 2.2rem;
  margin-right: 6px;
  margin-left: 0;
}
.hero h1 span {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 900;
  color: #4f8cff;
  background: linear-gradient(90deg, #4f8cff 30%, #6a11cb 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px #4f8cff33, 0 1px 0 #fff2;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 1em;
}

@media (max-width: 600px) {
  .nav-logo, .logo-text {
    font-size: 1rem;
    gap: 4px;
  }
  .logo-emoji {
    font-size: 1.1rem;
    margin-right: 3px;
  }
  .hero h1 {
    font-size: 1.2rem;
    gap: 4px;
    padding-bottom: 5px;
  }
  .hero h1 .logo-emoji {
    font-size: 1.2rem;
  }
} 

/* Premium Section Styling - Modern Glassmorphism */
.premium {
  background: rgba(35,38,58,0.75);
  border-radius: 18px;
  margin-top: 48px;
  border: 1.5px solid rgba(79,140,255,0.18);
  box-shadow: 0 8px 40px #4f8cff33, 0 2px 16px #10152233;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 38px 28px 32px 28px;
  color: #eaf1fb;
  position: relative;
  overflow: hidden;
}
.premium h2 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  color: #fff;
  background: linear-gradient(90deg, #4f8cff 30%, #6a11cb 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px #4f8cff33, 0 1px 0 #fff2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.premium h2 span {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 900;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 28px 0;
}
.feature-card {
  background: rgba(35,38,58,0.85);
  border-radius: 14px;
  box-shadow: 0 4px 24px #4f8cff22;
  border: 1.5px solid rgba(79,140,255,0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 26px 18px 18px 18px;
  color: #eaf1fb;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #4f8cff44;
  border: 1.5px solid #4f8cff;
}
.feature-card h3 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #4f8cff;
  margin-bottom: 10px;
}
.feature-card ul {
  margin: 10px 0 0 0;
  padding-left: 18px;
  font-size: 1.01rem;
}
.feature-card li {
  margin-bottom: 6px;
}

.testimonial {
  background: rgba(79,140,255,0.10);
  border-radius: 14px;
  border-left: 4px solid #4f8cff;
  box-shadow: 0 2px 16px #4f8cff22;
  padding: 24px 18px 18px 18px;
  margin: 32px 0 24px 0;
  color: #eaf1fb;
  font-size: 1.08rem;
  font-style: italic;
  position: relative;
}
.testimonial .user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-style: normal;
}
.testimonial .user img {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 2px solid #4f8cff;
  box-shadow: 0 2px 8px #4f8cff33;
}
.testimonial .user span {
  color: #4f8cff;
  font-weight: 700;
  font-size: 1rem;
}

.scarcity {
  background: rgba(255,244,230,0.12);
  border-radius: 10px;
  border: 1.5px solid #ffe0b2;
  padding: 18px 10px 12px 10px;
  margin: 24px 0 18px 0;
  text-align: center;
  color: #ffe0b2;
  font-weight: 600;
  font-size: 1.01rem;
  box-shadow: 0 2px 12px #ffb30022;
}
.scarcity strong {
  color: #fff;
  text-shadow: 0 2px 8px #4f8cff33;
}

.premium input[type="email"] {
  width: 260px;
  padding: 14px 16px;
  border: 1.5px solid #4f8cff;
  border-radius: 8px;
  font-size: 1.08rem;
  outline: none;
  background: #23263a;
  color: #fff;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #10152233;
}
.premium input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 2px 16px #4f8cff33;
}
.premium button {
  background: linear-gradient(90deg, #4f8cff, #6a11cb);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 2px 16px #4f8cff33;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.premium button:hover {
  background: linear-gradient(90deg, #6a11cb, #4f8cff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px #4f8cff55;
}
.premium .small {
  font-size: 0.85em;
  opacity: 0.7;
  color: #b3b8c5;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .premium {
    padding: 24px 6vw 18px 6vw;
  }
} 