body {
  margin: 0;
  padding-top: 75px; /* Fixed header için */
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fdf2f8, #f9fafb);
  color: #374151;
  line-height: 1.6;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(219, 39, 119, 0.08);
  transition: all 0.3s ease;
  border-bottom: 3px solid #f472b6;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.main-header a {
  text-decoration: none;
  color: #db2777;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-header a:hover {
  color: #be185d;
}

.main-header ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  height: 85vh;
  background: linear-gradient(135deg, #db2777, #ec4899, #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 100;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.hero .btn {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  color: #db2777;
  padding: 15px 35px;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero .btn:hover {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.features, .pricing, .features-special, .showcase {
  padding: 80px 0;
}

.features {
  background: #FFFFFF;
}

.features-special {
  background: linear-gradient(135deg, #fdf2f8, #fef7ff);
}

.showcase {
  background: linear-gradient(135deg, #f3e8ff, #fdf2f8);
}

.features h2, .pricing h2, .features-special h2, .showcase h2 {
  text-align: center;
  color: #db2777;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 2.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  width: 90%;
  margin: auto;
  max-width: 1000px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
  max-width: 900px;
}

.card, .paket {
  background: #FFFFFF;
  padding: 35px 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(219, 39, 119, 0.08);
  border: 2px solid transparent;
  position: relative;
}

.card {
  text-align: center;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.card h3 {
  color: #db2777;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.card:hover, .paket:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(219, 39, 119, 0.15);
  border-color: #f472b6;
}

.feature-item, .showcase-item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(219, 39, 119, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 114, 182, 0.1);
}

.feature-item:hover, .showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(219, 39, 119, 0.12);
  border-color: rgba(244, 114, 182, 0.3);
}

.feature-item h3, .showcase-item h3 {
  color: #db2777;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.showcase-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.paket-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8fafc;
}

.paket h3 {
  color: #db2777;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.price {
  font-size: 2.2rem;
  color: #f472b6;
  font-weight: 700;
  margin: 10px 0;
}

.paket ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.paket li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.paket li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.paket .btn {
  background: linear-gradient(135deg, #db2777, #be185d);
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  font-weight: 600;
}

.paket .btn:hover {
  background: linear-gradient(135deg, #be185d, #9d174d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.3);
}

.paket.premium {
  border: 3px solid #f472b6;
  background: linear-gradient(145deg, #FFFFFF, #fef7ff);
  position: relative;
}

.paket.premium::before {
  content: '💎 EN POPÜLER';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

/* Partikül canvas pozisyonlama */
.particle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Fade-in animasyonu */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container sınıfı */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero {
    height: 75vh;
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .main-header .container {
    width: 95%;
  }
  
  .grid, .features-grid, .showcase-grid {
    grid-template-columns: 1fr;
    width: 95%;
  }
  
  .features, .pricing, .features-special, .showcase {
    padding: 60px 0;
  }
  
  .features h2, .pricing h2, .features-special h2, .showcase h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .main-header ul {
    gap: 15px;
  }
  
  .card, .paket {
    padding: 25px 20px;
  }
  
  .paket.premium::before {
    font-size: 0.75rem;
    padding: 6px 15px;
  }
}

footer {
  background: #db2777;
  border-top: 3px solid #f472b6;
  text-align: center;
  padding: 25px 0;
  color: #FFFFFF;
}