/* ====== Pehlivanlar Ultra-Pro Monochrome Style ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #000000;
    --card: #0a0a0a;
    --card-hover: #111111;
    --border: #262626;
    --text-main: #ffffff;
    --text-dim: #a1a1aa;
    --white: #ffffff;
    --line: rgba(255, 255, 255, 0.08);
}

* { 
    box-sizing: border-box; 
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body { 
    margin: 0; 
    font-family: 'Inter', -apple-system, sans-serif; 
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: 0.2s; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* --- Navigation --- */
.nav { 
    background: rgba(0,0,0,0.8); 
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
/* Aylık/Yıllık Switch Tasarımı */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #262626;
    transition: .4s;
    border-radius: 34px;
    border: 1px solid #333;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #facc15;
    border-color: #facc15;
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: #000;
}
.brand b { font-size: 20px; letter-spacing: -1px; font-weight: 800; }
.brand span { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-left: 10px; }

.menu { display: flex; gap: 20px; }
.menu a { font-size: 14px; color: var(--text-dim); font-weight: 500; }
.menu a:hover { color: var(--white); }

/* --- Hero --- */
.hero { 
    padding: 120px 0 80px;
    text-align: center;
}

.badge {
    display: inline-flex;
    padding: 6px 14px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 12px;
    margin-bottom: 25px;
    color: #fff;
}

.hero h1 {
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 19px;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 40px;
}

/* --- Buttons --- */
.cta { display: flex; gap: 14px; justify-content: center; }

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    font-size: 15px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
}

.btn.primary { color: #000; border-color: var(--white); }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }

.btn:not(.primary) { background: transparent; color: var(--white); }
.btn:not(.primary):hover { background: #111; border-color: #444; }

/* --- Sections & Cards --- */
.section { padding: 90px 0; border-top: 1px solid var(--line); }
.section h2 { font-size: 32px; font-weight: 800; margin-bottom: 40px; letter-spacing: -1px; }

.card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 18px;
    transition: 0.4s;
}

.card:hover { border-color: #555; background: var(--card-hover); }

/* --- Pricing Table (Clean Focus) --- */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }

.plan .price { font-size: 38px; font-weight: 800; }
.plan .setup { font-size: 12px; color: var(--text-dim); }

.tablewrap { 
    margin-top: 50px; 
    border: 1px solid var(--border); 
    border-radius: 18px; 
    overflow: hidden; 
}

.pricing-table { width: 100%; border-collapse: collapse; background: #050505; }
.pricing-table th, .pricing-table td { 
    padding: 20px; 
    text-align: left; 
    border-bottom: 1px solid var(--border); 
}

.pricing-table th { background: #0a0a0a; color: var(--text-dim); font-size: 13px; text-transform: uppercase; }
.catrow td { background: #111; color: #fff; font-weight: 700; font-size: 14px; }

.center { text-align: center !important; }
.check { color: #fff; font-weight: bold; }
.cross { color: #333; }

/* --- Form --- */
.form { display: grid; gap: 15px; }
input, textarea {
    background: #000;
    border: 1px solid var(--border);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s;
}
input:focus, textarea:focus { border-color: #fff; outline: none; background: #0a0a0a; }

.pill {
    display: inline-block;
    padding: 4px 10px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* --- Footer --- */
.footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; font-size: 14px; }

@media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .grid3 { grid-template-columns: 1fr; }
}
/* === Section Background Images (Overlayed) === */
.bg-section {
    position: relative;
    background: 
      linear-gradient(
        rgba(0,0,0, calc(var(--overlay,60)/100)),
        rgba(0,0,0, calc(var(--overlay,60)/100))
      ),
      var(--bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* === Image + Text Feature Blocks === */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.feature-row.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}
.feature-row.reverse > * { direction: ltr; }

.feature-img img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-text p {
    color: var(--text-dim);
    font-size: 16px;
}

@media(max-width:768px){
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }
}
/* --- Hero Slider Logic --- */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 80vh; /* Slider yüksekliği */
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out; /* Geçiş yumuşaklığı */
}

/* Aktif olan resim görünür olur */
.hero-slide.active {
    opacity: 1;
}

/* Karartma katmanı: Resimlerin üstüne, yazının altına gelir */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Karartma oranı */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Yazıları resmin ve karartmanın üstüne çıkarır */
}
/* =========================
   LANDING PAGE – PRO DESIGN
========================= */

/* HERO */
.landing-hero {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(250,204,21,0.15), transparent 60%),
    linear-gradient(180deg, #0b1220, #020617);
}

.landing-hero h1 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
}

.landing-hero p {
  font-size: 18px;
  color: #cbd5f5;
}

/* PLAN KARTLARI */
.landing-plan {
  transition: all .35s ease;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
}

.landing-plan:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(250,204,21,0.15);
  border-color: #facc15 !important;
}

.landing-plan.selected {
  border-color: #facc15 !important;
  box-shadow: 0 0 0 2px rgba(250,204,21,0.3),
              0 30px 80px rgba(250,204,21,0.25);
}

.landing-plan .price {
  font-size: 36px;
  font-weight: 900;
  color: #facc15;
  margin: 15px 0;
}

/* ÖZELLİK TABLOSU */
.pricing-table {
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  overflow: hidden;
}

.pricing-table th {
  background: rgba(255,255,255,0.06);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table td {
  font-size: 14px;
}

.pricing-table tr:hover td {
  background: rgba(250,204,21,0.04);
}

/* DEMO FORM */
.landing-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  margin-bottom: 12px;
}

.landing-form input:focus,
.landing-form select:focus,
.landing-form textarea:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 0 2px rgba(250,204,21,0.25);
}

.landing-form button {
  padding: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 12px;
  background: linear-gradient(135deg, #facc15, #fde047);
  color: #000;
  border: none;
  transition: all .3s ease;
}

.landing-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(250,204,21,0.4);
}

/* SAĞ BİLGİ KARTI */
.landing-info {
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.25);
}

.landing-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.landing-info li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

/* MOBİL */
@media (max-width: 768px) {
  .landing-hero h1 {
    font-size: 36px;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  color: #9ca3af;
}

.footer-sep {
  margin: 0 6px;
  opacity: 0.5;
}

.footer-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-right a {
  color: #9ca3af;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-right a:hover {
  color: #facc15;
}

/* Mobil */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left:320px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: .3s;
}

/* === MOBİL MENÜ === */
@media (max-width: 768px) {

  .nav .wrap {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .menu {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.95);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .menu a {
    font-size: 16px;
    padding: 10px 0;
  }

  .menu.active {
    display: flex;
  }
}
@media (max-width: 768px) {

  /* HERO */
  .hero {
    padding: 90px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }

  .cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* FEATURE BLOKLAR */
  .feature-row {
    gap: 40px;
    margin-bottom: 80px;
  }

  .feature-text h3 {
    font-size: 26px;
  }

  .feature-text p {
    font-size: 15px;
  }

  /* ABOUT */
  #about .grid3 {
    grid-template-columns: 1fr !important;
  }

  /* PRICING */
  .plan {
    min-height: auto !important;
  }

  .price-container {
    width: auto !important;
  }

  /* CONTACT */
  #contact .grid3 {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {

  /* === FEATURE BLOK ANA KAPSAYICI === */
  .feature-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px;
    margin-bottom: 70px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
  }

  /* reverse saçmalığını iptal et */
  .feature-row.reverse {
    direction: ltr;
  }

  /* === GÖRSEL === */
  .feature-img {
    width: 100%;
  }

  .feature-img img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
  }

  /* === METİN ALANI === */
  .feature-text {
    text-align: left;
  }

  .feature-text h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .feature-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
  }

  /* Sarı çizgi */
  .feature-text div[style*="background: #facc15"] {
    margin-top: 18px;
  }
}
/* ===============================
   MOBİL – ÖZELLİK TABLOSU FIX
   =============================== */

@media (max-width: 768px) {

  .tablewrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    position: relative;
  }

  /* tablo genişliği – sıkışmayı önler */
  .pricing-table {
    min-width: 720px;
    background: rgba(255,255,255,0.02);
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* === SOL SÜTUN SABİT === */
  .pricing-table th:first-child,
  .pricing-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    min-width: 190px;
    max-width: 190px;
    background: linear-gradient(
      180deg,
      #0a0a0a,
      #050505
    );
    box-shadow: 6px 0 18px rgba(0,0,0,0.6);
  }

  /* === ÜST BAŞLIK SABİT === */
  .pricing-table thead th {
    position: sticky;
    top: 0;
    z-index: 6;
    background: #0a0a0a;
    backdrop-filter: blur(10px);
  }

  /* kategori satırı */
  .catrow td {
    background: #111;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .4px;
  }

  /* hover efekti mobilde yumuşat */
  .pricing-table tr:hover td {
    background: rgba(250,204,21,0.03);
  }

  /* kaydırma ipucu */
  .tablewrap::after {
    content: "← Kaydır →";
    display: block;
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
    padding: 10px 0 0;
    letter-spacing: 1px;
  }
}
