/* Enhanced Color Palette - Cool Theme */
:root {
    --white: #FFFFFF;
    --light-beige: #F8FAFB;
    --peach-pink: #E8F4F8;
    --coral: #4A90E2;
    --dark-coral: #357ABD;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --muted-green: #5F9EA0;
    --golden-yellow: #95A5A6;
    --light-pink: #AED6F1;
    --soft-purple: #BB8FCE;
    --mint-green: #76D7C4;
    --sage: #82E0AA;
    --dust-rose: #F5B7B1;
    --warm-gray: #F0F3F4;
    --accent-blue: #5DADE2;
    --gradient-1: linear-gradient(135deg, var(--coral) 0%, var(--light-pink) 100%);
    --gradient-2: linear-gradient(135deg, var(--muted-green) 0%, var(--sage) 100%);
    --gradient-3: linear-gradient(135deg, var(--mint-green) 0%, var(--soft-purple) 100%);
    --gradient-hero: linear-gradient(135deg, var(--peach-pink) 0%, rgba(248, 250, 251, 0.8) 50%, rgba(174, 214, 241, 0.3) 100%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-gray);
    background-image: 
      radial-gradient(circle at 20% 20%, rgba(232, 160, 166, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(139, 154, 122, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Enhanced Animations and Interactions */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }
    100% {
      background-position: 1000px 0;
    }
  }
  
  .animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
  }
  
  .animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }

  /* Enhanced Interactive Elements */
  .nav-cta:hover {
    background: linear-gradient(135deg, var(--dark-coral) 0%, var(--coral) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  }
  
  .logo-image {
    transition: transform 0.3s ease;
  }
  
  .logo-image:hover {
    transform: scale(1.05) rotate(2deg);
  }
  
  /* Enhanced Card Interactions */
  .feature-card:hover, .about-feature:hover, .testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  .feature-card:hover .feature-icon, 
  .about-feature:hover .about-icon {
    transform: scale(1.15) rotate(5deg);
  }
  
  /* Enhanced Form Interactions */
  .waitlist-form input:hover {
    border-color: var(--coral);
    transform: translateY(-1px);
  }
  
  .waitlist-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
  }

  /* Enhanced Navigation */
  .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(232, 160, 166, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ✅ Logo image */
  .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo-image {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .logo-image:hover {
    transform: scale(1.05);
  }
  
  .footer-logo-image {
    height: 38px;
  }
  
  /* (Legacy text logo classes kept — safe to keep even if unused) */
  .logo {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
  }
  .logo-j { color: var(--light-pink); }
  .logo-u { color: var(--muted-green); }
  .logo-n { color: var(--golden-yellow); }
  .logo-o { color: var(--light-beige); text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    padding: 12px 24px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }
  
  .nav-cta:hover::before {
    left: 100%;
  }
  
  .nav-cta:hover {
    background-color: var(--dark-coral);
    transform: translateY(-1px);
  }
  
  /* Hero Section */
  .hero {
    background: var(--gradient-hero);
    background-image:
      radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(232, 160, 166, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(139, 154, 122, 0.1) 0%, transparent 50%);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
      radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
  }
  
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .hero-top-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .hero-badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    animation: fadeInUp 0.8s ease-out;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    display: inline-block;
  }
  
  .hero-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
  }
  
  .hero-title:hover::before {
    opacity: 1;
  }
  
  .hero-title .text-highlight {
    background: linear-gradient(135deg, var(--coral), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .hero-title .text-highlight:hover {
    background: linear-gradient(135deg, var(--golden-yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
    display: inline-block;
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
  
  /* ✅ Replaces the removed email input/button block */
  .hero-actions {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    justify-items: center;
  }
  
  /* Buttons */
  .cta-button {
    padding: 16px 32px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .cta-button:hover::before {
    left: 100%;
  }
  
  .cta-button:hover {
    background: linear-gradient(135deg, var(--dark-coral) 0%, var(--coral) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  }
  
  .waitlist-text {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0.85;
  }
  
  /* Enhanced Section Titles */
  .about-title, .features-title, .testimonials-title, .waitlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--coral), var(--muted-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .about-title::after, .features-title::after, .testimonials-title::after, .waitlist-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--light-pink), var(--golden-yellow));
    border-radius: 2px;
    transition: width 0.5s ease;
  }
  
  .about-title:hover::after, .features-title:hover::after, .testimonials-title:hover::after {
    width: 100%;
  }
  
  .about-title:hover, .features-title:hover, .testimonials-title:hover {
    background: linear-gradient(135deg, var(--golden-yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
  }
  
  .about-description, .features-subtitle, .testimonials-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .about-description:hover, .features-subtitle:hover, .testimonials-subtitle:hover {
    color: var(--coral);
    transform: translateY(-1px);
  }
  
  .about-feature, .feature-card, .testimonial-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
  }
  
  .about-feature.visible, .feature-card.visible, .testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-feature:nth-child(1).visible { animation-delay: 0.1s; }
  .about-feature:nth-child(2).visible { animation-delay: 0.2s; }
  .about-feature:nth-child(3).visible { animation-delay: 0.3s; }
  
  .feature-card:nth-child(1).visible { animation-delay: 0.1s; }
  .feature-card:nth-child(2).visible { animation-delay: 0.2s; }
  .feature-card:nth-child(3).visible { animation-delay: 0.3s; }
  .feature-card:nth-child(4).visible { animation-delay: 0.4s; }
  .feature-card:nth-child(5).visible { animation-delay: 0.5s; }
  .feature-card:nth-child(6).visible { animation-delay: 0.6s; }

  /* About Section */
  .about {
    background-color: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .about-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
  }

  .about-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 60px;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .about-feature {
    text-align: center;
    padding: 32px 24px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.8));
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(255, 107, 107, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--light-pink), var(--golden-yellow));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 2px;
  }
  
  .about-feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 20s linear infinite;
  }
  
  .about-feature:hover::before {
    transform: scaleX(1);
  }
  
  .about-feature:hover::after {
    opacity: 1;
  }

  .about-feature:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.25), 0 15px 35px rgba(139, 154, 122, 0.15);
    border: 2px solid transparent;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 160, 166, 0.15));
  }

  .about-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--coral), var(--light-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 2;
  }
  
  .about-feature:hover .about-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--golden-yellow), var(--coral));
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
  }

  .about-feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--coral), var(--dark-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
  }
  
  .about-feature:hover h3 {
    background: linear-gradient(135deg, var(--golden-yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
  }

  /* Unique color schemes for each about feature card */
  .about-feature:nth-child(1) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(173, 216, 230, 0.15));
    border: 2px solid rgba(173, 216, 230, 0.3);
  }
  
  .about-feature:nth-child(1)::before {
    background: linear-gradient(90deg, #add8e6, #87ceeb);
  }
  
  .about-feature:nth-child(1) .about-icon {
    background: linear-gradient(135deg, #add8e6, #87ceeb);
  }
  
  .about-feature:nth-child(1) h3 {
    background: linear-gradient(135deg, #add8e6, #87ceeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-feature:nth-child(1):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(173, 216, 230, 0.25));
    box-shadow: 0 25px 60px rgba(173, 216, 230, 0.3), 0 15px 35px rgba(135, 206, 235, 0.2);
  }
  
  .about-feature:nth-child(1):hover .about-icon {
    background: linear-gradient(135deg, #87ceeb, #add8e6);
  }
  
  .about-feature:nth-child(1):hover h3 {
    background: linear-gradient(135deg, #87ceeb, #add8e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-feature:nth-child(2) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(221, 160, 221, 0.15));
    border: 2px solid rgba(221, 160, 221, 0.3);
  }
  
  .about-feature:nth-child(2)::before {
    background: linear-gradient(90deg, #dda0dd, #ee82ee);
  }
  
  .about-feature:nth-child(2) .about-icon {
    background: linear-gradient(135deg, #dda0dd, #ee82ee);
  }
  
  .about-feature:nth-child(2) h3 {
    background: linear-gradient(135deg, #dda0dd, #ee82ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-feature:nth-child(2):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(221, 160, 221, 0.25));
    box-shadow: 0 25px 60px rgba(221, 160, 221, 0.3), 0 15px 35px rgba(238, 130, 238, 0.2);
  }
  
  .about-feature:nth-child(2):hover .about-icon {
    background: linear-gradient(135deg, #ee82ee, #dda0dd);
  }
  
  .about-feature:nth-child(2):hover h3 {
    background: linear-gradient(135deg, #ee82ee, #dda0dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-feature:nth-child(3) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 218, 185, 0.15));
    border: 2px solid rgba(255, 218, 185, 0.3);
  }
  
  .about-feature:nth-child(3)::before {
    background: linear-gradient(90deg, #ffdab9, #ffb347);
  }
  
  .about-feature:nth-child(3) .about-icon {
    background: linear-gradient(135deg, #ffdab9, #ffb347);
  }
  
  .about-feature:nth-child(3) h3 {
    background: linear-gradient(135deg, #ffdab9, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-feature:nth-child(3):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 218, 185, 0.25));
    box-shadow: 0 25px 60px rgba(255, 218, 185, 0.3), 0 15px 35px rgba(255, 179, 71, 0.2);
  }
  
  .about-feature:nth-child(3):hover .about-icon {
    background: linear-gradient(135deg, #ffb347, #ffdab9);
  }
  
  .about-feature:nth-child(3):hover h3 {
    background: linear-gradient(135deg, #ffb347, #ffdab9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
  }

  /* Features Section */
  .features {
    background-color: var(--white);
    padding: 100px 0;
  }
  
  .features-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .features-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
  }
  
  .features-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.8));
    backdrop-filter: blur(15px);
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(255, 107, 107, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--light-pink), var(--golden-yellow));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 2px;
  }
  
  .feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 20s linear infinite;
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .feature-card:hover::before {
    transform: scaleX(1);
  }
  
  .feature-card:hover::after {
    opacity: 1;
  }
  
  .feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.25), 0 15px 35px rgba(139, 154, 122, 0.15);
    border: 2px solid transparent;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 160, 166, 0.15));
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--coral), var(--light-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 2;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--golden-yellow), var(--coral));
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--coral), var(--dark-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover h3 {
    background: linear-gradient(135deg, var(--golden-yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
  }
  
  /* Unique color schemes for each feature card - Cool Colors */
  .feature-card:nth-child(1) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(74, 144, 226, 0.15));
    border: 2px solid rgba(74, 144, 226, 0.3);
  }
  
  .feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #4A90E2, #5DADE2);
  }
  
  .feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #4A90E2, #5DADE2);
  }
  
  .feature-card:nth-child(1) h3 {
    background: linear-gradient(135deg, #4A90E2, #5DADE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card:nth-child(1):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(74, 144, 226, 0.25));
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.3), 0 15px 35px rgba(93, 173, 226, 0.2);
  }
  
  .feature-card:nth-child(1):hover .feature-icon {
    background: linear-gradient(135deg, #5DADE2, #4A90E2);
  }
  
  .feature-card:nth-child(1):hover h3 {
    background: linear-gradient(135deg, #5DADE2, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .feature-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(187, 143, 206, 0.15));
    border: 2px solid rgba(187, 143, 206, 0.3);
  }
  
  .feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #BB8FCE, #D7BDE2);
  }
  
  .feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #BB8FCE, #D7BDE2);
  }
  
  .feature-card:nth-child(2) h3 {
    background: linear-gradient(135deg, #BB8FCE, #D7BDE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card:nth-child(2):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(187, 143, 206, 0.25));
    box-shadow: 0 25px 60px rgba(187, 143, 206, 0.3), 0 15px 35px rgba(215, 189, 226, 0.2);
  }
  
  .feature-card:nth-child(2):hover .feature-icon {
    background: linear-gradient(135deg, #D7BDE2, #BB8FCE);
  }
  
  .feature-card:nth-child(2):hover h3 {
    background: linear-gradient(135deg, #D7BDE2, #BB8FCE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .feature-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(118, 215, 196, 0.15));
    border: 2px solid rgba(118, 215, 196, 0.3);
  }
  
  .feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #76D7C4, #A3E4D7);
  }
  
  .feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #76D7C4, #A3E4D7);
  }
  
  .feature-card:nth-child(3) h3 {
    background: linear-gradient(135deg, #76D7C4, #A3E4D7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card:nth-child(3):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(118, 215, 196, 0.25));
    box-shadow: 0 25px 60px rgba(118, 215, 196, 0.3), 0 15px 35px rgba(163, 228, 215, 0.2);
  }
  
  .feature-card:nth-child(3):hover .feature-icon {
    background: linear-gradient(135deg, #A3E4D7, #76D7C4);
  }
  
  .feature-card:nth-child(3):hover h3 {
    background: linear-gradient(135deg, #A3E4D7, #76D7C4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .feature-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(95, 158, 160, 0.15));
    border: 2px solid rgba(95, 158, 160, 0.3);
  }
  
  .feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #5F9EA0, #85C1E2);
  }
  
  .feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #5F9EA0, #85C1E2);
  }
  
  .feature-card:nth-child(4) h3 {
    background: linear-gradient(135deg, #5F9EA0, #85C1E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card:nth-child(4):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(95, 158, 160, 0.25));
    box-shadow: 0 25px 60px rgba(95, 158, 160, 0.3), 0 15px 35px rgba(133, 193, 226, 0.2);
  }
  
  .feature-card:nth-child(4):hover .feature-icon {
    background: linear-gradient(135deg, #85C1E2, #5F9EA0);
  }
  
  .feature-card:nth-child(4):hover h3 {
    background: linear-gradient(135deg, #85C1E2, #5F9EA0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .feature-card:nth-child(5) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(130, 224, 170, 0.15));
    border: 2px solid rgba(130, 224, 170, 0.3);
  }
  
  .feature-card:nth-child(5)::before {
    background: linear-gradient(90deg, #82E0AA, #ABEBC6);
  }
  
  .feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #82E0AA, #ABEBC6);
  }
  
  .feature-card:nth-child(5) h3 {
    background: linear-gradient(135deg, #82E0AA, #ABEBC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card:nth-child(5):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(130, 224, 170, 0.25));
    box-shadow: 0 25px 60px rgba(130, 224, 170, 0.3), 0 15px 35px rgba(171, 235, 198, 0.2);
  }
  
  .feature-card:nth-child(5):hover .feature-icon {
    background: linear-gradient(135deg, #ABEBC6, #82E0AA);
  }
  
  .feature-card:nth-child(5):hover h3 {
    background: linear-gradient(135deg, #ABEBC6, #82E0AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Special highlight for The Midwife Circle card */
  .feature-card:nth-child(6) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(139, 154, 122, 0.15));
    border: 2px solid rgba(139, 154, 122, 0.3);
    position: relative;
  }
  
  .feature-card:nth-child(6)::before {
    background: linear-gradient(90deg, var(--muted-green), var(--sage), var(--mint-green));
  }
  
  .feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, var(--muted-green), var(--sage));
  }
  
  .feature-card:nth-child(6) h3 {
    background: linear-gradient(135deg, var(--muted-green), var(--sage));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .feature-card:nth-child(6):hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(139, 154, 122, 0.25));
    box-shadow: 0 25px 60px rgba(139, 154, 122, 0.3), 0 15px 35px rgba(212, 165, 116, 0.2);
  }
  
  .feature-card:nth-child(6):hover .feature-icon {
    background: linear-gradient(135deg, var(--mint-green), var(--muted-green));
  }
  
  .feature-card:nth-child(6):hover h3 {
    background: linear-gradient(135deg, var(--mint-green), var(--sage));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* ✅ NEW Waitlist Section (Early Access) */
  .waitlist {
    background: linear-gradient(135deg, var(--peach-pink) 0%, rgba(255, 248, 243, 0.8) 100%);
    padding: 110px 0;
    position: relative;
  }
  
  .waitlist-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .waitlist-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(26, 26, 26, 0.5);
    margin-bottom: 14px;
  }
  
  .waitlist-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
  
  .waitlist-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 42px;
    line-height: 1.7;
  }
  
  .waitlist-form {
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .waitlist-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
  }
  
  .waitlist-form .field {
    margin-bottom: 18px;
  }
  
  .waitlist-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  
  .waitlist-form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(232, 160, 166, 0.3);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
  }
  
  .waitlist-form input:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
  }
  
  .waitlist-submit {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 16px;
    background: var(--gradient-1);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .waitlist-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .waitlist-submit:hover::before {
    left: 100%;
  }
  
  .waitlist-submit:hover {
    background: linear-gradient(135deg, var(--dark-coral) 0%, var(--coral) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 107, 107, 0.4);
  }
  
  .waitlist-privacy {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
  }
  
  .waitlist-privacy .lock {
    font-size: 1rem;
  }
  
  .waitlist-msg {
    margin-top: 14px;
    text-align: center;
    font-weight: 600;
    color: var(--muted-green);
    min-height: 1.2em;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--peach-pink);
    padding: 100px 0;
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--coral);
    text-transform: uppercase;
    opacity: 0.8;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover::before {
    transform: scaleX(1);
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  
  .testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
  }
  
  .testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--coral);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
  }
  
  .testimonial-author {
    text-align: left;
  }
  
  .author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 4px;
  }
  
  .author-role {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0.8;
  }
  
  /* Security Badges */
  .security-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 180px;
  }
  
  .badge-item:hover {
    transform: translateY(-4px);
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .badge-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    transition: all 0.3s ease;
  }
  
  .badge-item:hover .badge-icon {
    transform: scale(1.1);
    background-color: var(--coral);
    color: var(--white);
  }
  
  .badge-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
  }
  
  /* Final Security Section */
  .final-security {
    background-color: var(--light-beige);
    padding: 80px 0;
  }
  
  .security-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .security-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  
  .security-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .security-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  
  .security-item:hover .security-icon {
    transform: scale(1.1);
    background-color: var(--coral);
    color: var(--white);
  }
  
  .security-text h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  
  .security-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
  }
  
  /* Footer */
  .footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .footer-links {
    display: flex;
    gap: 30px;
  }
  
  .footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  .footer-social {
    display: flex;
    gap: 20px;
  }
  
  .footer-social a {
    color: var(--white);
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  
  .footer-social a:hover {
    opacity: 1;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.875rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      gap: 20px;
    }
  
    .nav-links a:not(.nav-cta) {
      display: none;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .testimonials-title {
      font-size: 2rem;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .security-badges {
      gap: 30px;
    }
  
    .badge-item {
      min-width: 140px;
      padding: 20px 15px;
    }
  
    .security-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .security-item {
      flex-direction: column;
      text-align: center;
      padding: 25px 20px;
    }
  
    .security-icon {
      margin-bottom: 16px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 30px;
      text-align: center;
    }
  
    .footer-links {
      justify-content: center;
    }
  
    /* Waitlist tweaks */
    .waitlist-title { font-size: 2.2rem; }
    .waitlist-form { padding: 24px; }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 120px 0 80px;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .features {
      padding: 80px 0;
    }
  
    .features-title {
      font-size: 2rem;
    }
  
    .feature-card {
      padding: 30px 20px;
    }
  
    .waitlist { padding: 90px 0; }
    .waitlist-title { font-size: 1.9rem; }
  }