/* ============================================================
   Kafanet Web — Landing'e özel stiller
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  z-index: 0;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
.lp-hero h1 {
  font-size: clamp(40px, 7vw, 68px);
  letter-spacing: -2px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 18px;
}
.lp-hero h1 .highlight {
  background: linear-gradient(180deg, transparent 65%, var(--accent-soft) 65%);
  padding: 0 4px;
}
.lp-hero p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 560px;
}
@media (max-width: 900px) { .lp-hero p { margin-left: auto; margin-right: auto; } }

.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { .lp-hero-actions { justify-content: center; } }

.lp-hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
@media (max-width: 900px) { .lp-hero-trust { justify-content: center; } }
.lp-hero-trust strong { color: var(--ink); }

/* Phone mockup */
.lp-phone-stack {
  position: relative;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-phone {
  position: relative;
  width: 280px;
  border-radius: 36px;
  background: var(--ink);
  padding: 12px;
  box-shadow: 0 30px 80px rgba(26,22,20,0.18), 0 12px 24px rgba(26,22,20,0.08);
  transform: rotate(-4deg);
  z-index: 2;
}
.lp-phone-screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  height: 540px;
  position: relative;
}
.lp-phone-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.lp-phone-content {
  padding: 32px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lp-phone-bg2 {
  position: absolute;
  width: 220px;
  border-radius: 32px;
  background: var(--accent);
  height: 460px;
  z-index: 1;
  transform: rotate(8deg) translateX(80px);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .lp-phone-stack { height: 480px; transform: scale(0.9); }
}
@media (max-width: 480px) {
  .lp-phone-stack { transform: scale(0.78); height: 420px; }
}

/* App store badges */
.lp-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .lp-stores { justify-content: center; } }
.lp-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.1s, opacity 0.15s;
}
.lp-store-btn:hover { text-decoration: none; opacity: 0.9; transform: translateY(-2px); }
.lp-store-btn svg { width: 26px; height: 26px; flex-shrink: 0; fill: #fff; }
.lp-store-meta { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.lp-store-top { font-size: 10px; opacity: 0.75; letter-spacing: 0.3px; }
.lp-store-bot { font-size: 16px; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.4px; }

/* ── Features ──────────────────────────────────────────── */
.lp-section { padding: 80px 0; }
.lp-section-narrow { padding: 60px 0; }
.lp-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.lp-section-title .eyebrow { display: block; margin-bottom: 8px; }
.lp-section-title h2 { font-size: clamp(28px, 5vw, 44px); letter-spacing: -1px; }
.lp-section-title p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 12px auto 0;
}

.lp-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 28px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  background: var(--accent-soft);
}
.lp-feature h3 { margin-bottom: 8px; font-size: 20px; }
.lp-feature p { color: var(--ink-soft); line-height: 1.6; font-size: 14px; }

/* ── Showcase / Visual section ─────────────────────────── */
.lp-showcase {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xxl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-showcase h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); }
.lp-showcase p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.65; margin-top: 16px; }
.lp-showcase ul { list-style: none; padding: 0; margin-top: 24px; }
.lp-showcase li { padding: 10px 0; font-size: 15px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); }
.lp-showcase li::before {
  content: '✓';
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .lp-showcase { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .lp-showcase-visual { order: -1; }
}

/* Demo card preview */
.lp-demo-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: rotate(-2deg);
  color: var(--ink);
  border: 1px solid var(--border);
}
.lp-demo-card .badge { background: var(--accent); color: #fff; }

/* ── Stats strip ───────────────────────────────────────── */
.lp-stats {
  background: var(--bg-alt);
  padding: 40px 0;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 800px) { .lp-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.lp-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.lp-stat-lbl { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

/* ── Testimonials ──────────────────────────────────────── */
.lp-testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 28px;
  position: relative;
}
.lp-testimonial-quote { font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.lp-testimonial-meta { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.lp-testimonial-stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; }

/* ── CTA Final ─────────────────────────────────────────── */
.lp-cta {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2320 100%);
  color: #fff;
  border-radius: var(--radius-xxl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
}
.lp-cta h2 { color: #fff; font-size: clamp(28px, 5vw, 42px); }
.lp-cta p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 520px; margin: 12px auto 28px; }
.lp-cta-actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── FAQ ───────────────────────────────────────────────── */
.lp-faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-bottom: 10px;
}
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s;
}
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq details > div {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 14px;
}

/* Phone preview content */
.lp-mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 8px;
}
.lp-mini-card-dark {
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 8px;
}
.lp-mini-badge {
  display: inline-block;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
}
