    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   body, html {
  overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
      background: #f6f9fc;
      color: #333;
      line-height: 1.6;
    }
    .sub-header {
      background: linear-gradient(to right, #667eea, #764ba2);
      color: white;
      text-align: center;
      padding: 80px 20px;
    }
    .sub-header h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .sub-header p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 20px;
    }
    .highlight {
      color: #ffeb3b;
      font-weight: 700;
      text-decoration: underline;
    }
    .btn {
      display: inline-block;
      background: #fff;
      color: #764ba2;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s ease;

    }
    .btn:hover {
      background: #eaeaea;
    }
    section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }
    section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }


    .pricing {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .plan {
      background: white;
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      text-align: center;
      max-width: 280px;
      flex: 1;
      position: relative;
      transition: 0.3s ease;
    }
    .plan:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }
    .plan h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #764ba2;
    }
    .plan .price {
      font-size: 2rem;
      font-weight: 700;
      margin: 15px 0;
    }
    .plan p {
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    .cta1 {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(to right, #667eea, #764ba2);
      color: white;
    }
    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    .cta p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: auto auto 30px;
    }
    footer {
      text-align: center;
      padding: 30px 20px;
      font-size: 0.85rem;
      color: #999;
    }
	
	
	/* FIX: grid layout responsiveness */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


    .features div {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: center;
    }


.features > * {
  flex: 1 1 280px;
  max-width: 99%;
}



.logo.dark{
width: 120px;
}
