    /* ================= HERO ================= */

    .hero {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        padding: 140px 20px 220px;
        text-align: center;
        color: #fff;
    }

    .hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        opacity: 0.95;
    }

    #addUrl {
        cursor: pointer;
        transition: 0.2s ease;
    }

    #addUrl:hover {
        background: #e2e8f0;
    }

    /* ================= FORM WRAPPER ================= */

    .form-wrapper {
        margin-top: -160px;
        padding: 0 20px;
    }

    .form-card {
        max-width: 1000px;
        margin: auto;
        background: #fff;
        border-radius: 18px;
        padding: 40px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    }

    /* Inputs */

    .form-input {
        width: 100%;
        padding: 14px;
        margin-top: 6px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        font-size: 15px;
        transition: 0.2s ease;
    }

    .form-input:focus {
        border-color: #2563eb;
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

    .short-prefix {
        background: #f1f5f9;
        padding: 14px;
        border: 1px solid #e2e8f0;
        border-right: none;
        border-radius: 10px 0 0 10px;
        font-size: 14px;
        color: #334155;
    }

    .short-input {
        width: 100%;
        padding: 14px;
        border-radius: 0 10px 10px 0;
        border: 1px solid #e2e8f0;
        border-left: none;
        font-size: 15px;
    }

    .create-btn {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #fff;
        border: none;
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .create-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
    }

    .remove-btn {
        background: #ef4444;
        color: white;
        border: none;
        padding: 0 14px;
        border-radius: 8px;
        cursor: pointer;
    }

    /* ================= FEATURES ================= */

    .features-modern {
        padding: 100px 20px 50px;
        /* background: #fff; */
    }

    .features-container {
        max-width: 1100px;
        margin: auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }

    /* LEFT IMAGE */
    .features-image {
        flex: 1;
        text-align: center;
    }

    .features-image img {
        width: 100%;
        max-width: 520px;
        border-radius: 20px;
    }

    /* RIGHT CONTENT */
    .features-content {
        flex: 1;
    }

    .features-content h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .features-subtext {
        color: #64748b;
        margin-bottom: 30px;
    }

    /* FEATURE LIST */
    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .feature-item i {
        font-size: 20px;
        color: #2563eb;
        margin-top: 4px;
    }

    .feature-item h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .feature-item p {
        font-size: 14px;
        color: #64748b;
    }

    @media (max-width: 768px) {

        .features-container {
            flex-direction: column;
            text-align: center;
        }

        .feature-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-item i {
            margin-bottom: 5px;
        }

    }

    /* ================= PRICING ================= */

    .pricing {
  padding: 50px 20px 70px;
  text-align: center;

  /* 🔥 NEW BACKGROUND */
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* Title */
.pricing h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

/* GRID */
.pricing-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* PRICE */
.price {
  font-size: 38px;
  font-weight: 700;
  margin: 20px 0;
  color: #2563eb;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #475569;
}

/* BUTTON */
.pricing-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.featured {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.4);
}

/* Text inside featured */
.featured h3,
.featured .price,
.featured ul li {
  color: #fff;
}

/* Button inside featured */
.featured .pricing-btn {
  background: #fff;
  color: #2563eb;
}


@media (max-width: 768px) {
  .featured {
    transform: scale(1); /* avoid zoom breaking layout */
  }
}

    /* ================= HOW IT WORKS ================= */

  .how-timeline {
  padding: 50px 20px 0;
  text-align: center;
  background: #f8fafc;
}

.how-timeline h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.how-subtext {
  color: #64748b;
  margin-bottom: 60px;
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e2e8f0;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

/* NUMBER CIRCLE */
.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* CARD */
.timeline-content {
  width: 45%;
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* LEFT / RIGHT POSITION */
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

@media (max-width: 768px) {

  .timeline::before {
    left: 25px;
  }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .timeline-number {
    position: static;
    transform: none;
    margin-right: 15px;
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
  }

}

    /* ================= FAQ ================= */

    .faq-section {
        padding: 60px 20px;
        background: #f8fafc;
        max-width: 900px;
        margin: auto;
    }

    .faq-section h2 {
        text-align: center;
        font-size: 34px;
        margin-bottom: 50px;
    }

    .faq-item {
        background: #fff;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .faq-question {
        padding: 18px 20px;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        padding: 0 20px 20px;
        display: none;
        color: #475569;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-icon {
        font-size: 18px;
    }