@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap);
/* —— Global reset & page shell —— */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, #root {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  overflow-x: hidden;
  background: #06070b;
  color: #f6f7fb;
}

html[data-theme="light"] {
  background: #fbfbfd;
  color: #0f172a;
}

body {
  background: inherit;
  color: inherit;
  overflow-x: hidden;
}

#root {
  min-height: 100vh;
}

/* —— Tokens —— */
.lp-root {
  --lp-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --lp-radius: 18px;
  --lp-radius-sm: 12px;
  --lp-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--lp-font);
  font-feature-settings: "cv02", "cv03", "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--lp-bg0);
  color: var(--lp-text);
  position: relative;
}

.lp-root[data-theme="dark"] {
  --lp-bg0: #06070b;
  --lp-bg1: #0b0d14;
  --lp-bg2: #11141d;
  --lp-surface: rgba(20, 23, 36, 0.7);
  --lp-surface-solid: #12151f;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-strong: rgba(255, 255, 255, 0.14);
  --lp-text: #f6f7fb;
  --lp-text-strong: #ffffff;
  --lp-muted: #98a2b3;
  --lp-accent: #ff8a1c;
  --lp-accent-2: #f43f5e;
  --lp-accent-3: #8b5cf6;
  --lp-accent-dim: rgba(255, 138, 28, 0.16);
  --lp-accent-glow: rgba(255, 138, 28, 0.5);
  --lp-mesh-1: rgba(255, 138, 28, 0.32);
  --lp-mesh-2: rgba(139, 92, 246, 0.26);
  --lp-mesh-3: rgba(244, 63, 94, 0.18);
  --lp-glass: rgba(8, 10, 16, 0.7);
  --lp-success: #22c55e;
  --lp-warning: #f59e0b;
  --lp-info: #38bdf8;
}

.lp-root[data-theme="light"] {
  --lp-bg0: #fbfbfd;
  --lp-bg1: #f3f5f9;
  --lp-bg2: #ffffff;
  --lp-surface: rgba(255, 255, 255, 0.9);
  --lp-surface-solid: #ffffff;
  --lp-border: rgba(15, 23, 42, 0.08);
  --lp-border-strong: rgba(15, 23, 42, 0.14);
  --lp-text: #0f172a;
  --lp-text-strong: #020617;
  --lp-muted: #64748b;
  --lp-accent: #ea580c;
  --lp-accent-2: #e11d48;
  --lp-accent-3: #7c3aed;
  --lp-accent-dim: rgba(234, 88, 12, 0.12);
  --lp-accent-glow: rgba(234, 88, 12, 0.35);
  --lp-mesh-1: rgba(234, 88, 12, 0.22);
  --lp-mesh-2: rgba(124, 58, 237, 0.16);
  --lp-mesh-3: rgba(225, 29, 72, 0.12);
  --lp-glass: rgba(255, 255, 255, 0.78);
  --lp-success: #16a34a;
  --lp-warning: #d97706;
  --lp-info: #0284c7;
}

@media (prefers-reduced-motion: reduce) {
  .lp-root *,
  .lp-root *::before,
  .lp-root *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* —— Cursor-follow spotlight —— */
.lp-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 30%),
    var(--lp-mesh-1),
    transparent 65%
  );
  mix-blend-mode: screen;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.lp-root[data-theme="light"] .lp-spotlight {
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* —— Animated mesh / orbs hero background —— */
.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  will-change: transform;
}

.lp-orb-1 {
  width: 480px;
  height: 480px;
  background: var(--lp-mesh-1);
  top: -120px;
  left: -100px;
  animation: lp-orb-a 16s ease-in-out infinite alternate;
}

.lp-orb-2 {
  width: 420px;
  height: 420px;
  background: var(--lp-mesh-2);
  top: 10%;
  right: -120px;
  animation: lp-orb-b 18s ease-in-out infinite alternate;
}

.lp-orb-3 {
  width: 360px;
  height: 360px;
  background: var(--lp-mesh-3);
  top: 55%;
  left: 30%;
  animation: lp-orb-c 22s ease-in-out infinite alternate;
}

@keyframes lp-orb-a {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.12); }
}
@keyframes lp-orb-b {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 80px) scale(1.08); }
}
@keyframes lp-orb-c {
  0% { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(70px, -50px) scale(1.1); }
}

.lp-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(var(--lp-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--lp-border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.lp-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* —— Nav —— */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--lp-ease-out), border-color 0.35s, box-shadow 0.35s, padding 0.3s;
}

.lp-nav.lp-nav--scrolled {
  background: var(--lp-glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  padding-top: 10px;
  padding-bottom: 10px;
}

.lp-root[data-theme="dark"] .lp-nav.lp-nav--scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lp-nav-inner {
  max-width: 1240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--lp-text);
  text-decoration: none;
}

.lp-brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--lp-accent), #f43f5e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px var(--lp-accent-glow);
  position: relative;
  overflow: hidden;
}

.lp-brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: lp-shimmer 4s ease-in-out infinite 1.5s;
}

@keyframes lp-shimmer {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.lp-nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 900px) {
  .lp-nav-links { display: flex; }
}

.lp-nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-muted);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
}

.lp-nav-link:hover {
  color: var(--lp-text);
  background: var(--lp-accent-dim);
  transform: translateY(-1px);
}

.lp-nav-link--accent {
  color: var(--lp-accent);
  font-weight: 700;
  border: 1px solid var(--lp-accent-dim);
  background: var(--lp-accent-dim);
}

.lp-nav-link--accent:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #f97316);
  border-color: transparent;
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-icon-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--lp-ease-spring), border-color 0.2s, box-shadow 0.2s;
}

.lp-lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 12px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  gap: 2px;
}

.lp-lang-btn {
  padding: 6px 11px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--lp-muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lp-lang-btn:hover { color: var(--lp-text); }

.lp-lang-btn.is-active {
  background: linear-gradient(135deg, var(--lp-accent), #f97316);
  color: #fff;
  box-shadow: 0 4px 14px var(--lp-accent-glow);
}

/* —— Kullanıcı chip & menü (login durumu) —— */
.lp-user {
  position: relative;
}

.lp-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s var(--lp-ease-spring), border-color 0.2s, box-shadow 0.2s;
  max-width: 200px;
}

.lp-user-chip:hover {
  transform: translateY(-1px);
  border-color: var(--lp-accent);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.lp-user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--lp-accent-glow);
  flex-shrink: 0;
}

.lp-user-meta {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
  min-width: 0;
}

@media (min-width: 720px) {
  .lp-user-meta { display: flex; }
}

.lp-user-status {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-success);
  position: relative;
  padding-left: 10px;
}

.lp-user-status::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.lp-user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-text);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 3px;
}

.lp-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  padding: 8px;
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border-strong);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: lp-menu-in 0.22s var(--lp-ease-spring);
}

@keyframes lp-menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.lp-user-menu-head {
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--lp-border);
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-user-menu-head strong {
  color: var(--lp-text-strong);
  font-size: 0.92rem;
  font-weight: 700;
  word-break: break-word;
}
.lp-user-menu-head small {
  color: var(--lp-muted);
  font-size: 0.78rem;
  word-break: break-all;
}

.lp-user-menu-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--lp-text);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}

.lp-user-menu-item:hover {
  background: var(--lp-accent-dim);
  color: var(--lp-accent);
}

.lp-user-menu-item.is-danger { color: #fb7185; }
.lp-user-menu-item.is-danger:hover {
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
}

/* —— Hero "Welcome back" banner —— */
.lp-welcome-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--lp-accent-dim), transparent 70%);
  border: 1px solid var(--lp-border-strong);
  margin-bottom: 18px;
  animation: lp-fade-up 0.7s var(--lp-ease-out) both;
  max-width: 100%;
}

.lp-welcome-dot {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lp-success);
  flex-shrink: 0;
}
.lp-welcome-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--lp-success);
  opacity: 0.5;
  animation: lp-ring 2.4s ease-out infinite;
}

.lp-welcome-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.lp-welcome-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-text-strong);
  letter-spacing: -0.01em;
}
.lp-welcome-text span {
  font-size: 0.82rem;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp-icon-btn:hover {
  transform: translateY(-2px) rotate(-6deg);
  border-color: var(--lp-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--lp-ease-spring), box-shadow 0.25s, background 0.2s, border-color 0.2s;
}

.lp-btn:active { transform: scale(0.97); }

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-accent), #f97316);
  color: #fff;
  box-shadow: 0 4px 24px var(--lp-accent-glow);
}

.lp-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--lp-ease-out);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--lp-accent-glow);
}

.lp-btn-primary:hover::after { transform: translateX(110%); }

.lp-btn-secondary {
  background: var(--lp-surface);
  color: var(--lp-text);
  border: 1px solid var(--lp-border-strong);
}

.lp-btn-secondary:hover {
  border-color: var(--lp-accent);
  transform: translateY(-2px);
}

.lp-btn-arrow {
  transition: transform 0.25s var(--lp-ease-spring);
}
.lp-btn:hover .lp-btn-arrow { transform: translateX(4px); }

/* —— Hero —— */
.lp-hero {
  position: relative;
  padding: clamp(110px, 14vh, 160px) clamp(20px, 4vw, 40px) clamp(60px, 10vh, 100px);
  z-index: 2;
}

.lp-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr 1.05fr; }
}

.lp-hero-copy { position: relative; z-index: 2; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lp-text);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-strong);
  margin-bottom: 24px;
  animation: lp-fade-up 0.8s var(--lp-ease-out) both;
}

.lp-eyebrow-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent), #f43f5e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6rem;
  position: relative;
}

.lp-eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: 0.4;
  animation: lp-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes lp-ping {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}

.lp-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--lp-text-strong);
  animation: lp-fade-up 0.85s var(--lp-ease-out) 0.08s both;
}

.lp-hero h1 .lp-rotator {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--lp-accent), #fbbf24 50%, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: lp-gradient-shift 6s ease-in-out infinite;
  min-width: 6ch;
  text-align: left;
}

.lp-hero h1 .lp-rotator-word {
  display: inline-block;
  animation: lp-word-in 0.55s var(--lp-ease-spring);
}

@keyframes lp-word-in {
  0% { opacity: 0; transform: translateY(20px) rotateX(-30deg); filter: blur(6px); }
  100% { opacity: 1; transform: none; filter: none; }
}

@keyframes lp-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lp-hero-lead {
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--lp-muted);
  max-width: 540px;
  animation: lp-fade-up 0.85s var(--lp-ease-out) 0.16s both;
}

.lp-hero-lead strong {
  color: var(--lp-text);
  font-weight: 600;
}

.lp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  animation: lp-fade-up 0.85s var(--lp-ease-out) 0.24s both;
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--lp-muted);
  animation: lp-fade-up 0.85s var(--lp-ease-out) 0.32s both;
}

.lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-trust-item svg { color: var(--lp-success); }

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* —— Hero visual: floating dashboard —— */
.lp-hero-visual {
  position: relative;
  z-index: 2;
  animation: lp-fade-up 1s var(--lp-ease-out) 0.4s both;
  perspective: 1400px;
}

.lp-hero-stage {
  position: relative;
  transform-style: preserve-3d;
  animation: lp-stage-float 8s ease-in-out infinite;
}

@keyframes lp-stage-float {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-10px) rotateX(2deg) rotateY(-2deg); }
}

.lp-bento {
  position: relative;
  border-radius: 22px;
  padding: 18px;
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  transform: rotate(-1deg);
}

.lp-root[data-theme="light"] .lp-bento {
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.lp-bento-glow {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: 0.14;
  filter: blur(70px);
  top: -50px; right: -30px;
  animation: lp-pulse-glow 5s ease-in-out infinite;
}

@keyframes lp-pulse-glow {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.22; transform: scale(1.12); }
}

.lp-bento-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.lp-dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-dot:nth-child(1) { background: #ef4444; }
.lp-dot:nth-child(2) { background: #f59e0b; }
.lp-dot:nth-child(3) { background: #22c55e; }

.lp-bento-title {
  margin-left: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lp-muted);
  letter-spacing: 0.02em;
}

.lp-bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .lp-bento-grid { grid-template-columns: 1fr; }
}

.lp-bento-card {
  border-radius: 14px;
  background: var(--lp-bg1);
  border: 1px solid var(--lp-border);
  padding: 14px;
  transition: transform 0.4s var(--lp-ease-out), border-color 0.25s;
}

.lp-bento-card:hover { transform: translateY(-3px); border-color: var(--lp-accent-dim); }

.lp-bento-card.lp-bento-card--accent {
  background: linear-gradient(160deg, var(--lp-accent-dim), transparent);
  border-color: rgba(255, 138, 28, 0.25);
}

.lp-bento-section {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 10px;
}

.lp-fake-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 0.74rem;
  color: var(--lp-text);
  font-weight: 500;
  animation: lp-row-in 0.5s var(--lp-ease-out) both;
}
.lp-fake-row:nth-child(2) { animation-delay: 0.7s; }
.lp-fake-row:nth-child(3) { animation-delay: 0.95s; }
.lp-fake-row:nth-child(4) { animation-delay: 1.2s; }
.lp-fake-row:last-child { border-bottom: none; }

@keyframes lp-row-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}

.lp-fake-pill {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-pill-success { background: rgba(34, 197, 94, 0.18); color: #4ade80; }
.lp-pill-warning { background: rgba(234, 179, 8, 0.18); color: #fbbf24; }
.lp-pill-info { background: rgba(56, 189, 248, 0.18); color: #38bdf8; }

.lp-fake-bars {
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 6px 4px 0;
}

.lp-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-2));
  border-radius: 4px 4px 0 0;
  animation: lp-bar-grow 1.2s var(--lp-ease-spring) both, lp-bar-pulse 4s ease-in-out infinite;
  transform-origin: bottom;
}
.lp-bar:nth-child(1) { animation-delay: 0.3s, 0s; height: 35%; }
.lp-bar:nth-child(2) { animation-delay: 0.4s, 0s; height: 60%; }
.lp-bar:nth-child(3) { animation-delay: 0.5s, 0s; height: 45%; }
.lp-bar:nth-child(4) { animation-delay: 0.6s, 0s; height: 78%; }
.lp-bar:nth-child(5) { animation-delay: 0.7s, 0s; height: 92%; }
.lp-bar:nth-child(6) { animation-delay: 0.8s, 0s; height: 65%; }
.lp-bar:nth-child(7) { animation-delay: 0.9s, 0s; height: 88%; }

@keyframes lp-bar-grow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes lp-bar-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.lp-mini-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}
.lp-mini-stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--lp-text-strong);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.lp-mini-stat .delta {
  font-size: 0.7rem;
  color: var(--lp-success);
  font-weight: 700;
}

/* Floating notifications */
.lp-toast {
  position: absolute;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--lp-surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--lp-border-strong);
  font-size: 0.78rem;
  color: var(--lp-text);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
  animation: lp-toast-in 0.7s var(--lp-ease-spring) both, lp-float-y 5s ease-in-out infinite;
  z-index: 3;
}

.lp-toast-1 { top: -18px; right: -14px; animation-delay: 1.4s, 1.4s; }
.lp-toast-2 { bottom: 20px; left: -28px; animation-delay: 2.1s, 2.1s; }

.lp-toast-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #fff;
}

.lp-toast-1 .lp-toast-icon { background: linear-gradient(135deg, #22c55e, #16a34a); }
.lp-toast-2 .lp-toast-icon { background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2)); }

.lp-toast strong {
  display: block;
  color: var(--lp-text-strong);
  font-weight: 700;
  margin-bottom: 1px;
}
.lp-toast small { color: var(--lp-muted); font-size: 0.7rem; }

@keyframes lp-toast-in {
  from { opacity: 0; transform: translate(0, 20px) scale(0.85); }
  to { opacity: 1; transform: none; }
}

@keyframes lp-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* —— Logo / proof marquee —— */
.lp-marquee-wrap {
  padding: 22px 0 14px;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.lp-marquee-wrap::before,
.lp-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.lp-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--lp-bg1), transparent); }
.lp-marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--lp-bg1), transparent); }

.lp-marquee {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: lp-marquee 36s linear infinite;
}

.lp-marquee-item {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-muted);
  opacity: 0.7;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-marquee-item svg { color: var(--lp-accent); opacity: 0.85; }

@keyframes lp-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* —— Sections —— */
.lp-section {
  padding: clamp(72px, 11vw, 120px) clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.lp-section-inner { max-width: 1180px; margin: 0 auto; }

.lp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.lp-section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lp-accent-dim);
}

.lp-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--lp-text-strong);
  line-height: 1.15;
}

.lp-section-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* —— Pain → gain split —— */
.lp-pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .lp-pain-grid { grid-template-columns: 1fr 1fr; }
}

.lp-pain-card {
  border-radius: var(--lp-radius);
  padding: 28px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface-solid);
  position: relative;
  overflow: hidden;
}

.lp-pain-card.is-pain {
  background: linear-gradient(165deg, rgba(244, 63, 94, 0.08), transparent);
  border-color: rgba(244, 63, 94, 0.2);
}
.lp-pain-card.is-gain {
  background: linear-gradient(165deg, var(--lp-accent-dim), transparent);
  border-color: rgba(255, 138, 28, 0.25);
}

.lp-pain-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
}
.is-pain .lp-pain-tag { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.is-gain .lp-pain-tag { background: var(--lp-accent-dim); color: var(--lp-accent); }

.lp-pain-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text-strong);
}

.lp-pain-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }

.lp-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--lp-text);
  line-height: 1.5;
}

.lp-pain-list li svg { flex-shrink: 0; margin-top: 3px; }
.is-pain .lp-pain-list li svg { color: #f43f5e; opacity: 0.9; }
.is-gain .lp-pain-list li svg { color: var(--lp-success); }

/* —— Bento Faydalar —— */
.lp-bv-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}

@media (min-width: 760px) {
  .lp-bv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lp-bv-grid {
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .lp-bv--feature {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
  }
}

.lp-bv {
  position: relative;
  padding: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s var(--lp-ease-out), border-color 0.3s, box-shadow 0.4s;
}

.lp-bv:hover {
  transform: translateY(-4px);
  border-color: var(--lp-accent-dim);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.lp-root[data-theme="dark"] .lp-bv:hover {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.lp-bv-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--lp-accent-dim), transparent);
  color: var(--lp-accent);
  border: 1px solid var(--lp-border);
  transition: transform 0.4s var(--lp-ease-spring);
}

.lp-bv:hover .lp-bv-icon { transform: rotate(-8deg) scale(1.05); }

.lp-bv h4 {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text-strong);
  line-height: 1.3;
}

.lp-bv p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-bv-tag {
  margin-top: auto;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lp-bg1);
  border: 1px solid var(--lp-border);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--lp-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Feature kart (büyük) */
.lp-bv--feature {
  padding: 30px;
  background: linear-gradient(160deg, var(--lp-bg2) 0%, var(--lp-bg1) 100%);
  border-color: var(--lp-border-strong);
  isolation: isolate;
  min-height: 360px;
}

.lp-bv-feature-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-bv-orb {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--lp-accent);
  opacity: 0.18;
  filter: blur(70px);
  top: -60px; right: -50px;
  animation: lp-pulse-glow 6s ease-in-out infinite;
}
.lp-bv-orb-2 {
  width: 220px; height: 220px;
  background: var(--lp-accent-3);
  opacity: 0.14;
  top: auto; bottom: -50px; left: -40px; right: auto;
  animation-delay: 1.4s;
}

.lp-bv--feature > * { position: relative; z-index: 1; }

.lp-bv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--lp-accent-dim);
  color: var(--lp-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 14px;
}

.lp-bv-feature-head h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lp-text-strong);
  line-height: 1.2;
}

.lp-bv-feature-head p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-bv-feature-mock {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px;
  background: var(--lp-bg1);
  border: 1px solid var(--lp-border);
  padding: 6px 14px;
}

.lp-root[data-theme="light"] .lp-bv-feature-mock {
  background: var(--lp-bg0);
}

.lp-bv-mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--lp-text);
  border-bottom: 1px dashed var(--lp-border);
  animation: lp-row-in 0.55s var(--lp-ease-out) both;
}
.lp-bv-mock-row:nth-child(2) { animation-delay: 0.18s; }
.lp-bv-mock-row:nth-child(3) { animation-delay: 0.32s; }
.lp-bv-mock-row:nth-child(4) { animation-delay: 0.46s; }
.lp-bv-mock-row:last-child { border-bottom: none; }

.lp-bv-mock-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-bv-mock-dot--ok { background: var(--lp-success); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12); }
.lp-bv-mock-dot--queue { background: var(--lp-info); box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12); }
.lp-bv-mock-dot--live {
  background: var(--lp-accent);
  box-shadow: 0 0 0 4px var(--lp-accent-dim);
  position: relative;
}
.lp-bv-mock-dot--live::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--lp-accent);
  opacity: 0;
  animation: lp-ring 2.4s ease-out infinite;
}

.lp-bv-mock-text { flex: 1; font-weight: 500; }

.lp-bv-mock-time {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lp-bv-feature-foot {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-border);
}

.lp-bv-kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-bv-kpi strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lp-text-strong);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--lp-accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-bv-kpi span {
  font-size: 0.72rem;
  color: var(--lp-muted);
  font-weight: 500;
}

/* —— Stats counter strip —— */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lp-bg1), var(--lp-bg2));
  border: 1px solid var(--lp-border);
  position: relative;
  overflow: hidden;
}

.lp-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, var(--lp-accent-dim), transparent);
  pointer-events: none;
}

.lp-stat {
  text-align: center;
  position: relative;
}

.lp-stat-num {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lp-text-strong);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--lp-accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.lp-stat-label {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--lp-muted);
  font-weight: 500;
}

/* —— Workflow / timeline —— */
.lp-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.lp-flow-line {
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent-3) 50%, transparent 100%);
  opacity: 0.3;
  z-index: 0;
}

.lp-flow-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}

.lp-flow-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px var(--lp-accent-glow);
  position: relative;
}

.lp-flow-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 2px solid var(--lp-accent);
  opacity: 0;
  animation: lp-ring 3s ease-out infinite;
  animation-delay: var(--ring-delay, 0s);
}

@keyframes lp-ring {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.lp-flow-body {
  padding: 6px 0;
}

.lp-flow-body h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lp-text-strong);
  letter-spacing: -0.02em;
}

.lp-flow-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

/* —— Testimonial / quote —— */
.lp-quote-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 44px 32px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border-strong);
  text-align: center;
  overflow: hidden;
}

.lp-quote-wrap::before {
  content: "“";
  position: absolute;
  top: -30px;
  left: 24px;
  font-size: 8rem;
  color: var(--lp-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.lp-quote-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--lp-text);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 20px;
}

.lp-quote-meta {
  font-size: 0.85rem;
  color: var(--lp-muted);
  font-weight: 600;
}
.lp-quote-meta strong { color: var(--lp-text); display: block; margin-bottom: 2px; font-style: normal; font-weight: 700; }

/* —— Final CTA —— */
.lp-cta-band {
  margin: 0 clamp(16px, 3vw, 32px) clamp(60px, 9vw, 90px);
  border-radius: 28px;
  padding: clamp(44px, 7vw, 72px) clamp(28px, 5vw, 56px);
  text-align: center;
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 35%, #7c2d12 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.lp-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 40%, rgba(255, 138, 28, 0.4), transparent 50%),
    radial-gradient(circle at 82% 30%, rgba(139, 92, 246, 0.3), transparent 45%);
  pointer-events: none;
}

.lp-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}

.lp-cta-band > * { position: relative; z-index: 1; }

.lp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lp-cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.lp-cta-band p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.lp-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lp-cta-band .lp-btn-primary {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.lp-cta-band .lp-btn-primary:hover {
  background: #f8fafc;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.lp-cta-band .lp-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.lp-cta-band .lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.lp-cta-mini {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* —— Footer —— */
.lp-footer {
  padding: 48px clamp(20px, 4vw, 40px) 28px;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg1);
  position: relative;
  z-index: 2;
}

.lp-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .lp-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.lp-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lp-footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--lp-text-strong);
  letter-spacing: -0.03em;
}

.lp-footer-copy {
  font-size: 0.9rem;
  color: var(--lp-muted);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.lp-footer-col h5 {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-footer-col a,
.lp-footer-col button {
  display: block;
  font-size: 0.9rem;
  color: var(--lp-text);
  text-decoration: none;
  padding: 5px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
}

.lp-footer-col a:hover,
.lp-footer-col button:hover {
  opacity: 1;
  color: var(--lp-accent);
  transform: translateX(2px);
}

.lp-footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--lp-border);
  font-size: 0.82rem;
  color: var(--lp-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

/* —— Reveal —— */
.lp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--lp-ease-out), transform 0.85s var(--lp-ease-out);
}

.lp-reveal.lp-is-visible {
  opacity: 1;
  transform: none;
}

.lp-stagger-1 { transition-delay: 0.06s; }
.lp-stagger-2 { transition-delay: 0.14s; }
.lp-stagger-3 { transition-delay: 0.22s; }
.lp-stagger-4 { transition-delay: 0.30s; }
.lp-stagger-5 { transition-delay: 0.38s; }

@media (max-width: 640px) {
  .lp-nav-inner { flex-wrap: wrap; }
  .lp-nav-actions { width: 100%; justify-content: flex-end; }
  .lp-toast-1 { right: -4px; }
  .lp-toast-2 { left: -8px; }
}

/* Prinella Growth — GIGI lp token'ları ile uyumlu ek stiller */

.lp-pg-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.lp-pg-trust-grid .lp-trust-item {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--lp-text);
}

.lp-pg-micro {
  color: var(--lp-muted);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

/* —— Dashboard mock (her zaman koyu) —— */
.lp-pg-dashboard-wrap {
  position: relative;
}

.lp-pg-dashboard {
  background: #0f172a;
  color: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(1deg);
}

.lp-pg-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 18px;
}

.lp-pg-window-dots span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  margin-right: 5px;
}

.lp-pg-dash-title {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.875rem;
}

.lp-pg-dash-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 14px;
}

.lp-pg-dash-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lp-pg-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lp-pg-metric {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
}

.lp-pg-metric small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-size: 0.68rem;
}

.lp-pg-metric strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 4px;
}

.lp-pg-signal {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(34, 197, 94, 0.16);
  color: #6ee7b7;
  font-weight: 800;
  font-size: 0.75rem;
}

.lp-pg-signal.is-warn {
  background: rgba(249, 115, 22, 0.18);
  color: #fdba74;
}

.lp-pg-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-pg-action {
  background: #fff;
  color: #0f172a;
  border-radius: 16px;
  padding: 14px;
  font-weight: 800;
  font-size: 0.8125rem;
}

.lp-pg-action span {
  display: block;
  color: #64748b;
  font-weight: 600;
  margin-top: 5px;
  font-size: 0.75rem;
}

.lp-pg-float {
  position: absolute;
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border-strong);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 10px 14px;
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--lp-text);
  z-index: 2;
}

.lp-pg-float-1 { top: 34px; left: -24px; }
.lp-pg-float-2 { right: -18px; bottom: 60px; }
.lp-pg-float-3 { right: 38px; top: -20px; color: var(--lp-accent); }

/* —— Card grids —— */
.lp-pg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-pg-card {
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
  transition: transform 0.25s var(--lp-ease-out), border-color 0.25s, box-shadow 0.25s;
}

.lp-pg-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-border-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.lp-pg-card h3,
.lp-pg-card h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text-strong);
}

.lp-pg-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.lp-pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.lp-pg-features {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.lp-pg-feature-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--lp-text);
  font-size: 0.9375rem;
}

.lp-pg-feature-row svg {
  color: var(--lp-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* —— Mock panel —— */
.lp-pg-mock-panel {
  border-radius: 24px;
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
  padding: 22px;
}

.lp-pg-mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  margin-bottom: 12px;
  align-items: center;
}

.lp-pg-mock-row:last-child { margin-bottom: 0; }

.lp-pg-mock-row h4 {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--lp-text-strong);
}

.lp-pg-mock-row small {
  color: var(--lp-muted);
  font-weight: 600;
  font-size: 0.8125rem;
}

.lp-pg-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--lp-accent-dim);
  color: var(--lp-accent);
  white-space: nowrap;
}

.lp-pg-pill.is-good {
  background: rgba(34, 197, 94, 0.12);
  color: var(--lp-success);
}

.lp-pg-card-stack {
  display: grid;
  gap: 16px;
}

.lp-pg-card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* —— Dark exclusive band —— */
.lp-pg-dark-band {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 40%, #7c2d12 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-pg-dark-band::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 138, 28, 0.14);
  right: -150px;
  top: -180px;
  pointer-events: none;
}

.lp-pg-dark-band .lp-section-inner {
  position: relative;
  z-index: 1;
}

.lp-pg-dark-band .lp-section-desc,
.lp-pg-dark-band p {
  color: rgba(255, 255, 255, 0.72);
}

.lp-pg-dark-band h2 {
  color: #fff;
}

.lp-pg-dark-band .lp-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lp-pg-limited-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  padding: 26px;
}

.lp-pg-limited-box h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #fff;
}

.lp-pg-limited-box p {
  margin: 0;
  line-height: 1.6;
}

.lp-pg-dark-band .lp-btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-color: transparent;
}

.lp-pg-dark-band .lp-btn-secondary:hover {
  background: #fff;
}

/* —— Steps —— */
.lp-pg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-pg-step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-accent), #f43f5e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px var(--lp-accent-glow);
}

/* —— Two lists —— */
.lp-pg-two-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.lp-pg-list-box {
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 26px;
  background: var(--lp-surface-solid);
}

.lp-pg-list-box h2 {
  font-size: 1.6rem;
  margin: 0 0 0;
}

.lp-pg-list-box ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.lp-pg-list-box li {
  display: flex;
  gap: 10px;
  color: var(--lp-muted);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.lp-pg-list-box li svg { flex-shrink: 0; margin-top: 2px; }

.lp-pg-warn-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-accent-dim);
  color: var(--lp-accent);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* —— Form —— */
.lp-pg-form-card {
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  padding: clamp(24px, 4vw, 34px);
  max-width: 860px;
  margin: 0 auto;
}

.lp-pg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-pg-field {
  display: grid;
  gap: 7px;
}

.lp-pg-field.full { grid-column: 1 / -1; }

.lp-pg-field label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lp-text);
}

.lp-pg-field input,
.lp-pg-field select,
.lp-pg-field textarea {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 14px;
  font: inherit;
  color: var(--lp-text);
  background: var(--lp-bg2);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-pg-field textarea {
  min-height: 120px;
  resize: vertical;
}

.lp-pg-field input:focus,
.lp-pg-field select:focus,
.lp-pg-field textarea:focus {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 4px var(--lp-accent-dim);
}

.lp-pg-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-pg-check-label {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.lp-pg-check-label:hover {
  border-color: var(--lp-border-strong);
  background: var(--lp-accent-dim);
}

.lp-pg-check-label input { width: auto; accent-color: var(--lp-accent); }

.lp-pg-form-note {
  color: var(--lp-muted);
  font-size: 0.8125rem;
  margin-top: 14px;
  line-height: 1.5;
}

.lp-pg-form-success {
  color: var(--lp-success);
  font-weight: 800;
}

.lp-pg-form-error {
  color: var(--lp-accent-2);
  font-weight: 700;
}

.lp-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* —— FAQ —— */
.lp-pg-faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-pg-faq details {
  background: var(--lp-surface-solid);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.lp-pg-faq details[open] {
  border-color: var(--lp-border-strong);
}

.lp-pg-faq summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-text-strong);
  list-style: none;
}

.lp-pg-faq summary::-webkit-details-marker { display: none; }

.lp-pg-faq details p {
  color: var(--lp-muted);
  margin: 12px 0 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.lp-pg-final-cta {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.lp-pg-final-cta .lp-section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* —— Section center head —— */
.lp-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* —— Responsive —— */
@media (max-width: 920px) {
  .lp-pg-split,
  .lp-pg-two-lists {
    grid-template-columns: 1fr;
  }

  .lp-pg-card-grid,
  .lp-pg-steps {
    grid-template-columns: 1fr 1fr;
  }

  .lp-pg-dashboard-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .lp-pg-trust-grid,
  .lp-pg-card-grid,
  .lp-pg-steps,
  .lp-pg-form-grid,
  .lp-pg-checkboxes,
  .lp-pg-metrics,
  .lp-pg-action-row,
  .lp-pg-card-grid-2 {
    grid-template-columns: 1fr;
  }

  .lp-pg-float { display: none; }

  .lp-pg-form-card {
    padding: 22px;
    border-radius: 22px;
  }

  .lp-pg-dark-band .lp-btn,
  .lp-hero-cta-row .lp-btn {
    width: 100%;
    justify-content: center;
  }
}


/*# sourceMappingURL=main.f6c9217f802c86879131.css.map*/