/* ============================================================
   FD Express — Landing Page Styles
   ============================================================ */

.landing-hero {
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 60%, #1e3a8a 100%);
  padding: 80px 0 60px;
  color: white;
}
.landing-hero-content { max-width: 680px; }
.landing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 16px; border-radius: 99px;
  font-size: .82rem; font-weight: 600;
  margin-bottom: 20px; color: white;
}
.landing-hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px; color: white;
}
.landing-hero .highlight { color: #93c5fd; }
.landing-desc {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.85); margin-bottom: 24px;
}

/* Features list */
.landing-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px; margin-bottom: 24px;
}
.lf-item {
  font-size: .88rem; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 6px;
}

/* Price box */
.landing-price-box {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 10px 20px;
  margin-bottom: 20px;
}
.lp-from { font-size: 1.8rem; font-weight: 800; color: white; font-family: var(--font); }
.lp-desc { font-size: .85rem; color: rgba(255,255,255,.7); }

/* Services grid on city pages */
.landing-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 8px;
}
.ls-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 16px 12px;
  text-align: center; text-decoration: none;
  color: white; transition: background .2s;
  display: flex; flex-direction: column; gap: 4px;
}
.ls-card:hover { background: rgba(255,255,255,.18); }
.ls-icon { font-size: 1.5rem; }
.ls-card strong { font-size: .9rem; font-weight: 700; }
.ls-card span { font-size: .78rem; color: rgba(255,255,255,.7); }
.ls-price { font-size: .85rem; font-weight: 700; color: #93c5fd; }

/* Why section */
.landing-why { background: var(--gray-50); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 20px;
}
.why-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 24px 20px;
}
.why-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

/* FAQ on landing */
.landing-faq { background: white; }
.landing-faq h2 { font-family: var(--font); font-size: 1.6rem; margin-bottom: 24px; }

/* Responsive */
@media (max-width: 768px) {
  .landing-features { grid-template-columns: 1fr; }
  .landing-services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Diğer hizmetler kartları - beyaz arka plan versiyonu */
.section--services { background: var(--gray-50, #f8faff); }
.section--services .ls-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: #1e293b;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.section--services .ls-card:hover { background: #f0f4ff; border-color: #93c5fd; }
.section--services .ls-card strong { color: #1e293b; }
.section--services .ls-card span { color: #64748b; }
.section--services .ls-price { color: #2563eb; }
