/* dalilex.com tanıtım sitesi - tek stil dosyası, dış bağımlılık yok.
   Dış font/CDN bilerek kullanılmıyor: sayfa tek istekte açılsın ve
   doğrulama ekipleri için hiçbir üçüncü tarafa bağlanmasın. */

:root {
  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --brand-soft: #eef2ff;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-soft: #f8fafc;
  --navy: #101828;
  --radius: 14px;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sticky başlık bağlantı hedefini örtmesin. */
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink-2);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 12px;
}

h1 {
  font-size: 44px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 30px;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 17px;
}

p {
  margin: 0 0 14px;
}

a {
  color: var(--brand);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 72px 0;
}

section.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 660px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

/* --- üst bar --- */

header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

nav.site {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav.site a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
}

nav.site a:hover {
  color: var(--brand);
}

/* Üst bardaki davet düğmesi: "nav.site a" kuralının özgüllüğü .btn'den
   yüksek olduğu için metin rengini eziyordu ve düğme lacivert yazıyla
   çıkıyordu. Düğme rengini burada geri alıyoruz. */
nav.site a.btn {
  color: #fff;
}

nav.site a.btn:hover {
  color: #fff;
}

/* --- düğmeler --- */

.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--brand);
  transition: background 0.15s ease;
  /* Dar ekranda "Demo talep edin" üç satıra bölünüp üst bardan taşıyordu. */
  white-space: nowrap;
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost:hover {
  background: var(--bg-soft);
  border-color: #cbd5e1;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --- giriş bölümü --- */

.hero {
  padding: 72px 0 0;
  background:
    radial-gradient(900px 420px at 15% -10%, #eef2ff 0%, rgba(238, 242, 255, 0) 70%),
    radial-gradient(700px 380px at 90% 0%, #f5f3ff 0%, rgba(245, 243, 255, 0) 70%);
}

.hero-inner {
  max-width: 760px;
}

.hero .lead {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* --- ekran görüntüsü çerçevesi --- */

.shot {
  margin: 44px 0 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
}

.shot-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
}

.shot-caption {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
}

.hero .shot {
  margin-bottom: -60px;
}

/* --- ikili yerleşim --- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse .split-media {
  order: -1;
}

.split-media .shot {
  margin: 0;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

/* "Görmez" listesi: onay işareti yanlış anlam veriyordu, çizgi kullanıyoruz. */
.checks.no li::before {
  border-left: 0;
  border-bottom: 2px solid #cbd5e1;
  transform: none;
  width: 12px;
  height: 0;
  top: 13px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* --- kart ızgarası --- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card h3 {
  margin-bottom: 8px;
}

/* --- paketler --- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* stretch: kartlar aynı boyda olsun ki düğmeler tek hizada dursun. */
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}

.plan.featured {
  border-color: var(--brand);
  box-shadow: 0 14px 40px rgba(79, 70, 229, 0.14);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.plan h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.plan .who {
  color: var(--muted);
  font-size: 14px;
  min-height: 42px;
  margin-bottom: 14px;
}

.price {
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
  font-size: 15px;
}

.plan ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
}

.plan ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #22c55e;
  border-bottom: 2px solid #22c55e;
  transform: rotate(-45deg);
}

.plan ul li.off {
  color: #94a3b8;
}

.plan ul li.off::before {
  border-color: #cbd5e1;
  transform: none;
  border-left: 0;
  border-bottom: 2px solid #cbd5e1;
  width: 12px;
  height: 0;
  top: 12px;
}

.plan .btn {
  /* auto: madde listeleri farklı uzunlukta, düğme yine de en altta. */
  margin-top: auto;
  padding-top: 11px;
  width: 100%;
  text-align: center;
}

.price-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 22px;
}

/* --- tablo --- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

/* --- vurgu kutusu --- */

.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 15px;
}

/* --- telefon --- */

.phone {
  width: 260px;
  margin: 0 auto;
  border: 10px solid #0f172a;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0f172a;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- iletişim --- */

.contact-card {
  background: var(--navy);
  color: #cbd5e1;
  border-radius: var(--radius);
  padding: 40px;
}

.contact-card h2 {
  color: #fff;
}

.contact-card a {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card .muted {
  color: #94a3b8;
  font-size: 14px;
}

/* --- alt bilgi --- */

footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
  background: #fff;
}

footer.site .row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

footer.site a {
  color: var(--muted);
  text-decoration: none;
}

footer.site a:hover {
  color: var(--brand);
}

footer.site .spacer {
  margin-left: auto;
}

.muted {
  color: var(--muted);
}

/* --- hukuki sayfalar (gizlilik, kullanım koşulları) --- */

.doc {
  max-width: 780px;
  padding-top: 44px;
  padding-bottom: 64px;
}

.doc h1 {
  font-size: 34px;
}

.doc h2 {
  font-size: 21px;
  margin-top: 38px;
}

.doc h3 {
  font-size: 16px;
  margin-top: 24px;
}

.doc .lead {
  font-size: 17px;
  color: var(--ink-2);
}

.doc ul {
  padding-left: 20px;
}

.doc li {
  margin-bottom: 8px;
}

.doc table {
  margin: 14px 0 20px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

/* --- dar ekran --- */

@media (max-width: 900px) {
  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 25px;
  }

  section {
    padding: 52px 0;
  }

  .grid,
  .plans,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .hero .shot {
    margin-bottom: -30px;
  }

  .hide-sm {
    display: none;
  }

  nav.site {
    gap: 16px;
  }

  nav.site .btn {
    padding: 9px 14px;
    font-size: 14px;
  }

  .logo-img {
    height: 32px;
  }
}

/* Telefonda üst barda yalnızca logo ve iki bağlantı kalır: davet düğmesi
   zaten giriş bölümünde var, burada yer kaplamasın. */
@media (max-width: 620px) {
  nav.site .btn {
    display: none;
  }

  .contact-card {
    padding: 26px 22px;
  }

  /* Geniş tablolar dar ekranda taşmasın. */
  table {
    display: block;
    overflow-x: auto;
  }
}
