 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #FEFEFE;
      color: #2D3436;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }

    /* Floating Background Elements */
    .bg-shapes {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .floating-bubble {
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
      animation: float-anim 20s infinite ease-in-out;
    }

    .bubble-1 {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #7FFFD4, #98FB98);
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .bubble-2 {
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, #B0E0E6, #87CEEB);
      top: 60%;
      right: 10%;
      animation-delay: 3s;
    }

    .bubble-3 {
      width: 250px;
      height: 250px;
      background: linear-gradient(135deg, #E0FFE0, #C1FFC1);
      bottom: 15%;
      left: 15%;
      animation-delay: 6s;
    }

    @keyframes float-anim {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(30px, -30px) rotate(90deg); }
      50% { transform: translate(-20px, 20px) rotate(180deg); }
      75% { transform: translate(20px, 10px) rotate(270deg); }
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.2rem 4rem;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(127, 255, 212, 0.2);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.8rem 4rem;
      box-shadow: 0 10px 40px rgba(127, 255, 212, 0.15);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA, #87CEEB);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-link {
      color: #2D3436;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #7FFFD4, #20B2AA);
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #20B2AA;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-auth {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-nav {
      padding: 0.6rem 1.5rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-login {
      background: transparent;
      color: #20B2AA;
      border: 2px solid #7FFFD4;
    }

    .btn-login:hover {
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      box-shadow: 0 8px 25px rgba(127, 255, 212, 0.4);
      transform: translateY(-2px);
    }

    .btn-signup {
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      box-shadow: 0 8px 20px rgba(127, 255, 212, 0.3);
    }

    .btn-signup:hover {
      box-shadow: 0 12px 35px rgba(127, 255, 212, 0.5);
      transform: translateY(-2px);
    }

    .user-section {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .user-avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 5px 20px rgba(127, 255, 212, 0.4);
    }

    .btn-logout {
      padding: 0.6rem 1.3rem;
      background: rgba(255, 255, 255, 0.9);
      color: #2D3436;
      border: 1px solid rgba(127, 255, 212, 0.5);
      border-radius: 20px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .btn-logout:hover {
      background: #FFE5E5;
      border-color: #FF6B6B;
      color: #FF6B6B;
      transform: translateY(-2px);
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-toggle span {
      width: 28px;
      height: 3px;
      background: linear-gradient(90deg, #7FFFD4, #20B2AA);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hidden {
      display: none !important;
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8rem 4rem 4rem;
      background: linear-gradient(135deg, #E0FFFF 0%, #F0FFF0 50%, #F0F8FF 100%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(127, 255, 212, 0.3), transparent);
      border-radius: 50%;
      animation: pulse-glow 8s infinite ease-in-out;
    }

    @keyframes pulse-glow {
      0%, 100% { transform: scale(1); opacity: 0.3; }
      50% { transform: scale(1.2); opacity: 0.5; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text {
      animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-label {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #20B2AA;
      border: 1px solid rgba(127, 255, 212, 0.3);
      margin-bottom: 1.5rem;
      letter-spacing: 1px;
    }

    .hero-headline {
      font-family: 'Poppins', sans-serif;
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #20B2AA, #7FFFD4, #87CEEB);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtext {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #636E72;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      padding: 1.1rem 2.8rem;
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.4s ease;
      border: none;
      font-family: 'Poppins', sans-serif;
      letter-spacing: 0.5px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      box-shadow: 0 15px 40px rgba(127, 255, 212, 0.4);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 50px rgba(127, 255, 212, 0.6);
      transform: translateY(-5px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.9);
      color: #20B2AA;
      border: 2px solid #7FFFD4;
    }

    .btn-secondary:hover {
      background: linear-gradient(135deg, #F0FFF0, #E0FFFF);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(127, 255, 212, 0.25);
    }

    .hero-visual {
      position: relative;
      animation: fadeInUp 1s ease 0.3s forwards;
      opacity: 0;
    }

    .hero-card {
      position: relative;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(30px);
      border-radius: 30px;
      padding: 3rem;
      border: 1px solid rgba(127, 255, 212, 0.3);
      box-shadow: 0 25px 60px rgba(127, 255, 212, 0.2);
    }

    .hero-card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }

    .floating-element {
      position: absolute;
      font-size: 3rem;
      animation: float-gentle 4s infinite ease-in-out;
    }

    .elem-1 { top: -20px; right: -20px; animation-delay: 0s; }
    .elem-2 { bottom: -20px; left: -20px; animation-delay: 2s; }
    .elem-3 { top: 50%; right: -30px; animation-delay: 4s; }

    @keyframes float-gentle {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* Section Styles */
    .section {
      position: relative;
      padding: 6rem 4rem;
      max-width: 1400px;
      margin: 0 auto;
      z-index: 1;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-label {
      display: inline-block;
      padding: 0.4rem 1.2rem;
      background: linear-gradient(135deg, #E0FFFF, #F0FFF0);
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #20B2AA;
      margin-bottom: 1rem;
      letter-spacing: 1px;
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #20B2AA, #7FFFD4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: #636E72;
      font-weight: 400;
    }

    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #2D3436;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #636E72;
      margin-bottom: 2rem;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 15px;
      background: linear-gradient(135deg, #E0FFFF, #F0FFF0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
      box-shadow: 0 5px 20px rgba(127, 255, 212, 0.2);
    }

    .feature-text h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: #2D3436;
      margin-bottom: 0.3rem;
    }

    .feature-text p {
      font-size: 0.95rem;
      color: #636E72;
      margin: 0;
    }


    .organic-shape {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, rgba(127, 255, 212, 0.15), rgba(135, 206, 235, 0.15));
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px rgba(127, 255, 212, 0.2);
      animation: morph 8s infinite ease-in-out;
    }

    @keyframes morph {
      0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
      50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    }

    .organic-shape span {
      font-size: 8rem;
      animation: rotate-gentle 10s infinite linear;
    }

    @keyframes rotate-gentle {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .feature-card {
      position: relative;
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(20px);
      border-radius: 25px;
      border: 1px solid rgba(127, 255, 212, 0.3);
      transition: all 0.4s ease;
      cursor: pointer;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(127, 255, 212, 0.1), rgba(135, 206, 235, 0.1));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(127, 255, 212, 0.3);
      border-color: #7FFFD4;
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .card-icon {
      position: relative;
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 10px 30px rgba(127, 255, 212, 0.4);
      z-index: 1;
    }

    .card-title {
      position: relative;
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #2D3436;
      z-index: 1;
    }

    .card-description {
      position: relative;
      font-size: 1rem;
      line-height: 1.7;
      color: #636E72;
      z-index: 1;
    }

    /* Products Showcase */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .product-card {
      position: relative;
      border-radius: 25px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(127, 255, 212, 0.15);
    }

    .product-card:hover {
      transform: scale(1.05) translateY(-10px);
      box-shadow: 0 25px 60px rgba(127, 255, 212, 0.4);
    }

    .product-image {
      width: 100%;
      height: 350px;
      background: linear-gradient(135deg, #E0FFFF, #F0FFF0, #F0F8FF);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

    .product-card:hover .product-overlay {
      transform: translateY(0);
    }

    .product-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: #2D3436;
      margin-bottom: 0.5rem;
    }

    .product-description {
      font-size: 0.95rem;
      color: #636E72;
    }

    /* Testimonials */
    .testimonials-container {
      position: relative;
      padding: 0 2rem;
    }

    .testimonials-track {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 2rem 0;
      scrollbar-width: none;
    }

    .testimonials-track::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      min-width: 400px;
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      border-radius: 25px;
      border: 1px solid rgba(127, 255, 212, 0.3);
      box-shadow: 0 15px 40px rgba(127, 255, 212, 0.2);
      transition: all 0.4s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(127, 255, 212, 0.35);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .testimonial-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 10px 30px rgba(127, 255, 212, 0.4);
    }

    .testimonial-info h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: #2D3436;
      margin-bottom: 0.3rem;
    }

    .testimonial-info p {
      color: #20B2AA;
      font-size: 0.9rem;
    }

    .testimonial-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #636E72;
      font-style: italic;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .nav-arrow {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: 2px solid #7FFFD4;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.3rem;
      color: #20B2AA;
    }

    .nav-arrow:hover {
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      transform: scale(1.15);
      box-shadow: 0 10px 30px rgba(127, 255, 212, 0.4);
    }

    /* CTA Section */
    .cta-section {
      position: relative;
      padding: 6rem 4rem;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA, #87CEEB);
      text-align: center;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
      border-radius: 50%;
      animation: pulse-glow 6s infinite ease-in-out;
    }

    .cta-content {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      z-index: 1;
    }

    .cta-content h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1.5rem;
      text-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .cta-content p {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 2.5rem;
    }

    .btn-cta {
      padding: 1.3rem 3.5rem;
      background: white;
      color: #20B2AA;
      border-radius: 35px;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.4s ease;
      border: none;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .btn-cta:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }

    /* Footer */
    .footer {
      position: relative;
      padding: 4rem 4rem 2rem;
      background: linear-gradient(135deg, #2D3436, #1E272E);
      color: white;
      z-index: 1;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #7FFFD4, #87CEEB);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      color: #B2BEC3;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(127, 255, 212, 0.15);
      border: 1px solid rgba(127, 255, 212, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7FFFD4;
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(127, 255, 212, 0.4);
    }

    .footer-section h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #7FFFD4;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .footer-links a {
      color: #B2BEC3;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: #7FFFD4;
      padding-left: 5px;
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.9rem;
      border: 1px solid rgba(127, 255, 212, 0.3);
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      font-family: 'Inter', sans-serif;
    }

    .newsletter-input::placeholder {
      color: #B2BEC3;
    }

    .btn-newsletter {
      padding: 0.9rem 1.8rem;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .btn-newsletter:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(127, 255, 212, 0.4);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(127, 255, 212, 0.2);
      color: #B2BEC3;
      max-width: 1400px;
      margin: 0 auto;
    }



    .auth-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .auth-header h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #20B2AA, #7FFFD4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }

    .auth-header p {
      color: #636E72;
      font-size: 1rem;
    }

    .form-group {
      margin-bottom: 1.8rem;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.6rem;
      color: #2D3436;
      font-size: 0.95rem;
    }

    .form-group input {
      width: 100%;
      padding: 1rem 1.3rem;
      border: 2px solid rgba(127, 255, 212, 0.3);
      border-radius: 15px;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.9);
    }

    .form-group input:focus {
      outline: none;
      border-color: #7FFFD4;
      box-shadow: 0 5px 20px rgba(127, 255, 212, 0.2);
    }

    .btn-submit {
      width: 100%;
      padding: 1.2rem;
      background: linear-gradient(135deg, #7FFFD4, #20B2AA);
      color: white;
      border: none;
      border-radius: 15px;
      font-weight: 700;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.4s ease;
      font-family: 'Poppins', sans-serif;
      margin-top: 1rem;
      box-shadow: 0 10px 30px rgba(127, 255, 212, 0.3);
    }

    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 45px rgba(127, 255, 212, 0.5);
    }

    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .auth-switch {
      text-align: center;
      margin-top: 1.5rem;
      color: #636E72;
    }

    .auth-switch a {
      color: #20B2AA;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
    }

    .auth-switch a:hover {
      text-decoration: underline;
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      padding: 1.2rem 2rem;
      background: rgba(32, 178, 170, 0.95);
      color: white;
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(32, 178, 170, 0.4);
      z-index: 5000;
      display: none;
      font-weight: 600;
      animation: slideInRight 0.4s ease;
      backdrop-filter: blur(10px);
    }

    .toast.active {
      display: block;
    }

    .toast.success {
      background: rgba(127, 255, 212, 0.95);
      color: #2D3436;
    }

    .toast.error {
      background: rgba(255, 107, 107, 0.95);
    }

    @keyframes slideInRight {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .spinner {
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top: 3px solid white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      animation: spin 0.8s linear infinite;
      display: inline-block;
      margin-left: 0.5rem;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Modal Popup */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(10px);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      animation: fadeIn 0.3s ease;
    }

    .modal-overlay.active {
      display: flex;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-popup {
      position: relative;
      max-width: 550px;
      width: 100%;
      max-height: 90%;
      overflow-y: auto;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(30px);
      border-radius: 30px;
      padding: 3rem;
      border: 1px solid rgba(127, 255, 212, 0.3);
      box-shadow: 0 30px 70px rgba(127, 255, 212, 0.3);
      animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
      from {
        transform: translateY(50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: 2px solid rgba(127, 255, 212, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.5rem;
      color: #636E72;
    }

    .modal-close:hover {
      background: #FFE5E5;
      border-color: #FF6B6B;
      color: #FF6B6B;
      transform: rotate(90deg);
    }

    .policy-content {
      color: #636E72;
      line-height: 1.8;
    }

    .policy-content h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #20B2AA;
      margin-bottom: 1.5rem;
      margin-top: 2rem;
    }

    .policy-content h3:first-child {
      margin-top: 0;
    }

    .policy-content h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #2D3436;
      margin-top: 1.5rem;
      margin-bottom: 0.8rem;
    }

    .policy-content p {
      margin-bottom: 1rem;
    }

    .policy-content ul {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }

    .policy-content li {
      margin-bottom: 0.5rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content, .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .features-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 1rem 2rem;
      }

      .nav-links {
        display: none;
      }

      .mobile-toggle {
        display: flex;
      }

      .hero {
        padding: 6rem 2rem 3rem;
      }

      .hero-headline {
        font-size: 2.8rem;
      }

      .section {
        padding: 4rem 2rem;
      }

      .section-title {
        font-size: 2.2rem;
      }

      .features-grid, .products-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-card {
        min-width: 320px;
      }

      .cta-content h2 {
        font-size: 2.5rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .auth-container {
        padding: 2.5rem 2rem;
      }
    }
/* Layout */
.hero {
  width: 100%;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 50px;
}

/* Text */
.hero-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8b8b8b;
}

.hero-headline {
  font-size: 48px;
  font-weight: 700;
}

.hero-subtext {
  margin-top: 20px;
  font-size: 18px;
  color: #6f6f6f;
  max-width: 450px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #111;
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  border: 2px solid #111;
}

/* Slider */
.slider-container {
  width: 500px;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.slider-track {
  display: flex;
  width: calc(350px * 10);
  animation: slide 22s linear infinite;
}

.slider-track img {
  width: 350px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1750px); } /* Move 5 images width */
}

/* Marquee */
.marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
  font-size: 20px;
  font-weight: 600;
}

@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Layout */
#about {
  padding: 80px 5%;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Text Side */
.about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 25px;
  display: grid;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  font-size: 32px;
}

.feature-text h4 {
  margin: 0;
  font-size: 18px;
}

/* Visual Side */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.organic-shape {
  width: 440px;
  height: 500px;
  background: #e8f7f0;
  border-radius: 40% 60% 65% 35% / 40% 40% 60% 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.organic-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Marquee */
.about-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  padding: 15px 0;
  background: #111;
  border-radius: 15px;
}

.about-marquee-track {
  white-space: nowrap;
  display: inline-block;
  animation: aboutMarquee 10s linear infinite;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

@keyframes aboutMarquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Marquee for product cards */
.product-marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 10px 0;
  border-radius: 0 0 12px 12px;
  margin-top: 8px;
}

.product-marquee-track {
  white-space: nowrap;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  animation: productMarquee 8s linear infinite;
}

@keyframes productMarquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Ensure cards stack nicely */
.product-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

