/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: #64748b;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: #f8fafc;
}

/* Hero Section */
.hero {
  background: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

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

.hero__profile {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero__avatar:hover {
  transform: scale(1.05);
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.375rem;
  margin-bottom: 3rem;
  color: #64748b;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  background: #e2e8f0;
  color: #475569;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero__video-container {
  margin: 3rem 0;
}

.hero__video {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: white;
  border: 1px solid #e2e8f0;
}

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

.hero__cta {
  margin-top: 3rem;
}

.cta-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta-features {
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #475569;
  line-height: 1.5;
}

.cta-check {
  color: #10b981;
  font-weight: bold;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  border: 2px solid #2563eb;
}

.btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn__icon {
  font-size: 1.5rem;
}

.btn--ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Section Headers */
.section__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
}

.section__desc {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: #64748b;
}

/* Step label (Adım 2/2 vb.) */
.step-label {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
}

/* Icons Row */
.icons-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.icon-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-4px);
}

.card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.card__text {
  color: #64748b;
  margin: 0;
}

/* Checklist */
.checklist {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.checklist li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: #64748b;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Widget */
.widget {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

#widget.section {
  padding-bottom: 0; /* sayfa sonunda fazla beyaz alanı azalt */
}

.calendly-inline-widget {
  width: 100%;
  height: 850px;
}

.calendly-inline-widget iframe {
  height: 100% !important;
}

.widget iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 0.5rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial__media {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.testimonial__media video,
.testimonial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__body {
  padding: 1.5rem;
}

.testimonial__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.testimonial__text {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.member {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.member:hover {
  transform: translateY(-4px);
}

.member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.member__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.member__role {
  color: #64748b;
  margin: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq__q {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
  transition: background-color 0.3s ease;
}

.faq__q:hover {
  background-color: #f8fafc;
}

.faq__q span {
  font-size: 1.5rem;
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__q span {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item.active .faq__a {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq__a p {
  margin: 0;
  color: #64748b;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 3rem 0;
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

.footer__brand strong {
  font-size: 1.25rem;
  color: white;
}

.footer__brand p {
  color: #94a3b8;
  margin: 0.5rem 0 0 0;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: white;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.open {
  display: flex;
}

.modal__dialog {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 80%;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 1001;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .hero__video-container {
    margin: 2rem 0;
  }
  
  .btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
  
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__links,
  .footer__social {
    justify-content: center;
  }
  
  .icons-row {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .team {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .calendly-inline-widget {
    height: 1150px;
  }

  /* Mobilde checklisti ortala ve tik işaretini metinle aynı satıra al */
  .checklist { text-align: center; }
  .checklist li { padding-left: 0; }
  .checklist li::before { position: static; margin-right: 8px; display: inline-block; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .btn--large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .calendly-inline-widget {
    height: 1250px;
  }
}
