 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Arial, sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #222222;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      width: 100%;
      padding: 18px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      background-color: #ffffff;
      z-index: 10;
      border-bottom: 1px solid #f1f1f1;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      font-size: 22px;
      color: #bf2bff;
    }

    .logo span {
      color: #111111;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 26px;
      font-size: 15px;
    }

    .btn-primary {
      padding: 10px 22px;
      border-radius: 24px;
      background: #bf2bff;
      color: #ffffff;
      font-size: 14px;
      border: none;
      cursor: pointer;
      font-weight: 600;
    }

    .btn-primary:hover {
      background: #a21fe0;
    }

    /* Hero section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 70px 60px 60px;
      gap: 40px;
    }

    .hero-left {
      flex: 1.1;
    }

    .hero-left h1 {
      font-size: 46px;
      font-weight: 800;
      color: #111111;
      margin-bottom: 10px;
    }

    .hero-left h1 span {
      color: #bf2bff;
    }

    .hero-left p {
      font-size: 15px;
      max-width: 520px;
      margin-top: 14px;
      color: #555555;
    }

    /* Small form instead of WhatsApp button */
    .lead-form {
      margin-top: 26px;
      padding: 18px 20px 20px;
      border-radius: 12px;
      background: #f7f2ff;
      max-width: 420px;
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
    }

    .lead-form h3 {
      font-size: 17px;
      margin-bottom: 10px;
      color: #222222;
    }

    .form-row {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
    }

    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .form-group label {
      font-size: 12px;
      color: #555555;
    }

    .form-group input,
    .form-group select {
      padding: 7px 9px;
      border-radius: 6px;
      border: 1px solid #dddddd;
      font-size: 13px;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: #bf2bff;
    }

    .lead-form button {
      margin-top: 6px;
      width: 100%;
      padding: 9px 0;
      border-radius: 20px;
      border: none;
      background: #bf2bff;
      color: #ffffff;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
    }

    .lead-form button:hover {
      background: #a21fe0;
    }

    /* Stats under hero text */
    .stats {
      display: flex;
      gap: 18px;
      margin-top: 26px;
    }

    .stat-card {
      min-width: 120px;
      padding: 14px 16px;
      border-radius: 12px;
      background: #fafafa;
      text-align: left;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    }

    .stat-card h4 {
      font-size: 20px;
      color: #bf2bff;
      margin-bottom: 4px;
    }

    .stat-card p {
      font-size: 12px;
      color: #666666;
    }

    /* Hero image */
    .hero-right {
      flex: 0.9;
      display: flex;
      justify-content: center;
    }

    .hero-photo-wrapper {
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, #ffffff 60%, #f5e6ff 80%, #bf2bff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-photo-wrapper img {
      width: 85%;
      height: auto;
      object-fit: cover;
    }

    /* Features section */
    section {
      padding: 40px 60px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 8px;
      font-size: 26px;
      font-weight: 700;
      color: #111111;
    }

    .section-subtitle {
      text-align: center;
      font-size: 14px;
      color: #666666;
      margin-bottom: 30px;
    }

    .card-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .feature-card,
    .process-card {
      flex: 1;
      min-width: 220px;
      max-width: 320px;
      border-radius: 14px;
      background: #ffffff;
      padding: 26px 22px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
      text-align: center;
    }

    .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      margin: 0 auto 14px;
      background: #f7ecff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #bf2bff;
      font-size: 22px;
    }

    .feature-card h3,
    .process-card h3 {
      font-size: 17px;
      margin-bottom: 8px;
      color: #222222;
    }

    .feature-card p,
    .process-card p {
      font-size: 13px;
      color: #666666;
    }

    /* Testimonials & footer (simple) */
    .testimonial-box {
      max-width: 700px;
      margin: 0 auto;
      padding: 24px 26px;
      border-radius: 16px;
      background: #ffffff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      font-size: 14px;
      color: #555555;
      font-style: italic;
    }

    footer {
      padding: 30px 60px 20px;
      font-size: 13px;
      color: #777777;
      border-top: 1px solid #f1f1f1;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    footer .footer-column-title {
      font-weight: 600;
      margin-bottom: 6px;
      color: #333333;
    }

    footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      header {
        padding: 14px 18px;
        flex-wrap: wrap;
        gap: 10px;
      }

      .hero {
        flex-direction: column;
        padding: 40px 18px 30px;
      }

      section {
        padding: 34px 18px;
      }

      .hero-left h1 {
        font-size: 34px;
      }

      .hero-photo-wrapper {
        width: 260px;
        height: 260px;
      }

      .stats {
        flex-direction: column;
      }
    }

    /* Pricing section base */
    .pricing-section {
      padding: 70px 60px;
      background: #faf7ff;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .pricing-header h2 {
      font-size: 30px;
      margin-bottom: 6px;
      color: #111111;
    }

    .pricing-header p {
      font-size: 14px;
      color: #666666;
    }

    /* Cards layout */
    .pricing-grid {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pricing-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 26px 22px 28px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      flex: 1;
      min-width: 260px;
      max-width: 340px;
      position: relative;
    }

    .pricing-card.highlighted {
      border: 2px solid #bf2bff;
      transform: translateY(-6px);
    }

    /* Badge */
    .badge {
      position: absolute;
      top: 16px;
      right: 18px;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 20px;
      background: #f1f1f1;
      color: #444444;
    }

    .badge.primary {
      background: #f6e4ff;
      color: #a020e0;
    }

    /* Titles */
    .pricing-card h3 {
      font-size: 20px;
      margin-bottom: 6px;
      color: #111111;
    }

    .best-for {
      font-size: 13px;
      color: #666666;
      margin-bottom: 14px;
    }

    /* Price */
    .price {
      font-size: 24px;
      font-weight: 700;
      color: #bf2bff;
      margin-bottom: 4px;
    }

    .price span {
      font-size: 12px;
      font-weight: 400;
      color: #777777;
      margin-left: 4px;
    }

    .support {
      font-size: 12px;
      color: #555555;
      margin-bottom: 10px;
    }

    /* Features list */
    .features {
      list-style: none;
      margin: 14px 0 18px;
      padding: 0;
    }

    .features li {
      font-size: 13px;
      color: #555555;
      padding-left: 18px;
      margin-bottom: 6px;
      position: relative;
    }

    .features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 1px;
      font-size: 12px;
      color: #a020e0;
    }

    /* Buttons */
    .plan-btn {
      width: 100%;
      padding: 10px 10px;
      border-radius: 22px;
      border: 1px solid #d3c6ff;
      background: #ffffff;
      color: #7b2bbf;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .plan-btn:hover {
      background: #f4e9ff;
      color: #7b2bbf;
    }

    .primary-btn {
      background: linear-gradient(90deg, #ff2fd1, #bf2bff);
      border-color: transparent;
      color: #ffffff;
    }

    .primary-btn:hover {
      opacity: 0.9;
    }

    /* Common benefits */
    .common-benefits {
      margin-top: 40px;
      background: #f3ecff;
      border-radius: 16px;
      padding: 22px 24px;
    }

    .common-benefits h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #111111;
    }

    .common-benefits ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .common-benefits li {
      font-size: 13px;
      color: #444444;
      margin-bottom: 6px;
      padding-left: 18px;
      position: relative;
    }

    .common-benefits li::before {
      content: "•";
      position: absolute;
      left: 4px;
      top: 0;
      font-size: 16px;
      color: #a020e0;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .pricing-section {
        padding: 50px 18px;
      }

      .pricing-card.highlighted {
        transform: none;
      }
    }