/* === Genel Stil ve Değişkenler === */
:root {
  --primary-color: #6a5af9;
  --secondary-color: #a956e3;
  --background-dark: #0d0f2a;
  --background-light: #161a3f;
  --text-color: #ffffff;
  --text-muted: #a0aec0;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-family: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-dark);
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
}

#animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Animasyonlu arkaplan stilleri buraya veya JS ile eklenebilir */
}

.container-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
    text-decoration: none;
}

section {
  padding: 80px 0;
}

.section-title-new {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-new span {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.section-title-new h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.section-title-new p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === Buton Stilleri === */
.btn-new {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary-new {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 5px 15px rgba(106, 90, 249, 0.4);
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 90, 249, 0.5);
}

.btn-login-new {
  background-color: transparent;
  color: var(--text-color);
  margin-right: 10px;
}

.btn-login-new:hover {
  color: var(--primary-color);
}

.btn-secondary-new {
  background-color: var(--background-light);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
.btn-secondary-new:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


/* === Header === */
.header-new {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header-new.scrolled {
    background-color: rgba(13, 15, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  margin-right: 12px;
}

.logo-new {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
}

.logo-new span {
  color: var(--primary-color);
}

.nav-links-new {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links-new a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links-new a:hover {
  color: var(--text-color);
}


/* === Hero Section === */
.hero-new {
  padding-top: 240px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
}

/* Arka plan animasyonu için container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-text-new {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title-new {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.typewriter-color {
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.Typewriter__cursor {
    color: var(--primary-color);
}


.hero-subtitle-new {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  padding: 16px 40px;
  font-size: 18px;
}

/* === Features Section === */
.features-section-new {
  background-color: var(--background-dark);
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card-new {
  background-color: var(--background-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-new {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
}

.feature-card-new h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card-new p {
  color: var(--text-muted);
}

/* === How It Works Section === */
.how-it-works-section-new {
  background-color: var(--background-dark);
  position: relative;
}

.steps-container-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  position: relative;
}

.step-card-new {
  text-align: center;
  position: relative;
}

/* Connecting line */
.steps-container-new::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.3;
}


.step-number-new {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background-color: var(--background-light);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.step-card-new:hover .step-number-new {
  background-color: var(--primary-color);
  color: white;
}


.step-card-new h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-card-new p {
  color: var(--text-muted);
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* === Solutions Section === */
.solutions-section-new {
    background-color: var(--background-light);
}
.solutions-container-new {
  background-color: var(--background-dark);
  padding: 40px;
  border-radius: 12px;
}

.tabs-new {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-button-new {
  background-color: var(--background-light);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-button-new:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.tab-button-new.active {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: var(--primary-color);
}

.tab-content-new {
  text-align: center;
}

.tab-pane-new {
  display: none;
}

.tab-pane-new.active {
  display: block;
  animation: fadeIn 0.5s;
}

.tab-pane-new h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.tab-pane-new p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Pricing Section === */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
}

.pricing-card-new {
  background-color: var(--background-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-new.popular-new {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(106, 90, 249, 0.3);
}

.pricing-card-new:hover {
    transform: translateY(-10px);
}
.pricing-card-new.popular-new:hover {
    transform: scale(1.05) translateY(-10px);
}


.plan-name-new {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.price-new {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.price-new span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-yearly-new {
    display: none;
}

.pricing-card-new ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.pricing-card-new ul li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.pricing-card-new ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* === Testimonials Section === */
.testimonials-section-new {
    background-color: var(--background-light);
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card-new {
  background-color: var(--background-dark);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.testimonial-img-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  margin-bottom: 20px;
}

.testimonial-card-new p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author-new h4 {
  font-size: 18px;
  margin: 0 0 4px 0;
}

.testimonial-author-new span {
  color: var(--primary-color);
  font-weight: 500;
}

/* === CTA Section === */
.cta-section-new {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
  text-align: center;
}

.cta-section-new h2 {
  font-size: 32px;
  margin-bottom: 16px;
  margin-top: 0;
}

.cta-section-new p {
  max-width: 600px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.cta-section-new .btn-primary-new {
    background: white;
    color: var(--primary-color);
    box-shadow: none;
}

/* === Footer === */
.footer-new {
  background-color: var(--background-light);
  padding: 60px 0 20px 0;
  font-size: 15px;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about-new p {
  color: var(--text-muted);
  margin-top: 20px;
}

.footer-links-col-new h4, .footer-contact-new h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links-col-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col-new ul li {
  margin-bottom: 10px;
}

.footer-links-col-new ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-col-new ul a:hover {
  color: var(--primary-color);
}

.footer-contact-new p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.social-links-new {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links-new a {
  color: var(--text-muted);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links-new a:hover {
  color: var(--primary-color);
}

.footer-bottom-new {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
}

/* === Yüzen WhatsApp İkonu === */
.whatsapp-float-new {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float-new:hover {
    transform: scale(1.1);
}

.whatsapp-float-new .whatsapp-tooltip {
    visibility: hidden;
    width: max-content;
    background-color: var(--background-dark);
    color: var(--text-color);
    text-align: center;
    border-radius: 6px;
    padding: 10px 15px;
    position: absolute;
    z-index: -1;
    right: 75px; /* İkonun soluna konumlandır */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.whatsapp-float-new .whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /* Ok işaretini etiketin sağına koy */
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--background-dark);
}

.whatsapp-float-new:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
    z-index: 101; /* Hover'da öne çıkar */
}

/* === Responsive === */
@media (max-width: 992px) {
  .nav-links-new {
    display: none; /* Basitlik için mobil menüyü gizle */
  }
  .hero-title-new {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .steps-container-new::before {
        display: none;
    }
    .pricing-card-new.popular-new {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .header-buttons-new .btn-login-new {
        display: none;
    }
    .hero-title-new {
        font-size: 32px;
    }
    .section-title-new h2 {
        font-size: 28px;
    }
}

/* === Scroll Animations === */
.hero-text-new,
.section-title-new,
.feature-card-new,
.step-card-new,
.solutions-container-new,
.pricing-card-new,
.testimonial-card-new,
.pricing-toggle-new {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-text-new.is-visible,
.section-title-new.is-visible,
.feature-card-new.is-visible,
.step-card-new.is-visible,
.solutions-container-new.is-visible,
.pricing-card-new.is-visible,
.testimonial-card-new.is-visible,
.pricing-toggle-new.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Pricing Toggle === */
.pricing-toggle-new {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.pricing-toggle-new span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0 15px;
    cursor: pointer;
}

.pricing-toggle-new .toggle-switch-container {
    display: flex;
    align-items: center;
}

.toggle-switch-new {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin: 0 10px;
}

.toggle-switch-new input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-new {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-light);
    transition: .4s;
    border-radius: 28px;
    border: 1px solid var(--border-color);
}

.slider-new:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider-new:before {
    transform: translateX(22px);
} 