/* ── RESET & TOKENS ──────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fbfbfb;
  --bg-white: #ffffff;
  --text-dark: #1d1d1f;
  --text-muted: rgba(29,29,31,0.38);
  --accent-1: #4F46E5;
  --accent-2: #7C3AED;
  --radius-pill: 100px;
  --radius-lg: 20px;
  --radius-md: 12px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
    'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAVBAR ──────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 40px; height: 60px;
  background: rgba(251,251,251,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lp-nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-dark);
  font-size: 16px; font-weight: 700;
}
.lp-nav-links {
  display: flex; align-items: center; gap: 28px;
}
.lp-nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--text-dark); }
.lp-nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 22px;
  background: var(--text-dark); color: white;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-nav-cta:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-nav { padding: 0 20px; }
}

/* ── HERO ────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: var(--bg);
}
.lp-hero-badge {
  display: inline-flex; align-items: center;
  gap: 6px; padding: 6px 16px;
  background: white; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); margin-bottom: 28px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.lp-hero-h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.lp-gradient-text {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 520px; line-height: 1.6;
  margin-bottom: 36px;
}
.lp-hero-ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}

/* Buttons */
.lp-btn-primary {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  background: var(--text-dark); color: white;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.lp-btn-primary:hover { transform: translateY(-1px); opacity: 0.85; }
.lp-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500;
  color: var(--text-dark); text-decoration: none; background: transparent;
  transition: border-color 0.2s;
}
.lp-btn-ghost:hover { border-color: var(--text-dark); }
.lp-btn-full { width: 100%; justify-content: center; margin-top: auto; }
.lp-btn-large { padding: 18px 40px; font-size: 16px; }

/* Proof bar */
.lp-hero-proof {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 60px;
}
.lp-proof-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.lp-proof-item strong { font-size: 15px; font-weight: 700; }
.lp-proof-item span { font-size: 12px; color: var(--text-muted); }
.lp-proof-divider { width: 1px; height: 28px; background: rgba(0,0,0,0.1); }

/* Mockup window */
.lp-hero-mockup {
  width: 100%; max-width: 680px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.lp-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: #F5F5F5;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lp-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mockup-dot.r { background: #FF5F57; }
.lp-mockup-dot.y { background: #FEBC2E; }
.lp-mockup-dot.g { background: #28C840; }
.lp-mockup-title {
  flex: 1; text-align: center;
  font-size: 12px; color: #999; font-weight: 500;
}
.lp-mockup-body { padding: 20px; }
.lp-mockup-chat { display: flex; flex-direction: column; gap: 10px; }
.lp-chat-msg {
  padding: 10px 14px; border-radius: 10px;
  font-size: 13px; line-height: 1.4;
  max-width: 90%; text-align: left;
}
.lp-chat-msg.user {
  align-self: flex-end;
  background: var(--text-dark); color: white;
  border-bottom-right-radius: 3px;
}
.lp-chat-msg.ai {
  align-self: flex-start;
  background: #F5F5F5; color: var(--text-dark);
  border-bottom-left-radius: 3px;
}

/* ── FLOWING TEXT ────────────────────────────── */
.lp-flowing-text {
  padding: 120px 0;
  background: var(--bg);
}
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-flow-line {
  display: flex; flex-wrap: wrap;
  gap: 10px 12px; align-items: baseline;
  margin-bottom: 2px;
}
.lp-flow-spacer { height: 40px; }
.flow-word {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
  transition: opacity 0.35s ease;
}
.flow-word.dim { opacity: 0.15; }
.flow-word.active { opacity: 1; }

/* ── MARQUEE ─────────────────────────────────── */
.lp-marquee-section {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}
.lp-marquee-label {
  text-align: center;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.lp-marquee-wrapper {
  overflow: hidden;
  margin-bottom: 12px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.lp-marquee-track {
  display: flex; gap: 10px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.lp-marquee-reverse .lp-marquee-track {
  animation: marqueeScrollReverse 28s linear infinite;
}
.lp-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.lp-marquee-chip {
  display: inline-flex; align-items: center;
  gap: 6px; padding: 10px 18px;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.lp-marquee-chip.dark {
  background: var(--text-dark); color: white;
  border-color: var(--text-dark);
}

/* ── BENTO FEATURES ──────────────────────────── */
.lp-features {
  padding: 120px 0;
  background: var(--bg);
}
.lp-section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  text-align: center;
}
.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.lp-bento-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.lp-bento-large { grid-row: span 2; }
.lp-bento-tag {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.lp-bento-card h3 {
  font-size: 20px; font-weight: 700;
  color: var(--text-dark); line-height: 1.25;
}
.lp-bento-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.lp-bento-demo {
  background: #F7F7F7;
  border-radius: 10px; padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 8px; flex: 1;
}
.lp-demo-row {
  font-size: 12px; color: var(--text-muted); padding: 5px 0;
}
.lp-demo-row.success { color: #16A34A; font-weight: 500; }
.lp-demo-cmd { color: var(--text-dark); font-weight: 500; }
.lp-bento-pills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px;
}
.lp-bento-pills span {
  padding: 4px 10px;
  background: #F3F4F6; border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--text-dark);
}
.lp-bento-stat { display: flex; flex-direction: column; margin-top: 8px; }
.lp-stat-num {
  font-size: 42px; font-weight: 800;
  color: var(--text-dark); line-height: 1;
}
.lp-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.lp-bento-badges { display: flex; gap: 8px; margin-top: 6px; }
.lp-bento-badges span { font-size: 12px; font-weight: 500; color: var(--text-muted); }

@media (max-width: 900px) {
  .lp-bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lp-bento { grid-template-columns: 1fr; }
  .lp-bento-large { grid-row: span 1; }
}

/* ── STATS ───────────────────────────────────── */
.lp-stats {
  padding: 100px 0;
  background: var(--text-dark);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.lp-stat-big {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; color: white;
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 8px;
}
.lp-stat-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.4; max-width: 140px; margin: 0 auto;
}
.lp-stats-source {
  text-align: center; margin-top: 48px;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .lp-stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── TESTIMONIALS ────────────────────────────── */
.lp-testimonials {
  padding: 120px 0;
  background: var(--bg);
}
.lp-testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.lp-testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.lp-testi-featured {
  background: var(--text-dark);
  border-color: var(--text-dark);
}
.lp-testi-metric {
  font-size: 52px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--text-dark);
}
.lp-testi-featured .lp-testi-metric { color: white; }
.lp-testi-metric-label {
  font-size: 13px; color: var(--text-muted); margin-top: -8px;
}
.lp-testi-featured .lp-testi-metric-label { color: rgba(255,255,255,0.5); }
.lp-testi-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1;
}
.lp-testi-featured p { color: rgba(255,255,255,0.7); }
.lp-testi-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.lp-testi-featured .lp-testi-author { border-top-color: rgba(255,255,255,0.1); }
.lp-testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.lp-testi-name {
  font-size: 13px; font-weight: 600; color: var(--text-dark);
}
.lp-testi-featured .lp-testi-name { color: white; }
.lp-testi-role { font-size: 12px; color: var(--text-muted); }
.lp-testi-featured .lp-testi-role { color: rgba(255,255,255,0.4); }

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

/* ── PRICING ─────────────────────────────────── */
.lp-pricing { padding: 120px 0; background: var(--bg); }
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; align-items: start;
  margin-bottom: 32px;
}
.lp-price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  gap: 20px; position: relative;
  min-height: 420px;
}
.lp-price-featured {
  background: var(--text-dark);
  border-color: var(--text-dark);
  transform: scale(1.02);
}
.lp-price-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: white; font-size: 12px; font-weight: 600;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.lp-price-plan {
  font-size: 14px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.lp-price-featured .lp-price-plan { color: rgba(255,255,255,0.5); }
.lp-price-amount { display: flex; align-items: baseline; gap: 4px; }
.lp-price-num {
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text-dark);
}
.lp-price-featured .lp-price-num { color: white; }
.lp-price-period { font-size: 16px; color: var(--text-muted); }
.lp-price-featured .lp-price-period { color: rgba(255,255,255,0.5); }
.lp-price-features {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px; flex: 1;
}
.lp-price-features li { font-size: 14px; color: var(--text-dark); }
.lp-price-featured .lp-price-features li { color: rgba(255,255,255,0.8); }
.lp-price-features li.dim { color: var(--text-muted); }
.lp-pricing-note {
  text-align: center; font-size: 13px; color: var(--text-muted);
}

@media (max-width: 768px) {
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-price-featured { transform: none; }
}

/* ── FINAL CTA ───────────────────────────────── */
.lp-final-cta {
  padding: 140px 0;
  background: white;
  text-align: center;
}
.lp-final-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.lp-final-inner h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.lp-final-inner p { font-size: 18px; color: var(--text-muted); }
.lp-final-proof {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────── */
.lp-footer { background: var(--text-dark); padding: 60px 0 0; }
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.6; max-width: 220px; margin-top: 12px;
}
.lp-footer-logo { color: white !important; }
.lp-footer-col { display: flex; flex-direction: column; gap: 4px; }
.lp-footer-col h4 {
  color: white; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.lp-footer-col a {
  color: rgba(255,255,255,0.45); font-size: 13px;
  text-decoration: none; padding: 4px 0; transition: color 0.15s;
}
.lp-footer-col a:hover { color: white; }
.lp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.25);
  flex-wrap: wrap; gap: 12px;
}
.lp-footer-trust { display: flex; gap: 16px; }

/* ── PRİCİNG EXTRAS ──────────────────────────────────────────────── */
.lp-price-desc {
  font-size: 13px; color: var(--text-muted);
  margin-top: -8px; margin-bottom: 20px;
}
.lp-price-featured .lp-price-desc { color: rgba(255,255,255,0.55); }

.lp-btn-white {
  display: block; background: #fff; color: #1d1d1f;
  text-align: center; padding: 14px 0;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: opacity 0.15s;
}
.lp-btn-white:hover { opacity: 0.88; }


/* ── DİL SEÇİCİ ─────────────────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center;
  background: rgba(0,0,0,0.05);
  border-radius: 100px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 4px 10px; border: none;
  background: transparent; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted, #6B6B6B);
  cursor: pointer; transition: all 0.15s;
  letter-spacing: 0.02em;
}
.lang-btn.active {
  background: white; color: var(--text-dark, #1A1A1A);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.lang-btn:hover:not(.active) { color: var(--text-dark, #1A1A1A); }

/* ── PERIYOT SEÇİCİ ─────────────────────────────────────────────── */
.lp-period-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(0,0,0,0.05);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.lp-period-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted, #6B6B6B);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-period-btn.active {
  background: white;
  color: var(--text-dark, #1A1A1A);
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.lp-period-btn:hover:not(.active) {
  color: var(--text-dark, #1A1A1A);
}
.lp-period-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

/* Para birimi sembolü */
.lp-price-curr {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  align-self: flex-start;
  margin-top: 6px;
}
.lp-price-featured .lp-price-curr { color: white; }

/* Orijinal fiyat (üstü çizili) */
.lp-price-orig {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: -12px;
  margin-bottom: 4px;
}
.lp-price-featured .lp-price-orig {
  color: rgba(255,255,255,0.4);
}

/* Yıllık fiyat altındaki küçük yazı */
.lp-price-yearly-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: -14px;
}
.lp-price-featured .lp-price-yearly-note {
  color: rgba(255,255,255,0.4);
}

/* User selector top row */
.lp-user-selector-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; font-size: 13px; color: var(--text-muted);
}

@media (max-width: 768px) {
  .lp-container { padding: 0 20px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-hero { padding: 100px 20px 60px; }
  .lp-flowing-text { padding: 80px 0; }
}

/* ── Integrations section ── */
.lp-integrations { padding: 120px 0; background: white; }

.lp-int-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.lp-int-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.lp-int-logo-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-int-logo-item:hover .lp-int-logo-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lp-int-logo-item span {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
}
.lp-int-soon {
  font-size: 10px !important;
  background: #EEF2FF;
  color: #4F46E5 !important;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 600 !important;
}

.lp-int-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-int-card {
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-int-card:hover {
  border-color: #D1D5DB;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  background: white;
}
.lp-int-card-icon { font-size: 32px; }
.lp-int-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.lp-int-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  flex: 1;
}
.lp-int-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding: 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}
.lp-int-demo-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6B7280;
}
.lp-int-demo-step.success { color: #059669; }
.step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #374151;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-int-demo-step.success .step-num {
  background: #D1FAE5;
  color: #059669;
}
@media (max-width: 768px) {
  .lp-int-cards { grid-template-columns: 1fr; }
  .lp-integrations { padding: 80px 0; }
}

/* ── Demo Section ── */
.lp-demo-section {
  padding: 100px 0;
  background: var(--bg, #F7F7F5);
}
.lp-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.lp-demo-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-demo-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.lp-demo-step-item:hover { background: white; border-color: #E5E7EB; }
.lp-demo-step-item.active {
  background: white;
  border-color: #4F46E5;
  box-shadow: 0 4px 16px rgba(79,70,229,0.1);
}
.lp-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.lp-demo-step-item.active .lp-step-num { background: #4F46E5; color: white; }
.lp-step-title { font-size: 14px; font-weight: 600; color: #111827; }
.lp-step-desc { font-size: 12px; color: #9CA3AF; margin-top: 2px; }
.lp-demo-mockup {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}
.lp-demo-mockup-body {
  padding: 20px;
  min-height: 240px;
  position: relative;
}
.lp-demo-frame { display: none; }
.lp-demo-frame.active { display: block; }
.lp-demo-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 13px;
}
.lp-dt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.lp-dt-row.header {
  background: #F9FAFB;
  font-weight: 600;
  font-size: 11px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-dt-row:not(.header):hover { background: #F9FAFB; }
.lp-dt-row.highlight-row { background: #FEF9C3; }
.lp-dt-row.empty-row { opacity: 0.3; }
.lp-dt-row.result-row {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  margin-top: 4px;
}
.result-val { color: #059669; font-size: 14px; }
.lp-demo-success {
  margin-top: 12px;
  background: #ECFDF5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #059669;
  font-weight: 500;
}
.lp-demo-chat-anim {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-dca-label {
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-dca-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  max-width: 85%;
  line-height: 1.5;
}
.lp-dca-bubble.user {
  background: #111827;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.lp-dca-bubble.ai {
  background: #F0FDF4;
  color: #065F46;
  border: 1px solid #BBF7D0;
  border-bottom-left-radius: 3px;
}
.lp-dca-bubble.hidden { display: none; }
.lp-cursor { animation: blink 1s infinite; margin-left: 1px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Trust Bar ── */
.lp-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0 0;
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
}
.lp-trust-item svg { color: #9CA3AF; }

/* ── Blog Section ── */
.lp-blog-section {
  padding: 100px 0;
  background: var(--bg, #F7F7F5);
}
.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-blog-card {
  background: white;
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
}
.lp-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: #E5E7EB;
}
.lp-blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4F46E5;
  background: #EEF2FF;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.lp-blog-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}
.lp-blog-card p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  flex: 1;
}
.lp-blog-read {
  font-size: 13px;
  font-weight: 600;
  color: #4F46E5;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .lp-demo-inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-blog-grid { grid-template-columns: 1fr; }
}

/* ── Yıllık "2 ay ücretsiz" animasyonu ──────── */
#yearly-gift-pro,
#yearly-gift-biz {
  animation: giftPulse 2s ease-in-out infinite;
}

@keyframes giftPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
  50%       { transform: scale(1.02); box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

#orig-pro, #orig-biz { transition: all .3s; }
#note-pro, #note-biz { transition: all .2s; }
