/* ============================================================
   BORSA - Landing Page Stilleri
   Public tanitim sayfasi icin
   ============================================================ */

/* Reset */
.landing-page {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1e293b;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing-page * { box-sizing: border-box; }

.landing-page h1, 
.landing-page h2, 
.landing-page h3, 
.landing-page h4 {
  margin: 0;
  color: #0f172a;
}

.landing-page p {
  margin: 0;
  line-height: 1.6;
  color: #475569;
}

.landing-page a {
  color: var(--brand, #6d28d9);
  text-decoration: none;
}
.landing-page a:hover { text-decoration: underline; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}
.section-narrow {
  max-width: 760px;
}
.landing-page section h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.landing-page .section-sub {
  text-align: center;
  font-size: 16px;
  color: #64748b;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============= NAVBAR ============= */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}
.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #0f172a !important;
  text-decoration: none !important;
}
.brand-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6d28d9, #4338ca);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: #475569 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
}
.nav-links a:hover { color: #6d28d9 !important; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-link {
  color: #475569 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
}
.btn-link:hover { color: #6d28d9 !important; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .landing-nav-inner { padding: 12px 16px; }
}

/* ============= HERO ============= */
.hero {
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
  padding: 80px 24px 100px;
  text-align: center;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #ede9fe;
  color: #5b21b6;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-emph {
  background: linear-gradient(135deg, #6d28d9, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.btn-lg {
  padding: 12px 24px !important;
  font-size: 15px !important;
}
.hero-trust {
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 600px) {
  .hero { padding: 50px 20px 70px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
}

/* ============= STATS ============= */
.stats-strip {
  background: #1e293b;
  color: #fff;
  padding: 30px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============= FEATURES ============= */
.features {
  background: #fff;
}
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid-3 { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-color: #c4b5fd;
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ============= PRICING ============= */
.pricing-teaser {
  background: #f8fafc;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.2s;
}
.price-card.featured {
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139,92,246,0.15);
  transform: translateY(-4px);
}
.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b5cf6;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-name {
  font-size: 14px;
  font-weight: 600;
  color: #6d28d9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.price-amount {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-num {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: #475569;
}
.price-period {
  font-size: 14px;
  color: #94a3b8;
  margin-left: 2px;
}
.price-free {
  font-size: 28px;
  font-weight: 800;
  color: #10b981;
}
.price-desc {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  min-height: 38px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.price-features li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}
.price-features li:last-child { border: 0; }
.price-cta {
  width: 100%;
  text-align: center;
  display: block;
  padding: 10px;
  font-size: 14px;
}

/* ============= FAQ ============= */
.faq {
  background: #fff;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
  color: #1e293b;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 50px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #94a3b8;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover {
  background: #fafbfc;
}
.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ============= CTA FINAL ============= */
.cta-final {
  background: linear-gradient(135deg, #6d28d9, #4338ca);
  color: #fff;
  text-align: center;
}
.cta-final h2 {
  color: #fff;
  font-size: 32px;
}
.cta-final p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 24px;
}
.cta-final .btn-primary {
  background: #fff;
  color: #6d28d9;
}
.cta-final .btn-primary:hover {
  background: #f3f4f6;
}

/* ============= FOOTER ============= */
.landing-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 24px 30px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-brand .brand {
  color: #fff !important;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: #94a3b8;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-links h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  color: #94a3b8 !important;
  font-size: 13px;
  margin-bottom: 8px;
  text-decoration: none !important;
}
.footer-links a:hover { color: #fff !important; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #64748b;
}
.footer-disclaimer {
  font-style: italic;
  max-width: 400px;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ============= GENERIC BUTTONS (landing) ============= */
.landing-page .btn,
.landing-page .btn-primary,
.landing-page .btn-primary-sm {
  display: inline-block;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none !important;
}
.landing-page .btn {
  padding: 8px 16px;
  background: #fff;
  border-color: #e2e8f0;
  color: #1e293b !important;
  font-size: 14px;
}
.landing-page .btn:hover {
  border-color: #c4b5fd;
  color: #6d28d9 !important;
}
.landing-page .btn-primary {
  padding: 10px 20px;
  background: linear-gradient(135deg, #6d28d9, #4338ca);
  color: #fff !important;
  font-size: 14px;
  border: 0;
}
.landing-page .btn-primary:hover {
  opacity: 0.92;
}
.landing-page .btn-primary-sm {
  padding: 7px 14px;
  background: linear-gradient(135deg, #6d28d9, #4338ca);
  color: #fff !important;
  font-size: 13px;
  border: 0;
}
.landing-page .btn-primary-sm:hover {
  opacity: 0.92;
}
