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

body {
  font-family: 'Inter', sans-serif;
  background: #05070f;
  color: #e5e7eb;
}

/* TOP BAR */
.topbar {
  padding: 22px;
  text-align: center;
}

.brand {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.brand span {
  color: #7c7cff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 80vh; /* biraz daha dengeli */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Arka plan katmanları */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  /* 1️⃣ Arka plan görsel */
  background-image:
    linear-gradient(
      180deg,
      rgba(2,6,23,0.85),
      rgba(2,6,23,0.95)
    ),
    radial-gradient(circle at 20% 25%, rgba(124,124,255,0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(59,130,246,0.35), transparent 50%),
    url("bgimage.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 2️⃣ Hafif blur + depth */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}

/* 3️⃣ Çok hafif grain / noise efekti */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1 span {
  color: #7c7cff;
}

.hero p {
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 42px;
  color: #c7d2fe;
}

.cta-btn {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #7c7cff, #3b82f6);
  box-shadow: 0 20px 60px rgba(124,124,255,.45);
  transition: all .35s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* EXPERIENCE */
.experience {
  padding: 70px 20px 60px; /* 120px çok fazlaydı */
}

.exp-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px; /* 30px → 24px */
}

.exp-card {
  position: relative;
  padding: 36px; /* 44px yerine */
  border-radius: 22px;

  /* Cam yüzey */
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);

  /* Derinlik */
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);

  transition: all .35s ease;
}

/* Hover efekti */
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45);
}

/* Üstten hafif glow şeridi */
.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      rgba(124,124,255,0.35),
      rgba(59,130,246,0.15),
      transparent 60%
    );
  opacity: 0.35;
  pointer-events: none;
}

.exp-card h3 {
  margin-bottom: 10px;
}

.exp-card p {
  line-height: 1.6;
}

/* STORY */
.story {
  padding: 120px 20px;
}

.story-inner {
  max-width: 820px;
  margin: auto;
}

.story h2 {
  font-size: 36px;
  margin-bottom: 22px;
}

.story p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: #d1d5db;
}

/* FOOTER */
.footer {
  padding: 50px 20px;
  text-align: center;
  color: #9ca3af;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #9ca3af;
  text-decoration: none;
}
/* FAQ SECTION */
.faq {
  padding: 120px 20px;
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c7cff, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: #c7d2fe;
  line-height: 1.8;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.active .faq-answer {
  padding: 0 26px 26px 84px;
}
/* EXPERIENCE ICONS */
.exp-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c7cff, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
  stroke: #fff;
}
.contentImage{
  width: 100%;
  max-width: 60%; /* ÄŸÅ¸â€˜Ë† Desktop geniÃ…Å¸liÃ„Å¸i (70Ã¢â‚¬â€œ85 arasÃ„Â± oynayabilirsin) */
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(20,26,50,.18);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover efekti (sadece desktop) */
@media (hover:hover){
  .contentImage:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 40px 90px rgba(20,26,50,.22);
  }
}

/* Mobilde tam geniÃ…Å¸lik */
@media (max-width: 768px){
  .contentImage{
    max-width: 100%;
    border-radius: 20px;
  }
}
/* CONTACT FORM */
.contact-form {
  margin-top: 40px;
  max-width: 520px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #c7d2fe;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e5e7eb;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all .25s ease;
  margin-bottom: 18px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(124,124,255,0.6);
  background: rgba(124,124,255,0.06);
  box-shadow: 0 0 0 1px rgba(124,124,255,0.35);
}

/* Placeholder */
.contact-form ::placeholder {
  color: #9ca3af;
}

/* Submit Button */
.contact-form button {
  margin-top: 10px;
  padding: 16px 44px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #7c7cff, #3b82f6);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;

  box-shadow: 0 16px 40px rgba(124,124,255,.45);
  transition: all .3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(124,124,255,.55);
}

.contact-form button:active {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 600px) {
  .contact-form {
    max-width: 100%;
  }
}
