/* ═══════════════════════════════════════════════════════════════
   Solar Rota — Landing Page (modern, cinematic redesign)
   Mevcut design token'larını kullanır (--primary, --accent, ...)
   Hesaplama aracının üstüne binen bağımsız bir giriş deneyimidir.
   =============================================================== */

/* Landing aktifken uygulama header + main gizlenir */
body.landing-active #app-header,
body.landing-active #main-content,
body.landing-active .skip-link,
body.landing-active .hero-panels-bg,
body.landing-active .hero-orb { display: none !important; }
body.landing-active { overflow-x: hidden; }
body:not(.landing-active) #landing-root { display: none !important; }
body.landing-active #back-to-landing-btn { display: none !important; }

/* ─────────────── KÖK ─────────────── */
#landing-root {
  position: relative;
  z-index: 2;
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  min-height: 100dvh;
}

.lp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ─────────────── ARKA PLAN MESH ─────────────── */
.lp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
}
[data-theme="light"] .lp-bg-grid {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
}
.lp-bg-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: lpMeshDrift 22s ease-in-out infinite alternate;
}
.lp-bg-mesh-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(245,158,11,0.32) 0%, transparent 70%);
  top: -120px; left: -100px;
}
.lp-bg-mesh-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(6,182,212,0.22) 0%, transparent 70%);
  top: 30%; right: -120px;
  animation-delay: -8s;
}
.lp-bg-mesh-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  bottom: -120px; left: 30%;
  animation-delay: -14s;
}
[data-theme="light"] .lp-bg-mesh { opacity: 0.35; }
@keyframes lpMeshDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-30px) scale(1.08); }
  100% { transform: translate(-30px,30px) scale(0.95); }
}

/* ─────────────── NAV ─────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 36px;
  background: rgba(28,28,30,0.62);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border-subtle);
}
[data-theme="light"] .lp-nav { background: rgba(242,242,247,0.74); }
.lp-nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; min-width: 0; }
.lp-nav-brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.32));
}
.lp-nav-brand-col { display: flex; flex-direction: column; min-width: 0; }
.lp-nav-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.lp-nav-brand-tag {
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
  text-transform: uppercase;
}
.lp-nav-links { display: flex; gap: 2px; margin-left: 18px; }
.lp-nav-links a {
  padding: 9px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.lp-nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
[data-theme="light"] .lp-nav-links a:hover { background: rgba(0,0,0,0.05); }
.lp-nav-spacer { flex: 1; }
.lp-nav-settings {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 28px rgba(0,0,0,0.18);
  transition: transform .15s, border-color .2s, background .2s, color .2s;
}
.lp-nav-settings:hover {
  transform: translateY(-1px);
  border-color: rgba(245,158,11,0.42);
  background: rgba(245,158,11,0.12);
  color: var(--primary);
}
[data-theme="light"] .lp-nav-settings {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 22px rgba(15,23,42,0.08);
}
.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--primary) 0%, #FCD34D 100%);
  color: #0F172A;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(245,158,11,0.36), 0 4px 14px rgba(0,0,0,0.4);
  transition: transform .15s, box-shadow .2s;
  text-decoration: none;
}
.lp-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 38px rgba(245,158,11,0.55), 0 6px 20px rgba(0,0,0,0.5);
}

/* ─────────────── EYEBROW & GENEL ─────────────── */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.lp-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(245,158,11,0.7);
}
.lp-eyebrow-center { justify-content: center; display: inline-flex; }
.lp-eyebrow-sm {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-section { padding: 120px 0; position: relative; z-index: 2; }
.lp-section-tight { padding: 72px 0; }

.lp-section-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 40px;
  align-items: flex-end;
  max-width: 1100px;
}
.lp-section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-top: 12px;
  color: var(--text);
}
.lp-section-head h2 .grad {
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-section-head p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 460px;
}

/* ─────────────── BUTTONLAR ─────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FCD34D 100%);
  color: #0F172A;
  box-shadow: 0 0 28px rgba(245,158,11,0.4), 0 4px 16px rgba(0,0,0,0.4);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(245,158,11,0.6), 0 8px 24px rgba(0,0,0,0.5);
}
.lp-btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}
.lp-btn-primary:hover::after { left: 140%; }

.lp-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}
[data-theme="light"] .lp-btn-ghost {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .lp-btn-ghost:hover {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.22);
}

.lp-btn-xl { padding: 18px 32px; font-size: 1rem; }

/* ─────────────── HERO ─────────────── */
.lp-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.lp-hero .lp-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero-cluster { position: relative; z-index: 3; }
.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.28);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
}
.lp-hero-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(245,158,11,0.9);
  animation: lpPulse 2.4s ease-in-out infinite;
}
@keyframes lpPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.3); opacity: 0.7; }
}
.lp-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-top: 26px;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.lp-hero-title .line { display: block; }
.lp-hero-title .amber {
  background: linear-gradient(135deg, var(--primary) 0%, #FCD34D 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: lpGradMove 6s linear infinite;
}
@keyframes lpGradMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.lp-hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 28px;
  max-width: 560px;
}
.lp-hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.lp-hero-meta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.lp-hero-meta strong { color: var(--text); font-weight: 600; }
.lp-hero-meta .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

/* HERO STAGE — layered mockup */
.lp-hero-stage {
  position: relative;
  min-height: 540px;
}
.lp-stage-back {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 72%;
  z-index: 1;
  opacity: 0.62;
  transform: rotate(-3deg);
  filter: blur(0.4px);
  pointer-events: none;
}
.lp-stage-front {
  position: relative;
  z-index: 2;
  margin-left: 12%;
  margin-top: 60px;
}

/* ─────────────── BROWSER FRAME (mockup chrome) ─────────────── */
.lp-browser {
  background: rgba(15,23,42,0.94);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 60px rgba(0,0,0,0.45),
    0 8px 20px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}
[data-theme="light"] .lp-browser {
  background: rgba(255,255,255,0.96);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 50px rgba(0,0,0,0.12),
    0 6px 16px rgba(0,0,0,0.06);
}
.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-subtle);
}
[data-theme="light"] .lp-browser-bar {
  background: rgba(0,0,0,0.03);
}
.lp-browser-bar .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.lp-browser-bar .dot.r { background: #FF5F57; }
.lp-browser-bar .dot.y { background: #FEBC2E; }
.lp-browser-bar .dot.g { background: #28C840; }
.lp-url {
  margin-left: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  letter-spacing: 0.02em;
}
[data-theme="light"] .lp-url { background: rgba(0,0,0,0.04); }
.lp-bar-spacer { flex: 1; }
.lp-bar-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(245,158,11,0.14);
  color: var(--primary);
  border: 1px solid rgba(245,158,11,0.32);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-bar-chip-amber { background: rgba(245,158,11,0.14); color: #FCD34D; border-color: rgba(245,158,11,0.34); }

.lp-browser-body { padding: 22px; }
.lp-browser-body-pad { padding: 18px; }
.lp-browser-body-map { padding: 0; position: relative; }
.lp-browser-sm { font-size: 0.85rem; }
.lp-browser-md {}
.lp-browser-lg {}

/* ─────────────── HERO BROWSER İÇİ — Sonuçlar ekranı ─────────────── */
.lp-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
  gap: 14px;
}
.lp-result-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-result-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.lp-pill-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(16,185,129,0.14);
  color: #6EE7B7;
  border: 1px solid rgba(16,185,129,0.32);
  white-space: nowrap;
}
.lp-pill-ok .d {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #10B981;
}

.lp-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.lp-kpi-card {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .lp-kpi-card { background: rgba(0,0,0,0.025); }
.lp-kpi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c, var(--primary)), transparent);
  opacity: 0.7;
}
.lp-kpi-l {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lp-kpi-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 8px;
  color: var(--c, var(--primary));
}
.lp-kpi-v span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 3px;
}
.lp-kpi-t {
  font-size: 0.66rem;
  margin-top: 6px;
  font-weight: 700;
  color: var(--success);
}

.lp-prod-block {
  padding: 0;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
[data-theme="light"] .lp-prod-block { background: rgba(0,0,0,0.025); }
.lp-hero-chart-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.lp-prod-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.lp-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 96px;
}
.lp-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}
.lp-bar-i {
  width: 100%;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--primary), rgba(245,158,11,0.3));
  box-shadow: 0 0 8px rgba(245,158,11,0.3);
  min-height: 4px;
}
.lp-bar-col-peak .lp-bar-i {
  background: linear-gradient(180deg, #FCD34D, var(--primary));
  box-shadow: 0 0 14px rgba(245,158,11,0.5);
}
.lp-bar-col span {
  font-size: 0.56rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
}

/* HERO floating callouts */
.lp-callout {
  position: absolute;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 24px rgba(245,158,11,0.18);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text);
  max-width: 220px;
  z-index: 5;
  animation: lpFloatY 6s ease-in-out infinite;
}
[data-theme="light"] .lp-callout {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 0 24px rgba(245,158,11,0.16);
}
.lp-callout strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.lp-callout span { color: var(--text-muted); font-size: 0.7rem; }
.lp-callout-arrow {
  position: absolute;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, rgba(245,158,11,0.6), transparent);
  top: 50%;
}
.lp-callout-1 {
  top: -10px; right: -30px;
  transform: rotate(2deg);
}
.lp-callout-1 .lp-callout-arrow { left: -36px; }
@keyframes lpFloatY {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50%     { transform: translateY(-8px) rotate(2deg); }
}

.lp-mini-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(15,23,42,0.95);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 4;
  animation: lpFloatY2 7s ease-in-out infinite;
}
[data-theme="light"] .lp-mini-card {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.lp-mini-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.06));
  color: var(--primary);
  border: 1px solid rgba(245,158,11,0.3);
}
.lp-mini-l {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-mini-v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.lp-mini-card-1 {
  bottom: -18px; left: -10px;
}
@keyframes lpFloatY2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ─────────────── MAP PREVIEW ─────────────── */
.lp-map-preview, .lp-map-large {
  display: block;
  width: 100%;
  height: auto;
}
.lp-browser-body-map { height: auto; min-height: 200px; }

.lp-map-tools {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.lp-tool {
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-muted);
}
.lp-tool.active {
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  color: #0F172A;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(245,158,11,0.4);
}

/* ─────────────── MARQUEE BAND ─────────────── */
.lp-marquee {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(90deg,
    transparent,
    rgba(245,158,11,0.025) 30%,
    rgba(245,158,11,0.025) 70%,
    transparent);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.lp-marquee::before,
.lp-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.lp-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--secondary), transparent);
}
.lp-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--secondary), transparent);
}
.lp-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: lpMarquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.m-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  opacity: 0.8;
  transition: opacity .2s, color .2s;
}
.m-item:hover { opacity: 1; color: var(--text); }
.m-dot {
  color: var(--primary);
  font-size: 0.6rem;
  opacity: 0.7;
}
@keyframes lpMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ÜRÜN TURU — 7 ADIM TAB SHOWCASE
   ═══════════════════════════════════════════════════════════ */

/* TAB NAV */
.lp-tour-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
[data-theme="light"] .lp-tour-tabs { background: rgba(255,255,255,0.65); }
.lp-tour-tab {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: all .2s ease;
  text-align: left;
  position: relative;
  font-family: inherit;
}
.lp-tour-tab:hover {
  background: rgba(255,255,255,0.04);
}
[data-theme="light"] .lp-tour-tab:hover { background: rgba(0,0,0,0.04); }
.lp-tour-tab-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.lp-tour-tab-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-tour-tab.active {
  background: linear-gradient(135deg, rgba(245,158,11,0.16), rgba(245,158,11,0.04));
  border-color: rgba(245,158,11,0.45);
  box-shadow:
    0 0 24px rgba(245,158,11,0.22),
    0 1px 0 rgba(255,255,255,0.06) inset;
}
.lp-tour-tab.active .lp-tour-tab-num {
  color: var(--primary);
}
.lp-tour-tab.active .lp-tour-tab-name {
  color: #FCD34D;
}
.lp-tour-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 12px; right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #FCD34D);
  border-radius: 2px;
  filter: blur(0.5px);
}

/* STAGE — 2 kolon: sol metin + sağ ürün ekranı */
.lp-tour-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 36px;
  align-items: stretch;
  min-height: 520px;
}

/* SOL METİN PANELİ */
.lp-tour-side {
  position: relative;
  padding: 40px 36px;
  border-radius: 24px;
  background: linear-gradient(165deg,
    rgba(245,158,11,0.05) 0%,
    rgba(255,255,255,0.02) 35%,
    rgba(255,255,255,0.025) 100%);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
[data-theme="light"] .lp-tour-side {
  background: linear-gradient(165deg,
    rgba(245,158,11,0.05) 0%,
    rgba(255,255,255,0.7) 35%,
    rgba(255,255,255,0.65) 100%);
}
.lp-tour-side::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%);
  filter: blur(20px);
}
.lp-tour-text {
  display: none;
  position: relative;
  z-index: 1;
}
.lp-tour-text.active {
  display: block;
  animation: lpTourFade .35s ease;
}
@keyframes lpTourFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-tour-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,0.1);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  border: 1px solid rgba(245,158,11,0.3);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.lp-tour-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.lp-tour-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.lp-tour-text p strong {
  color: var(--text);
  font-weight: 600;
}
.lp-tour-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-tour-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 0.88rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}
.lp-tour-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245,158,11,0.4) 0%, rgba(245,158,11,0.1) 60%, transparent 100%);
}
.lp-tour-bullets li::after {
  content: '';
  position: absolute;
  left: 5px; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(245,158,11,0.7);
}

/* SAĞ EKRAN */
.lp-tour-screen {
  position: relative;
}
.lp-browser-tour {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lp-tour-body {
  flex: 1;
  padding: 0;
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.lp-tour-pane {
  display: none;
  height: 100%;
}
.lp-tour-pane.active {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: lpTourFade .4s ease;
}
.lp-tour-pane-image {
  height: 100%;
}
.lp-tour-pane-image > :not(.lp-tour-step-image) {
  display: none !important;
}
.lp-tour-step-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

/* PANE GENEL */
.lp-pane-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lp-pane-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 4px;
}

/* PANE 01 — Senaryo */
.lp-pane-scen {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.lp-pane-scen-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  transition: border-color .2s;
}
[data-theme="light"] .lp-pane-scen-card { background: rgba(0,0,0,0.02); }
.lp-pane-scen-on {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.015));
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 26px rgba(245,158,11,0.18);
}
.lp-pane-scen-tile {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  flex-shrink: 0;
}
.lp-pane-scen-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.015em;
}
.lp-pane-scen-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.lp-pane-scen-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  color: #0F172A;
  box-shadow: 0 0 12px rgba(245,158,11,0.4);
}

.lp-pane-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.26);
  margin-top: auto;
}
.lp-pane-summary-l {
  font-family: var(--font-display);
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-pane-summary strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-pane-summary-go {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

/* PANE 02 — Konum */
.lp-pane-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,158,11,0.32);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.92rem;
  box-shadow: 0 0 16px rgba(245,158,11,0.12);
}
[data-theme="light"] .lp-pane-search { background: rgba(255,255,255,0.9); }
.lp-pane-search svg { color: var(--primary); }
.lp-pane-search-cur {
  color: var(--primary);
  animation: lpBlink 1s steps(2) infinite;
}
@keyframes lpBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.lp-pane-mapwrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  flex: 1;
  min-height: 260px;
}
.lp-pane-map {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-pane-locinfo {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 10px;
}
.lp-pane-locinfo > div {
  padding: 10px 14px;
  background: rgba(15,23,42,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}
.lp-pane-locinfo span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.lp-pane-locinfo strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* PANE 03 — Çatı */
.lp-pane-roofgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  flex: 1;
}
.lp-pane-roofparams {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-pane-param {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
}
[data-theme="light"] .lp-pane-param { background: rgba(0,0,0,0.025); }
.lp-pane-param-l {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-pane-param-v {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-top: 4px;
  line-height: 1;
}
.lp-pane-param-v i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 3px;
}

/* PANE 04 — Ekipman */
.lp-pane-eqlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.lp-pane-eqrow {
  display: grid;
  grid-template-columns: 1.6fr auto auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  transition: all .2s;
}
[data-theme="light"] .lp-pane-eqrow { background: rgba(0,0,0,0.025); }
.lp-pane-eqrow-active {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.015));
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 22px rgba(245,158,11,0.16);
}
.lp-pane-eqrow-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-pane-eqrow-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.lp-pane-eqcell {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.lp-pane-eqcell i {
  font-style: normal;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 2px;
}
.lp-pane-eqcell-price {
  color: var(--primary);
}
.lp-pane-eqcheck {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: transparent;
}
.lp-pane-eqrow-active .lp-pane-eqcheck {
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  color: #0F172A;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(245,158,11,0.45);
}
.lp-pane-arrayinfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-pane-arrayinfo > div {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(6,182,212,0.04));
  border: 1px solid var(--border-subtle);
}
.lp-pane-arrayinfo span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lp-pane-arrayinfo strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* PANE 05 — Ayarlar */
.lp-pane-tariffs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.lp-pane-tariff {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  cursor: default;
  transition: all .2s;
}
[data-theme="light"] .lp-pane-tariff { background: rgba(0,0,0,0.025); }
.lp-pane-tariff-active {
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  color: #0F172A;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(245,158,11,0.36);
}
.lp-pane-settings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-pane-set {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
}
[data-theme="light"] .lp-pane-set { background: rgba(0,0,0,0.025); }
.lp-pane-set-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.lp-pane-set-h span {
  font-family: var(--font-display);
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
}
.lp-pane-set-h strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.lp-pane-slider {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
[data-theme="light"] .lp-pane-slider { background: rgba(0,0,0,0.08); }
.lp-pane-slider-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #FCD34D);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(245,158,11,0.5);
}
.lp-pane-slider-knob {
  position: absolute;
  top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FCD34D;
  border: 2px solid #0F172A;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(245,158,11,0.7), 0 2px 6px rgba(0,0,0,0.4);
}

/* PANE 06 — Hesapla */
.lp-pane-calc {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.lp-pane-calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.015));
  border: 1px solid rgba(245,158,11,0.35);
}
.lp-pane-calc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.lp-pane-calc-pct {
  position: relative;
  width: 70px; height: 70px;
  flex-shrink: 0;
}
.lp-pane-spinner {
  width: 100%; height: 100%;
  animation: lpSpinSlow 4s linear infinite;
}
@keyframes lpSpinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.lp-pane-calc-pct > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.lp-pane-calc-pct > span i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}
.lp-pane-calc-log {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-subtle);
  font-family: 'Space Grotesk', monospace;
}
[data-theme="light"] .lp-pane-calc-log { background: rgba(0,0,0,0.04); }
.lp-pane-log-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.lp-pane-log-row .d {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.lp-pane-log-row.done { color: var(--text); }
.lp-pane-log-row.done .d { background: var(--success); box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.lp-pane-log-row.active { color: var(--primary); font-weight: 700; }
.lp-pane-log-row.active .d-active {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(245,158,11,0.7);
  animation: lpPulse2 1.4s ease-in-out infinite;
}
@keyframes lpPulse2 {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.lp-pane-log-row .d-pending { background: rgba(255,255,255,0.15); }
.lp-pane-calc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 0.82rem;
}
[data-theme="light"] .lp-pane-calc-foot { background: rgba(0,0,0,0.02); }
.lp-pane-calc-foot span { color: var(--text-muted); }
.lp-pane-calc-foot strong { color: var(--primary); font-weight: 800; }

/* PANE 07 — Sonuçlar */
.lp-pane-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.lp-pane-resultviz {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
  flex: 1;
}
.lp-pane-pdf {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.02));
  border: 1px solid rgba(245,158,11,0.4);
  box-shadow: 0 0 24px rgba(245,158,11,0.12);
}
.lp-pane-pdf-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  color: #0F172A;
  box-shadow: 0 0 16px rgba(245,158,11,0.4);
}
.lp-pane-pdf-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lp-pane-pdf-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.lp-pane-pdf-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  white-space: nowrap;
}

/* TOUR FOOT — alt navigation */
.lp-tour-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.lp-tour-prev,
.lp-tour-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.lp-tour-prev:hover,
.lp-tour-next:hover {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.4);
  color: var(--primary);
}
[data-theme="light"] .lp-tour-prev,
[data-theme="light"] .lp-tour-next { background: rgba(0,0,0,0.04); }
.lp-tour-pages {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.lp-tour-current {
  color: var(--primary);
  font-size: 1.4rem;
}
.lp-tour-divider {
  color: var(--text-muted);
  font-weight: 400;
}
.lp-tour-total {
  color: var(--text-muted);
}

/* ─────────────── SENARYO KARTLARI ─────────────── */
.lp-scen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.lp-scen-card {
  padding: 36px 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  font-family: inherit;
}
[data-theme="light"] .lp-scen-card { background: rgba(255,255,255,0.7); }
.lp-scen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c, var(--primary)), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.lp-scen-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--c, var(--primary)) 50%, transparent);
  box-shadow:
    0 0 50px color-mix(in srgb, var(--c, var(--primary)) 20%, transparent),
    0 16px 40px rgba(0,0,0,0.4);
}
.lp-scen-card:hover::before { opacity: 1; }
.lp-scen-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
[data-theme="light"] .lp-scen-num { color: rgba(0,0,0,0.06); }
.lp-scen-tile {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--c, var(--primary)) 22%, transparent),
    color-mix(in srgb, var(--c, var(--primary)) 5%, transparent));
  border: 1px solid color-mix(in srgb, var(--c, var(--primary)) 40%, transparent);
  color: var(--c, var(--primary));
  margin-bottom: 22px;
}
.lp-scen-tile svg { width: 40px; height: 40px; }
.lp-scen-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 12px;
}
.lp-scen-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.lp-scen-list {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-scen-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.5;
}
.lp-scen-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c, var(--primary));
  box-shadow: 0 0 6px currentColor;
}
.lp-scen-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--c, var(--primary));
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

/* ─────────────── BENTO FEATURES ─────────────── */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
}
.lp-bento-card {
  padding: 28px 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
[data-theme="light"] .lp-bento-card { background: rgba(255,255,255,0.65); }
.lp-bento-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
[data-theme="light"] .lp-bento-card:hover {
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lp-bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.04));
  border: 1px solid rgba(245,158,11,0.28);
  color: var(--primary);
  margin-bottom: 18px;
}
.lp-bento-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.lp-bento-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* bento positioning */
.lp-bento-1 { grid-column: span 4; grid-row: span 2; }
.lp-bento-2 { grid-column: span 2; grid-row: span 1; }
.lp-bento-3 { grid-column: span 2; grid-row: span 1; }
.lp-bento-4 { grid-column: span 4; grid-row: span 2; }
.lp-bento-5 { grid-column: span 2; grid-row: span 1; }
.lp-bento-6 { grid-column: span 2; grid-row: span 1; }

.lp-bento-viz {
  margin-top: auto;
  padding-top: 18px;
  position: relative;
}
.lp-spark {
  width: 100%;
  height: 80px;
  display: block;
}
.lp-bento-chip {
  position: absolute;
  top: 0; right: 0;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(245,158,11,0.14);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  border: 1px solid rgba(245,158,11,0.28);
  letter-spacing: 0.04em;
}
.lp-bento-stats {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-bento-stats > div {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
}
[data-theme="light"] .lp-bento-stats > div { background: rgba(0,0,0,0.025); }
.lp-bento-stats .l {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp-bento-stats .v {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-top: 6px;
  line-height: 1;
}
.lp-bento-stats .v i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 3px;
}

/* ─────────────── 7-ADIM TIMELINE ─────────────── */
.lp-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.lp-tl-line {
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(245,158,11,0.5),
    rgba(245,158,11,0.2),
    rgba(245,158,11,0.2),
    rgba(245,158,11,0.5));
  z-index: 0;
}
.lp-tl-step {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 16px 0 0;
}
.lp-tl-num {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.94rem;
  color: #0F172A;
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  box-shadow: 0 0 16px rgba(245,158,11,0.4);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.lp-tl-step::before {
  content: '';
  position: absolute;
  top: 16px; left: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245,158,11,0.18);
  filter: blur(14px);
  z-index: -1;
}
.lp-tl-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.lp-tl-d {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─────────────── AVANTAJLAR ─────────────── */
.lp-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-adv {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245,158,11,0.045), rgba(6,182,212,0.025));
  border: 1px solid var(--border-subtle);
  transition: transform .2s, border-color .2s;
}
.lp-adv:hover {
  transform: translateY(-3px);
  border-color: rgba(245,158,11,0.3);
}
.lp-adv-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,182,212,0.14);
  color: var(--accent);
  border: 1px solid rgba(6,182,212,0.28);
  margin-bottom: 16px;
}
.lp-adv h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.lp-adv p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────── SSS / FAQ ─────────────── */
.lp-faq-wrap { max-width: 880px; margin: 0 auto; }
.lp-faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 4px;
  cursor: pointer;
  transition: padding .2s ease;
}
.lp-faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--text);
}
.lp-faq-plus {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  border: 1px solid rgba(245,158,11,0.32);
  background: rgba(245,158,11,0.05);
  transition: transform .3s ease, background .2s, color .2s;
}
.lp-faq-item.open .lp-faq-plus {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  color: #0F172A;
  border-color: transparent;
}
.lp-faq-a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .3s ease;
}
.lp-faq-item.open .lp-faq-a { max-height: 320px; margin-top: 14px; }

/* ─────────────── FİNAL CTA ─────────────── */
.lp-cta-band {
  padding: 88px 56px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #1A1A1C 0%, #242426 50%, #1A1A1C 100%);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  text-align: center;
}
[data-theme="light"] .lp-cta-band {
  background: linear-gradient(135deg, #FFFFFF 0%, #F2F2F7 50%, #FFFFFF 100%);
}
.lp-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 0%, rgba(245,158,11,0.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(6,182,212,0.16), transparent 60%);
  pointer-events: none;
}
.lp-cta-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 35% 75%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.5), transparent);
  opacity: 0.35;
  pointer-events: none;
}
[data-theme="light"] .lp-cta-stars { display: none; }
.lp-cta-band > * { position: relative; z-index: 1; }
.lp-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 820px;
  margin: 14px auto 0;
  color: var(--text);
}
.lp-cta-band h2 .amber {
  background: linear-gradient(135deg, var(--primary), #FCD34D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-cta-band p {
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}
.lp-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-cta-notes {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────── FOOTER ─────────────── */
.lp-footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 56px;
}
.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
}
.lp-footer-brand img { height: 36px; width: auto; }
.lp-footer-brand strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.lp-footer-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 6px;
}
.lp-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
}
.lp-footer-links a:hover { color: var(--text); }
.lp-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ─────────────── BACK-TO-LANDING ─────────────── */
.app-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-light);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.app-home-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(245,158,11,0.1);
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1100px) {
  .lp-hero .lp-container { grid-template-columns: 1fr; gap: 60px; }
  .lp-hero-stage { min-height: auto; max-width: 700px; margin: 0 auto; }
  .lp-stage-back { display: none; }
  .lp-stage-front { margin-left: 0; margin-top: 0; }
  .lp-callout-1 { right: 12px; }
  .lp-mini-card-1 { left: 12px; bottom: -22px; }
  .lp-bento-1, .lp-bento-4 { grid-column: span 6; grid-row: auto; }
  .lp-bento-2, .lp-bento-3, .lp-bento-5, .lp-bento-6 { grid-column: span 3; }
  .lp-timeline { grid-template-columns: repeat(4, 1fr); }
  .lp-tl-line { display: none; }
  .lp-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-section { padding: 96px 0; }
  .lp-tour-stage { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .lp-tour-side { padding: 32px 28px; }
  .lp-pane-roofgrid { grid-template-columns: 1fr; }
  .lp-pane-resultviz { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .lp-container { padding: 0 24px; }
  .lp-nav { padding: 14px 24px; gap: 14px; }
  .lp-nav-links { display: none; }
  .lp-nav-brand-tag { display: none; }
  .lp-section { padding: 72px 0; }
  .lp-section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .lp-hero { padding: 48px 0 72px; }
  .lp-hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .lp-hero-ctas .lp-btn { flex: 1 1 auto; justify-content: center; }
  .lp-scen-grid { grid-template-columns: 1fr; }
  .lp-tour-tabs {
    grid-template-columns: repeat(7, minmax(96px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .lp-tour-tabs::-webkit-scrollbar { display: none; }
  .lp-tour-tab { padding: 10px 8px; }
  .lp-tour-tab-name { font-size: 0.78rem; }
  .lp-pane-eqrow { grid-template-columns: 1fr auto; gap: 8px; }
  .lp-pane-eqrow > .lp-pane-eqcell:nth-child(3),
  .lp-pane-eqrow > .lp-pane-eqcell:nth-child(4) { display: none; }
  .lp-pane-settings { grid-template-columns: 1fr; }
  .lp-pane-tariffs { grid-template-columns: repeat(2, 1fr); }
  .lp-pane-summary { grid-template-columns: 1fr; gap: 8px; }
  .lp-pane-summary-go { display: none; }
  .lp-pane-result-head { flex-direction: column; align-items: flex-start; }
  .lp-bento { grid-template-columns: repeat(2, 1fr); }
  .lp-bento-1, .lp-bento-2, .lp-bento-3, .lp-bento-4, .lp-bento-5, .lp-bento-6 { grid-column: span 2; grid-row: auto; }
  .lp-timeline { grid-template-columns: repeat(2, 1fr); }
  .lp-adv-grid { grid-template-columns: 1fr; }
  .lp-cta-band { padding: 56px 28px; }
  .lp-footer-inner { flex-direction: column; }
  .lp-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .lp-cmp-grid { grid-template-columns: 1.4fr 1fr; }
  .lp-cmp-h:nth-child(3), .lp-cmp-h:nth-child(4),
  .lp-cmp-c:nth-child(4n+3), .lp-cmp-c:nth-child(4n+4) { display: none; }
  .lp-callout-1, .lp-mini-card-1 { display: none; }
  .m-item { font-size: 0.92rem; }
}
@media (max-width: 480px) {
  .lp-section { padding: 56px 0; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; }
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-bento { grid-template-columns: 1fr; }
  .lp-bento-card { grid-column: span 1 !important; }
  .lp-timeline { grid-template-columns: 1fr; }
  .lp-show-card { padding: 28px 22px; }
  .lp-scen-card { padding: 28px 24px; }
  .lp-kpi-row { grid-template-columns: 1fr; }
}
