/* ============================================
   LANDING PAGE - Mevzi İmar Planı
   ============================================ */

/* LP Hero */
.lp-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0e0d0c 0%, #1a1918 50%, #0e0d0c 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lp-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 188, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-hero .container {
  position: relative;
  z-index: 1;
}

.lp-hero-content {
  max-width: 800px;
}

.lp-hero .breadcrumb {
  margin-top: 0;
}

.lp-hero .breadcrumb a,
.lp-hero .breadcrumb .separator {
  color: rgba(255,255,255,0.5);
}

.lp-hero .breadcrumb .current {
  color: var(--accent);
}

.lp-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

.lp-hero h1 .highlight {
  color: var(--accent);
}

.lp-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 700px;
}

.lp-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.lp-hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* LP Sections */
.lp-section {
  padding: 80px 0;
}

.lp-section-alt {
  background: var(--bg-light);
}

.lp-content-block h2 {
  margin-bottom: 20px;
}

.lp-content-block > p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
}

.lp-content-block h3 {
  margin-top: 36px;
  margin-bottom: 20px;
}

/* Use Cases Grid */
.lp-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.lp-use-case {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.lp-section-alt .lp-use-case {
  background: var(--bg);
}

.lp-use-case:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 217, 188, 0.1);
}

.lp-use-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Scope Grid */
.lp-scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.lp-scope-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.lp-scope-item:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.lp-scope-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.lp-scope-item h4 {
  color: var(--text);
  margin-bottom: 4px;
  font-size: 1rem;
}

.lp-scope-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* CTA Mid */
.lp-cta-mid {
  padding: 40px 0;
}

.lp-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--accent) 0%, #00b89e 100%);
  border-radius: 20px;
  color: #fff;
  flex-wrap: wrap;
}

.lp-cta-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.lp-cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.lp-cta-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.lp-cta-card .btn-accent {
  background: #fff;
  color: var(--accent);
}

.lp-cta-card .btn-accent:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.lp-cta-card .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.lp-cta-card .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Steps */
.lp-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 27px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.lp-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.lp-step:last-child {
  margin-bottom: 0;
}

.lp-step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(14, 13, 12, 0.15);
}

.lp-step-content {
  padding-top: 10px;
}

.lp-step-content h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.lp-step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Sectors Grid */
.lp-sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.lp-sector-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}

.lp-sector-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.lp-sector-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.lp-sector-card h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.lp-sector-card > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lp-sector-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-sector-highlights span {
  padding: 5px 12px;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Reasons Grid */
.lp-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.lp-reason-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.lp-reason-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.lp-reason-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.lp-reason-card h3 {
  color: var(--text);
  margin-bottom: 12px;
}

.lp-reason-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Mistakes List */
.lp-mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.lp-mistake {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.lp-section-alt .lp-mistake {
  background: var(--bg);
}

.lp-mistake:hover {
  border-color: #e74c3c;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.08);
}

.lp-mistake-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #fef2f2;
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}

.lp-mistake h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 4px;
}

.lp-mistake p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Why Us */
.lp-why-us {
  background: var(--bg-warm);
}

.lp-why-us-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.lp-why-us-content h2 {
  margin-bottom: 28px;
}

.lp-why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.lp-why-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-why-us-image {
  position: relative;
}

.lp-why-us-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
  white-space: nowrap;
}

.lp-why-us-badge h4 {
  color: var(--text);
  font-size: 1rem;
}

.lp-why-us-badge p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* FAQ */
.lp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
}

.lp-faq-item:hover {
  border-color: var(--accent);
}

.lp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}

.lp-faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  transition: var(--transition);
}

.lp-faq-item.open .lp-faq-toggle {
  background: var(--accent);
  color: #fff;
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.lp-faq-item.open .lp-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.lp-faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Final CTA */
.lp-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0e0d0c 0%, #1a1918 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lp-final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.lp-final-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.lp-final-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lp-final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .lp-hero {
    padding: 130px 0 60px;
  }

  .lp-hero h1 {
    font-size: 1.8rem;
  }

  .lp-hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .lp-cta-card {
    padding: 28px;
    flex-direction: column;
    text-align: center;
  }

  .lp-cta-card-actions {
    justify-content: center;
  }

  .lp-steps::before {
    left: 19px;
  }

  .lp-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .lp-why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-why-us-image {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .lp-final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
