* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --accent-color: #06d6a0;
  --dark-color: #1e1b4b;
  --light-color: #f8fafc;
  --text-color: #334155;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --gradient-5: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(30 25 75 / 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.logo i {
  font-size: 35px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  transition: all 0.25s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient-1);
  transition: width 0.25s ease;
  border-radius: 5px;
}

.nav-links a:hover::after {
  width: 100%;
}

.contact-btn {
  background: var(--gradient-1);
  color: #fff;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 5px 20px rgb(100 100 235 / 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(100 100 235 / 0.25);
}

.mobile-menu-btn {
  display: none;
  background: #fff0;
  border: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
  color: #667eea;
}

.mobile-menu-btn.active {
  color: #667eea;
}

.hero {
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  animation: float 7.5s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--gradient-2);
  border-radius: 50%;
  opacity: 0.25;
  animation: floatReverse 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(2deg);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(25px) rotate(-2deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1;
  animation: slideInLeft 1s ease-out;
}

.hero-text .subtitle {
  font-size: 25px;
  color: rgb(255 255 255 / 0.75);
  margin-bottom: 20px;
  font-weight: 600;
  animation: slideInLeft 1s ease-out 0.25s both;
}

.hero-text p {
  font-size: 20px;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: 35px;
  line-height: 1.5;
  animation: slideInLeft 1s ease-out 0.25s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  animation: slideInLeft 1s ease-out 0.5s both;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: 35px;
  font-weight: 900;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 15px;
  opacity: 0.5;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: slideInLeft 1s ease-out 0.5s both;
}

.btn-primary {
  background: #fff;
  color: var(--primary-color);
  padding: 20px 35px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgb(0 0 0 / 0.25);
}

.btn-secondary {
  background: #fff0;
  color: #fff;
  padding: 20px 35px;
  border: 3px solid #fff;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--primary-color);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.floating-cards {
  position: relative;
  height: 500px;
}

.floating-card {
  text-align: center;
  background: rgb(255 255 255 / 0.15);
  backdrop-filter: blur(25px);
  border-radius: 25px;
  padding: 30px;
  border: 2px solid rgb(255 255 255 / 0.25);
  position: absolute;
  box-shadow: 0 15px 35px rgb(0 0 0 / 0.1);
}

.floating-card.main {
  width: 300px;
  top: 50px;
  left: 0;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card.small-1 {
  width: 300px;
  top: 0;
  right: 0;
  animation: floatCard 5s ease-in-out infinite 1s;
}

.floating-card.small-2 {
  width: 300px;
  bottom: 0;
  right: 50px;
  animation: floatCard 5s ease-in-out infinite 2s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.card-icon {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 25px;
  color: #fff;
}

.floating-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.floating-card p {
  color: rgb(255 255 255);
  font-size: 15px;
  line-height: 1.5;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about {
  padding: 100px 0;
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 45px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.25;
}

.about-text .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}

.about-text p {
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.5;
  color: var(--text-color);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

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

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 400px;
  background: var(--gradient-3);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-image-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>')
    repeat;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(50px) translateY(50px);
  }
}

.features {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 45px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 20px;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgb(0 0 0 / 0.05);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #fff0;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
}

.feature-card:nth-child(2)::before {
  background: var(--gradient-2);
}

.feature-card:nth-child(3)::before {
  background: var(--gradient-3);
}

.feature-card:nth-child(4)::before {
  background: var(--gradient-4);
}

.feature-card:nth-child(5)::before {
  background: var(--gradient-5);
}

.feature-card:nth-child(6)::before {
  background: var(--gradient-1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgb(0 0 0 / 0.15);
  border-color: rgb(100 100 240 / 0.25);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: #fff;
  box-shadow: 0 10px 25px rgb(100 100 240 / 0.25);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--gradient-2);
  box-shadow: 0 10px 25px rgb(235 70 150 / 0.25);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--gradient-3);
  box-shadow: 0 10px 25px rgb(80 175 255 / 0.25);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.25;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-color);
}

.installation {
  padding: 100px 0;
  background: var(--light-color);
}

.installation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.installation-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
  transition: all 0.25s ease;
  text-align: center;
}

.installation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
}

.installation-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #fff;
}

.installation-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.installation-card p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.5;
}

.channels {
  padding: 100px 0;
  background: #fff;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.channel-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.25);
  transition: all 0.25s ease;
  position: relative;
}

.channel-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.25);
}

.channel-image {
  width: 100%;
  height: 150px;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.channel-card:nth-child(2) .channel-image {
  background: var(--gradient-1);
}

.channel-card:nth-child(3) .channel-image {
  background: var(--gradient-3);
}

.channel-card:nth-child(4) .channel-image {
  background: var(--gradient-4);
}

.channel-card:nth-child(5) .channel-image {
  background: var(--gradient-5);
}

.channel-card:nth-child(6) .channel-image {
  background: var(--gradient-2);
}

.channel-info {
  padding: 20px;
  text-align: center;
}

.channel-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.channel-tag {
  background: var(--gradient-1);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.statistics {
  padding: 100px 0;
  background: var(--dark-color);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
}

.stat-card {
  padding: 30px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: #fff;
}

.stat-card:nth-child(2) .stat-icon {
  background: var(--gradient-2);
}

.stat-card:nth-child(3) .stat-icon {
  background: var(--gradient-3);
}

.stat-card:nth-child(4) .stat-icon {
  background: var(--gradient-4);
}

.stat-card h3 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
}

.stat-card p {
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
}

.pricing {
  padding: 100px 0;
  background: var(--light-color);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  font-family: "Montserrat", sans-serif;
  background: #fff0;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-color);
}

.toggle-btn.active {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 5px 15px rgb(100 100 240 / 0.25);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.pricing-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgb(0 0 0 / 0.15);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: 2.5px solid #fff0;
}

.pricing-card.featured {
  transform: scale(1.05);
  background: var(--gradient-1);
  color: #fff;
  border-color: rgb(255 255 255 / 0.25);
}

.pricing-card.featured::before {
  content: "ÖNERİLEN";
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-2);
  color: #fff;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 10;
  border-radius: 0;
}

.pricing-card.featured .pricing-price {
  color: #fff;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgb(0 0 0 / 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 55px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.pricing-features i {
  color: var(--accent-color);
  font-size: 15px;
}

.pricing-card.featured .pricing-features i {
  color: #fff;
}

.pricing-button {
  width: 100%;
  background: var(--gradient-1);
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 15px;
}

.pricing-card.featured .pricing-button {
  background: #fff;
  color: var(--primary-color);
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.25);
}

.faq {
  padding: 100px 0;
  background: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.15);
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
  background: var(--light-color);
}

.faq-question:hover {
  background: var(--gradient-1);
  color: #fff;
}

.faq-question h3 {
  font-size: 15px;
  font-weight: 600;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-answer.active {
  padding: 25px;
  max-height: 500px;
}

.testimonials {
  padding: 100px 0;
  background: var(--light-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 80px;
  color: var(--primary-color);
  font-weight: 900;
  opacity: 0.25;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 15px;
  opacity: 0.7;
}

.footer {
  background: var(--dark-color);
  color: #fff;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.footer-section p {
  color: rgb(255 255 255);
  line-height: 1.5;
  font-size: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgb(255 255 255);
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 20px;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1);
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgb(255 255 255 / 0.5);
  font-size: 15px;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgb(255 255 255 / 0.5);
  border-radius: 50%;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgb(255 255 255 / 0.25);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .container {
    padding: 0 15px;
  }
  .nav {
    padding: 10px 0;
  }
  .logo {
    font-size: 25px;
  }
  .logo i {
    font-size: 30px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 100%);
    background: rgb(30 25 75 / 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    width: 100%;
  }
  .contact-btn {
    padding: 12.5px 20px;
    font-size: 15px;
    gap: 5px;
  }
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text h1 {
    font-size: 36px;
    line-height: 1;
  }
  .hero-text .subtitle {
    font-size: 15px;
  }
  .hero-text p {
    font-size: 15px;
  }
  .hero-stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .stat-item {
    min-width: 100px;
  }
  .stat-number {
    font-size: 25px;
  }
  .stat-label {
    font-size: 15px;
  }
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 15px 30px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .floating-cards {
    height: auto;
    position: static;
  }
  .floating-card {
    position: static !important;
    width: 100% !important;
    margin-bottom: 20px;
    animation: none !important;
  }
  .floating-card.small-1,
  .floating-card.small-2 {
    display: block;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-text h2 {
    font-size: 30px;
  }
  .about-text p {
    font-size: 15px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-image-main {
    height: 300px;
    font-size: 60px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .feature-card {
    padding: 30px 25px;
    text-align: center;
  }
  .feature-card h3 {
    font-size: 20px;
  }
  .feature-card p {
    font-size: 15px;
  }
  .installation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .channel-image {
    height: 120px;
    font-size: 25px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-card h3 {
    font-size: 35px;
  }
  .stat-card p {
    font-size: 15px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pricing-card {
    padding: 30px 25px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-15px);
  }
  .pricing-price {
    font-size: 45px;
  }
  .pricing-toggle {
    margin-bottom: 40px;
    padding: 10px;
    flex-wrap: wrap;
    gap: 5px;
  }
  .toggle-btn {
    padding: 12.5px 20px;
    font-size: 15px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .testimonial-card {
    padding: 25px 20px;
  }
  .faq-question {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .faq-question h3 {
    font-size: 15px;
  }
  .faq-answer.active {
    padding: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-section h3 {
    font-size: 20px;
  }
  .social-links {
    justify-content: center;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .section-title p {
    font-size: 15px;
    padding: 0 10px;
  }
  .section {
    padding: 60px 0;
  }
  .about,
  .features,
  .installation,
  .channels,
  .statistics,
  .pricing,
  .faq,
  .testimonials,
  .footer {
    padding: 60px 0;
  }
  * {
    max-width: 100%;
  }
  .hero::after {
    display: none;
  }
  .floating-card.main {
    animation: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }
  .hero-text h1 {
    font-size: 25px;
  }
  .hero-text .subtitle {
    font-size: 15px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 15px 25px;
    font-size: 15px;
  }
  .pricing-price {
    font-size: 35px;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .about-text h2 {
    font-size: 25px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-content {
    gap: 40px;
  }
  .hero-text h1 {
    font-size: 50px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 375px) {
  .logo {
    font-size: 20px;
  }
  .logo i {
    font-size: 25px;
  }
  .hero-text h1 {
    font-size: 25px;
  }
  .floating-card {
    padding: 20px;
  }
  .floating-card h3 {
    font-size: 15px;
  }
  .floating-card p {
    font-size: 15px;
  }
}

.reseller {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.reseller::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.25;
}

.reseller .container {
  position: relative;
  z-index: 2;
}

.reseller .section-title h2 {
  color: #fff;
  margin-bottom: 15px;
}

.reseller .section-title p {
  color: rgb(255 255 255 / 0.95);
  font-size: 1rem;
}

.reseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.reseller-card {
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 25px 50px rgb(0 0 0 / 0.25);
  transition: all 0.25s ease;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.25);
}

.reseller-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgb(0 0 0 / 0.25);
}

.reseller-card.featured {
  border: 2.5px solid gold;
  position: relative;
}

.reseller-card.featured::before {
  content: "ÖNERİLEN";
  position: absolute;
  top: 20px;
  right: -35px;
  transform: rotate(45deg);
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  padding: 8px 40px;
  font-weight: 800;
  font-size: 12px;
  z-index: 10;
  border-radius: 0;
}

.reseller-header {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 30px;
  text-align: center;
  position: relative;
}

.reseller-flag {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 10px rgb(0 0 0 / 0.2));
}

.reseller-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.reseller-price {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 15px 0;
  text-shadow: 0 2px 4px rgb(0 0 0 / 0.25);
}

.reseller-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.5;
}

.reseller-subtitle {
  font-size: 1.1rem;
  opacity: 0.5;
  font-weight: 500;
}

.reseller-content {
  padding: 30px;
}

.reseller-highlight {
  background: linear-gradient(135deg, #e0f2fe, #f3e5f5);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  border-left: 5px solid #6366f1;
}

.reseller-highlight p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1a1a2e;
}

.reseller-highlight strong {
  color: #6366f1;
  font-weight: 700;
}

.reseller-features {
  list-style: none;
  margin: 20px 0;
}

.reseller-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  font-size: 0.95rem;
}

.reseller-features li:last-child {
  border-bottom: none;
}

.reseller-features i {
  color: #10b981;
  margin-right: 15px;
  font-size: 1rem;
  width: 20px;
}

.reseller-features strong {
  color: #6366f1;
  font-weight: 700;
}

.reseller-profit {
  margin: 25px 0;
}

.profit-box {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.profit-box h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.profit-box p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.profit-box span {
  font-weight: 700;
  font-size: 1rem;
}

.profit-result {
  background: rgb(255 255 255 / 0.25);
  padding: 10px;
  border-radius: 10px;
  margin-top: 15px !important;
  font-size: 1rem !important;
}

.profit-result strong {
  font-size: 1.25rem;
  color: gold;
}

.reseller-button {
  display: block;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  margin-top: 25px;
  box-shadow: 0 10px 25px rgb(35 210 100 / 0.25);
}

.reseller-button:hover {
  transform: translateY(-0.25px);
  box-shadow: 0 15px 35px rgb(35 210 100 / 0.25);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.reseller-button i {
  margin-right: 10px;
  font-size: 1.25rem;
}

.reseller-benefits {
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
}

.reseller-benefits h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a2e;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
  transition: all 0.25s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgb(0 0 0 / 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgb(100 100 240 / 0.25);
}

.benefit-item h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #1a1a2e;
  font-weight: 700;
}

.benefit-item p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .reseller-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .reseller-card.featured {
    transform: none;
  }
  .reseller-card.featured:hover {
    transform: translateY(-10px);
  }
  .reseller-price {
    font-size: 2.5rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reseller-benefits {
    padding: 30px 20px;
  }
  .reseller-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .reseller {
    padding: 80px 0;
  }
  .reseller-card {
    margin: 0 10px;
  }
  .reseller-price {
    font-size: 2rem;
  }
  .reseller-flag {
    font-size: 2.5rem;
  }
}

.seo-ticker {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 20px 0;
  overflow: hidden;
  border-top: 2px solid #6366f1;
  position: relative;
}

.ticker-container {
  position: relative;
  z-index: 2;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  gap: 40px;
}

.ticker-content span {
  color: #6366f1;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgb(0 0 0 / 0.5);
  transition: all 0.25s ease;
  display: inline-block;
  padding: 8px 16px;
  background: rgb(255 255 255 / 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(100 100 240 / 0.25);
  min-width: fit-content;
}

.ticker-content span:hover {
  color: gold;
  background: rgb(255 215 0 / 0.15);
  border-color: rgb(255 215 0 / 0.15);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgb(255 215 0 / 0.25);
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .seo-ticker {
    padding: 15px 0;
  }
  .ticker-content span {
    font-size: 1rem;
    padding: 5px 10px;
  }
  .ticker-content {
    gap: 20px;
    animation: ticker 45s linear infinite;
  }
}

@media (max-width: 480px) {
  .seo-ticker {
    padding: 10px 0;
  }
  .ticker-content span {
    font-size: 0.5rem;
    padding: 5px 10px;
  }
  .ticker-content {
    gap: 15px;
    animation: ticker 30s linear infinite;
  }
}

.language-selector {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgb(30 25 75 / 0.95);
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 10px;
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.25);
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Montserrat", sans-serif;
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.lang-btn:hover {
  transform: scale(1.1);
  background: rgb(100 100 240 / 0.25);
}

.lang-btn.active {
  background: var(--gradient-1);
  box-shadow: 0 4px 15px rgb(100 100 240 / 0.25);
  transform: scale(1.05);
}

.flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  transition: all 0.25s ease;
}

@media (max-width: 768px) {
  .language-selector {
    bottom: 20px;
    left: 20px;
    padding: 8px;
    gap: 6px;
  }
  .lang-btn {
    width: 35px;
    height: 35px;
  }
  .flag {
    width: 20px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .language-selector {
    bottom: 15px;
    left: 15px;
    padding: 6px;
    gap: 4px;
  }
  .lang-btn {
    width: 32px;
    height: 32px;
  }
  .flag {
    width: 18px;
    height: 14px;
  }
}

.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 40px;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.07)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}

.error-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
}

.error-code {
  margin-top: 20px;
  font-size: 150px;
  font-weight: 900;
  background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgb(100 100 240 / 0.5));
  }
  to {
    filter: drop-shadow(0 0 40px rgb(140 100 245 / 0.5));
  }
}

.error-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.error-description {
  font-size: 18px;
  color: rgb(255 255 255 / 0.75);
  margin-bottom: 40px;
  line-height: 1.5;
}

.error-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgb(100 100 245 / 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgb(100 100 240 / 0.5);
}

.btn-secondary {
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: 2px solid rgb(255 255 255 / 0.25);
}

.btn-secondary:hover {
  transform: translateY(-2.5px);
}

.tv-animation {
  margin: 40px 0;
  position: relative;
}

.tv-container {
  width: 200px;
  background: #2d3748;
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
  border: 4px solid #4a5568;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.25);
}

.tv-screen {
  width: 160px;
  height: 100px;
  background: #1a202c;
  border-radius: 8px;
  margin: 15px auto;
  position: relative;
  overflow: hidden;
}

.tv-static {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="2" height="100" x="10" fill="rgba(255,255,255,0.1)"/><rect width="2" height="100" x="30" fill="rgba(255,255,255,0.05)"/><rect width="2" height="100" x="50" fill="rgba(255,255,255,0.08)"/><rect width="2" height="100" x="70" fill="rgba(255,255,255,0.03)"/><rect width="2" height="100" x="90" fill="rgba(255,255,255,0.06)"/></svg>');
  animation: static 0.1s infinite;
}

@keyframes static {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.tv-buttons {
  position: absolute;
  bottom: 10px;
  right: 15px;
  display: flex;
  gap: 5px;
}

.tv-button {
  width: 12px;
  height: 12px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.25);
}

.tv-antenna {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 25px;
  background: #4a5568;
}

.tv-antenna::before,
.tv-antenna::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 20px;
  background: #4a5568;
}

.tv-antenna::before {
  left: -15px;
  transform: rotate(-30deg);
}

.tv-antenna::after {
  right: -15px;
  transform: rotate(30deg);
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.feature-item {
  background: rgb(255 255 255 / 0.15);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.15);
  transition: all 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgb(255 255 255 / 0.15);
}

.feature-icon {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.feature-item p {
  font-size: 15px;
  color: rgb(255 255 255 / 0.75);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .error-code {
    margin-top: 0;
    font-size: 100px;
  }
  .error-title {
    font-size: 25px;
  }
  .error-description {
    font-size: 15px;
  }
  .error-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: 80px;
  }
  .error-features {
    grid-template-columns: 1fr;
  }
  .tv-container {
    width: 150px;
  }
  .tv-screen {
    width: 120px;
    height: 80px;
  }
}

.bayilik-process {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.bayilik-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.bayilik-process .section-title h2 {
  color: white;
}

.bayilik-process .section-title p {
  color: rgba(255, 255, 255, 0.5);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.process-card:hover::before {
  left: 100%;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-icon {
  font-size: 45px;
  color: white;
  margin-bottom: 20px;
  opacity: 1;
}

.process-card h3 {
  color: white;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.5;
}

.success-stories {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.success-stories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(100, 125, 235, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(115, 75, 160, 0.05) 0%,
      transparent 50%
    );
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  border: 1px solid rgba(100, 125, 235, 0.15);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-text {
  font-size: 16px;
  line-height: 1.5;
  color: #4a5568;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
}

.story-text::before {
  content: '"';
  font-size: 60px;
  color: #667eea;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  opacity: 0.25;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.author-info h4 {
  color: #2d3748;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info p {
  color: #718096;
  font-size: 15px;
  margin-bottom: 5px;
}

.story-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.story-stats span {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 500;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(100, 125, 230, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(120, 75, 160, 0.25) 0%,
      transparent 50%
    );
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: white;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-number {
  display: block;
  font-size: 35px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 5px;
}

.cta-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(35, 210, 100, 0.25);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(35, 210, 100, 0.5);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2.5px);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-card {
    padding: 30px 20px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-card {
    padding: 25px;
  }

  .cta-content h2 {
    font-size: 35px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-stats {
    gap: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 25px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-number {
    font-size: 25px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 15px;
  }
}

.blog-hero {
  padding: 120px 0 80px 0;
  min-height: 100vh;
}

.blog-posts-section {
  padding: 80px 0;
}

.blog-post {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 15px;
  color: #666;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.blog-meta i {
  color: #6366f1;
  margin-right: 5px;
}

.blog-title {
  color: #2d3748;
  margin-bottom: 20px;
  font-size: 2.5em;
}

.blog-content {
  color: #4a5568;
  line-height: 1.5;
  font-size: 15px;
}

.blog-content h3 {
  color: #2d3748;
  margin: 30px 0 15px 0;
}

.blog-info-box {
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.blog-info-box.tip {
  background: #f7fafc;
  border-left: 5px solid #6366f1;
}

.blog-info-box.warning {
  background: #fef5e7;
  border-left: 5px solid #f59e0b;
}

.blog-info-box.danger {
  background: #fee2e2;
  border-left: 5px solid #ef4444;
}

.blog-info-box.success {
  background: #f0fdf4;
  border-left: 5px solid #22c55e;
}

.blog-info-box.green {
  background: #ecfdf5;
  border-left: 5px solid #10b981;
}

.blog-info-box.yellow {
  background: #fffbeb;
  border-left: 5px solid #f59e0b;
}

.blog-info-box h4 {
  margin-bottom: 15px;
}

.blog-info-box.tip h4 {
  color: #2d3748;
}
.blog-info-box.warning h4 {
  color: #92400e;
}
.blog-info-box.danger h4 {
  color: #991b1b;
}
.blog-info-box.success h4 {
  color: #15803d;
}
.blog-info-box.green h4 {
  color: #047857;
}
.blog-info-box.yellow h4 {
  color: #92400e;
}

.blog-info-box ul {
  margin: 0;
  padding-left: 20px;
}

.blog-info-box li {
  margin-bottom: 5px;
}

.blog-info-box p {
  margin: 0;
  font-style: italic;
}

.blog-info-box i.fa-lightbulb {
  color: #fbbf24;
  margin-right: 10px;
}
.blog-info-box i.fa-exclamation-triangle {
  color: #f59e0b;
  margin-right: 10px;
}
.blog-info-box i.fa-shield-alt {
  color: #ef4444;
  margin-right: 10px;
}
.blog-info-box i.fa-star {
  color: #22c55e;
  margin-right: 10px;
}
.blog-info-box i.fa-futbol {
  color: #10b981;
  margin-right: 10px;
}
.blog-info-box i.fa-wifi {
  color: #f59e0b;
  margin-right: 10px;
}

.blog-cta {
  padding: 60px 0;
}

.blog-cta .btn-primary {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 0 60px 0;
    min-height: auto;
  }

  .blog-posts-section {
    padding: 50px 0;
  }

  .blog-post {
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 15px;
  }

  .blog-meta {
    gap: 15px;
    font-size: 15px;
  }

  .blog-meta span {
    margin-bottom: 5px;
  }

  .blog-title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .blog-content {
    font-size: 15px;
    line-height: 1.5;
  }

  .blog-content h3 {
    font-size: 1.5em;
    margin: 25px 0 10px 0;
  }

  .blog-info-box {
    padding: 20px;
    margin: 25px 0;
  }

  .blog-info-box h4 {
    font-size: 1em;
    margin-bottom: 10px;
  }

  .blog-cta {
    padding: 40px 0;
  }

  .blog-cta .btn-primary {
    margin-right: 0;
    margin-bottom: 15px;
    display: block;
    text-align: center;
  }

  .blog-cta .btn-secondary {
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blog-meta {
    gap: 10px;
    font-size: 15px;
  }

  .blog-meta span {
    flex: 1 1 calc(50% - 5px);
    margin-bottom: 10px;
    justify-content: flex-start;
  }

  .blog-title {
    font-size: 1.5em;
  }

  .blog-content {
    font-size: 15px;
  }

  .blog-post {
    padding: 20px;
  }

  .blog-info-box {
    padding: 15px;
  }
}
