   :root {
            --orange: #F97A00;
            --green: #A0C878;
            --cream: #F0F1C5;
            --off-white: #FDFAF6;
            --coral: #FDAB9E;
            --black: #1a1a1a;
            --white: #ffffff;
            --gray: #666;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        
        body { 
            font-family: 'Dosis', sans-serif; 
            background-color: var(--off-white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- TYPOGRAPHY --- */
        .dosis-800 { font-weight: 800; }
        .dosis-700 { font-weight: 700; }
        .dosis-600 { font-weight: 600; }
        .dosis-400 { font-weight: 400; }

        h1, h2, h3, h4 { text-transform: uppercase; letter-spacing: 1px; }

        /* --- AUTH OVERLAY --- */
        #auth-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.9);
            z-index: 5000; display: none; align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
        }
        .auth-card {
            background: var(--white); padding: 50px; border-radius: 40px;
            width: 90%; max-width: 450px; text-align: center;
            border: 8px solid var(--orange); position: relative;
        }
        .auth-input {
            width: 100%; padding: 18px; margin: 12px 0;
            border: 2px solid #eee; border-radius: 20px; font-family: 'Dosis';
            font-size: 1.1rem; transition: var(--transition);
        }
        .auth-input:focus { border-color: var(--orange); }

        /* --- HEADER --- */
        header {
            background: var(--orange); color: var(--off-white);
            padding: 20px 5%; display: flex; justify-content: space-between;
            align-items: center; position: sticky; top: 0; z-index: 2000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .logo { font-size: 2rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 12px; }
        
        nav { display: flex; gap: 35px; align-items: center; }
        nav a { color: var(--off-white); text-decoration: none; font-weight: 600; cursor: pointer; font-size: 1.1rem; }
        nav a:hover { color: var(--cream); }

        .cta-btn {
            background: var(--white); color: var(--orange);
            padding: 12px 30px; border-radius: 50px; border: none;
            font-weight: 700; cursor: pointer; transition: var(--transition);
            font-family: 'Dosis'; font-size: 1rem;
        }
        .cta-btn:hover { transform: scale(1.1); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .cta-btn.pulse { animation: pulse 2s infinite; }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* --- HERO --- */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
            padding: 0 10%; position: relative; overflow: hidden;
        }
        .hero-bg-anim {
            position: absolute; inset: 0; pointer-events: none;
        }
        .hero-content { flex: 1.2; z-index: 10; padding-right: 50px; }
        .hero-img { flex: 0.8; position: relative; display: flex; justify-content: center; align-items: center; }
        .hero h1 { font-size: 5.5rem; line-height: 0.85; margin-bottom: 30px; color: var(--black); }
        .hero p { font-size: 1.6rem; margin-bottom: 45px; color: #444; max-width: 700px; font-weight: 400; }

        .floating-envelope {
            position: absolute; color: var(--orange); opacity: 0.15;
            animation: drift var(--d) linear infinite;
        }
        @keyframes drift {
            from { transform: translateY(110vh) rotate(0deg); }
            to { transform: translateY(-10vh) rotate(360deg); }
        }

        /* --- SECTIONS --- */
        .section { padding: 150px 10%; position: relative; }
        .section-title { font-size: 4rem; text-align: center; margin-bottom: 80px; position: relative; }
        .section-title::after { content: ''; display: block; width: 80px; height: 8px; background: var(--orange); margin: 20px auto; border-radius: 10px; }

        /* FEATURES & FILTER */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
        .feature-card {
            background: var(--coral); padding: 50px 40px; border-radius: 35px;
            transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
        }
        .feature-card:hover { transform: translateY(-20px); box-shadow: 0 30px 60px rgba(249, 122, 0, 0.2); }
        .feature-card i { margin-bottom: 25px; color: var(--white); }
        .feature-card h3 { font-size: 2rem; margin-bottom: 15px; }

        .filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 60px; }
        .tab-btn {
            padding: 15px 35px; border-radius: 20px; border: 3px solid var(--orange);
            background: transparent; font-family: 'Dosis'; font-weight: 800; cursor: pointer;
            transition: var(--transition); font-size: 1.1rem;
        }
        .tab-btn.active { background: var(--orange); color: white; }

        /* STORYTELLING */
.how-it-works { 
  background: var(--green); 
  color: var(--white); 
  overflow: hidden; 
  padding: 80px 5%; 
}

.step-row { 
  display: flex; 
  align-items: center; 
  gap: 100px; 
  margin-bottom: 150px; 
  flex-wrap: wrap;
}

.step-row:nth-child(even) { 
  flex-direction: row-reverse; 
}

.step-text { 
  flex: 1; 
}

.step-text h2 { 
  font-size: 3.5rem; 
  margin-bottom: 30px; 
}

.step-text p { 
  font-size: 1.4rem; 
  opacity: 0.9; 
}

.step-img { 
  flex: 1; 
  height: 500px; 
  border-radius: 40px; 
  display: grid; 
  place-items: center; 
  border: 2px dashed rgba(255,255,255,0.3); 
  background: rgba(255,255,255,0.15);
  background-image: var(--img-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Optional hover effect */
.step-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .step-row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .step-img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }

  .step-text h2 {
    font-size: 2.5rem;
  }

  .step-text p {
    font-size: 1.2rem;
  }
}        /* --- PAGES --- */
        .page { display: none; min-height: 80vh; }
        .page.active { display: block; animation: fadeIn 0.6s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        .long-content { max-width: 1000px; margin: 0 auto; padding: 100px 5%; }
        .long-content h1 { font-size: 4rem; margin-bottom: 40px; border-bottom: 10px solid var(--orange); display: inline-block; }
        .long-content h2 { margin: 60px 0 25px; font-size: 2.2rem; color: var(--orange); }
        .long-content p { font-size: 1.3rem; margin-bottom: 25px; color: #444; }
        .code-block { background: #222; color: #00ff00; padding: 30px; border-radius: 20px; font-family: monospace; overflow-x: auto; margin: 30px 0; }

        /* --- MODAL --- */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.95);
            z-index: 6000; display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal-content {
            background: var(--off-white); width: 100%; max-width: 1000px;
            border-radius: 50px; overflow: hidden; position: relative; display: flex; flex-direction: column;
            max-height: 90vh;
        }
        .modal-scroll { overflow-y: auto; padding: 60px; }
        .close-modal { position: absolute; top: 30px; right: 30px; cursor: pointer; z-index: 10; }

        /* --- FOOTER --- */
        footer { background: var(--orange); color: var(--off-white); padding: 100px 10% 50px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
        .footer-col h4 { margin-bottom: 30px; font-size: 1.5rem; text-decoration: underline; text-underline-offset: 8px; }
        .footer-col a { display: block; color: var(--off-white); text-decoration: none; margin-bottom: 15px; opacity: 0.8; font-size: 1.2rem; cursor: pointer; }
        .footer-col a:hover { opacity: 1; transform: translateX(10px); transition: 0.3s; }

        /* REVEAL ANIMATION */
        .reveal { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* PRICING */
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
        .price-card { background: var(--white); border: 4px solid #eee; border-radius: 40px; padding: 60px 40px; text-align: center; transition: var(--transition); }
        .price-card.popular { border-color: var(--orange); transform: scale(1.08); z-index: 5; box-shadow: 0 40px 80px rgba(0,0,0,0.1); }
        .price-card h3 { font-size: 2.5rem; margin-bottom: 20px; }
        .price-val { font-size: 4.5rem; font-weight: 800; color: var(--orange); margin-bottom: 30px; }
        .price-list { list-style: none; margin-bottom: 40px; text-align: left; }
        .price-list li { margin-bottom: 15px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }

        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .pricing-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .step-row, .step-row:nth-child(even) { flex-direction: column; text-align: center; }
        }
          .cta-btn {
    padding: 8px 16px;
    background-color: var(--orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .pulse {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* Hamburger menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      width: 100%;
      gap: 12px;
      margin-top: 12px;
    }

    nav.active {
      display: flex;
    }

    .menu-toggle {
      display: flex;
    }
  }
  footer {
    background: var(--green);
    color: #fff;
    padding: 80px 5%;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
    font-weight: 700;
  }

  .footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

  .footer-col a:hover {
    text-decoration: underline;
  }
