/* ═══════════════════════════════════════════════
   LANDING PAGE - XAgently
   Giriş yapmamış kullanıcılar için tam sayfa landing
   ═══════════════════════════════════════════════ */

/* Landing page gösterilirken app gizlenir */
body.show-landing #appContent,
body.show-landing .top-tabs {
  display: none !important;
}


body.show-landing #landingPage {
  display: block !important;
}

/* responsive.css'deki body padding ve header overflow'u landing'i bozmasın */
body.show-landing {
  padding: 0 !important;
}

body.show-landing .landing-header {
  overflow: visible !important;
  padding: 10px 16px 0 !important;
  margin-bottom: 0 !important;
  flex-wrap: nowrap !important;
}

/* App gösterilirken landing gizlenir */
body.show-app #landingPage {
  display: none !important;
}

body.show-app #appContent {
  display: block !important;
}

body.show-app #appHeader {
  display: block !important;
}

/* Fixed floating header için içerik itme — 10px top + 48px bar + 20px gap */
body.show-app {
  padding-top: 78px !important;
}

@supports (padding-top: env(safe-area-inset-top)) {
  body.show-app {
    padding-top: calc(78px + env(safe-area-inset-top)) !important;
  }
}

body.show-landing #appHeader {
  display: none !important;
}

/* İlk yükleme: her ikisi de gizli, auth kararı bekle (FOUC önleme) */
#landingPage {
  display: none;
}

/* ═══════════════════════════════════════════════
   LANDING - GENEL
   ═══════════════════════════════════════════════ */
.landing-page {
  width: 100%;
  min-height: 100vh;
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   LANDING - HEADER
   ═══════════════════════════════════════════════ */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: transparent;
  padding: 10px 16px 0;
  box-sizing: border-box;
  transition: background 0.3s;
}

.landing-header.scrolled {
  background: transparent;
}

.landing-header-inner {
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
  height: 48px;
  display: flex;
  align-items: center;
  background: rgba(22, 22, 22, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: background 0.3s, border-color 0.3s;
}

.landing-header.scrolled .landing-header-inner {
  background: rgba(10, 10, 10, 0.97);
  border-color: rgba(43, 43, 43, 0.6);
}

body.light-mode .landing-header-inner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02) inset;
}

.landing-logo {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 20px;
  font-weight: 700;
  color: #f0f0f0;
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.landing-logo .logo-x {
  font-weight: 700;
  color: #f0f0f0;
}

.landing-logo .logo-agent {
  font-weight: 300;
  color: #a3a3a3;
}

.landing-logo .logo-ly {
  font-weight: 500;
  color: var(--accent, #4ade80);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 48px;
}

.landing-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.landing-nav a:hover {
  color: #f0f0f0;
}

/* Landing dil toggle (pill-shaped TR | EN) */
.landing-lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.landing-lang-opt {
  background: transparent;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  line-height: 1;
}

.landing-lang-opt:hover {
  color: rgba(255, 255, 255, 0.6);
}

.landing-lang-opt.active-lang {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

/* Panel / Dashboard butonu (giriş yapılmış header) */
.landing-btn-panel {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.landing-btn-panel:hover {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
}

/* Header avatar (giriş yapılmış) */
.landing-header-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.landing-header-avatar:hover {
  border-color: rgba(74, 222, 128, 0.5);
}

.landing-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

#landingAvatarFallback {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
}

/* Hamburger toggle butonu */
.landing-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  flex-shrink: 0;
}

.landing-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Aktif (açık) → X animasyonu */
.landing-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.landing-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.landing-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav açık → göster */
.landing-nav.nav-open {
  display: flex !important;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding-left: 36px;
}

.landing-btn-login {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s;
}

.landing-btn-login:hover {
  color: #f0f0f0;
}

.landing-btn-cta {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  background: #4ade80;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.landing-btn-cta:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   LANDING - SECTION ORTAK
   ═══════════════════════════════════════════════ */
.landing-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 32px;
}

.landing-section-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a3a3a3;
  margin-bottom: 20px;
}

.landing-section-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #f0f0f0;
  margin-bottom: 16px;
}

.landing-section-title .accent {
  color: #4ade80;
  font-style: italic;
}

.landing-section-desc {
  font-size: 16px;
  color: #a3a3a3;
  line-height: 1.7;
  max-width: 520px;
}

/* Bölümler arası ayırıcı çizgi */
.landing-divider {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.landing-divider-line {
  border: none;
  border-top: 1px solid #2b2b2b;
}

/* ═══════════════════════════════════════════════
   LANDING - HERO
   ═══════════════════════════════════════════════ */
.landing-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}

/* Hero tag (üst etiket) */
.landing-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.landing-hero h1 {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #f0f0f0;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.landing-hero h1 .accent {
  color: #4ade80;
  font-style: normal;
}

.landing-hero .hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #737373;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 600px;
}

.landing-hero .hero-desc {
  font-size: 15px;
  color: #525252;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.landing-hero-primary {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  background: #4ade80;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-hero-primary:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

.landing-hero-secondary {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  padding: 0;
}

.landing-hero-secondary:hover {
  color: #f0f0f0;
}

.landing-hero-secondary .play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #525252;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: border-color 0.2s;
}

.landing-hero-secondary:hover .play-icon {
  border-color: #a3a3a3;
}

.landing-hero-stats {
  display: flex;
  gap: 64px;
}

.landing-stat {
  display: flex;
  flex-direction: column;
}

.landing-stat-value {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #f0f0f0;
  line-height: 1;
}

.landing-stat-value .accent {
  color: #4ade80;
  font-style: normal;
}

.stat-unit {
  font-size: 0.5em;
  font-weight: 400;
  color: #737373;
  margin-left: 2px;
}

.landing-stat-label {
  font-size: 13px;
  color: #737373;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   LANDING - PROBLEM
   ═══════════════════════════════════════════════ */
.landing-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.landing-problem-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #1a1a1a;
}

.landing-problem-item:last-child {
  border-bottom: none;
}

.problem-num {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 14px;
  font-weight: 700;
  color: #4ade80;
  min-width: 28px;
}

.landing-problem-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 8px;
}

.landing-problem-item p {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   LANDING - STORY
   ═══════════════════════════════════════════════ */
.landing-quote {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: #d4d4d4;
  line-height: 1.5;
  border-left: 3px solid #4ade80;
  padding-left: 28px;
  margin: 0 0 32px 0;
  max-width: 700px;
}

.landing-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.landing-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 18px;
  font-weight: 700;
  color: #4ade80;
}

.landing-quote-name {
  font-size: 15px;
  font-weight: 600;
  color: #f0f0f0;
}

.landing-quote-role {
  font-size: 13px;
  color: #737373;
}

.landing-story-text {
  font-size: 16px;
  color: #a3a3a3;
  line-height: 1.7;
  max-width: 600px;
}

/* ═══════════════════════════════════════════════
   LANDING - FEATURES
   ═══════════════════════════════════════════════ */
.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.landing-feature-card {
  background: #0f0f0f;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.landing-feature-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: #4ade80;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 10px;
}

.landing-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 8px;
}

.landing-feature-card p {
  font-size: 13px;
  color: #737373;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   LANDING - HOW IT WORKS
   ═══════════════════════════════════════════════ */
.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.landing-step {
  background: #0f0f0f;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.step-num {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: #4ade80;
}

.landing-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.landing-step p {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   LANDING - PRICING
   ═══════════════════════════════════════════════ */
.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.landing-plan-card {
  background: #0f0f0f;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.landing-plan-card.plan-popular {
  border-color: #4ade80;
}

.plan-popular-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #4ade80;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.plan-name {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 14px;
  font-weight: 600;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 40px;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 8px;
}

.plan-period {
  font-size: 16px;
  font-weight: 400;
  color: #737373;
}

.plan-card .plan-badge {
  font-size: 12px;
  color: #4ade80;
  margin-bottom: 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  color: #a3a3a3;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: "✓ ";
  color: #4ade80;
  font-weight: 700;
}

.plan-btn {
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #a3a3a3;
  background: transparent;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  margin-top: auto;
}

.plan-btn:hover {
  border-color: #525252;
  color: #f0f0f0;
}

.plan-btn-primary {
  background: #4ade80;
  color: #0a0a0a;
  border-color: #4ade80;
}

.plan-btn-primary:hover {
  background: #22c55e;
  border-color: #22c55e;
  color: #0a0a0a;
}

/* ═══════════════════════════════════════════════
   LANDING - FAQ
   ═══════════════════════════════════════════════ */
.landing-faq-list {
  margin-top: 48px;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid #2b2b2b;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #f0f0f0;
}

.faq-arrow {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 20px;
  color: #525252;
  transition: transform 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 14px;
  color: #a3a3a3;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   LANDING - FINAL CTA
   ═══════════════════════════════════════════════ */
.landing-final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-cta-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 16px;
}

.landing-cta-title .accent {
  color: #4ade80;
  font-style: italic;
}

.landing-cta-desc {
  font-size: 16px;
  color: #a3a3a3;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════
   LANDING - FOOTER
   ═══════════════════════════════════════════════ */
.landing-footer {
  border-top: 1px solid #2b2b2b;
  background: #0a0a0a;
}

.landing-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

.landing-footer-brand {
  max-width: 300px;
}

.landing-footer-brand .landing-logo {
  margin-bottom: 12px;
}

.landing-footer-desc {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
}

.landing-footer-links {
  display: flex;
  gap: 64px;
}

.footer-link-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 16px;
}

.footer-link-group a {
  display: block;
  font-size: 14px;
  color: #737373;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-link-group a:hover {
  color: #a3a3a3;
}

.landing-footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid #1a1a1a;
}

.landing-footer-bottom p {
  font-size: 13px;
  color: #525252;
}

/* ═══════════════════════════════════════════════
   SCROLL FADE-IN ANİMASYON
   ═══════════════════════════════════════════════ */
.landing-fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   HERO GLOW
   ═══════════════════════════════════════════════ */
.landing-hero h1 .accent {
  text-shadow: 0 0 40px rgba(74, 222, 128, 0.15);
}

/* ═══════════════════════════════════════════════
   KART HOVER GLOW
   ═══════════════════════════════════════════════ */
.landing-feature-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.04);
}

.landing-step:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.04);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.landing-plan-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.04);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.landing-plan-card.plan-popular:hover {
  border-color: #4ade80;
  box-shadow: 0 4px 32px rgba(74, 222, 128, 0.1);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .landing-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .landing-hamburger {
    display: flex;
    margin-right: 4px;
  }

  /* Header actions — tüm elemanlar flex-shrink: 0, küçük font */
  .landing-header-actions {
    gap: 6px;
    padding-left: 12px;
  }

  .landing-header-actions .landing-btn-login {
    font-size: 12px;
    padding: 7px 8px;
    flex-shrink: 0;
  }

  .landing-header-actions .landing-btn-cta {
    font-size: 12px;
    padding: 7px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .landing-btn-panel {
    font-size: 12px;
    padding: 7px 10px;
    flex-shrink: 0;
  }

  #landingAuthOut,
  #landingAuthIn {
    flex-shrink: 0;
  }

  .landing-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 201;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 16px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landing-header {
    padding: 8px 10px 0 !important;
  }

  .landing-header-inner {
    width: 100%;
    padding: 0 12px;
    height: 44px;
    border-radius: 12px;
  }

  .landing-nav a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    width: 100%;
  }

  .landing-nav > *:last-child {
    border-bottom: none;
  }

  /* Lang toggle header'da kompakt */
  .landing-header-actions .landing-lang-toggle {
    gap: 0;
    flex-shrink: 0;
  }

  .landing-header-actions .landing-lang-opt {
    padding: 5px 8px;
    font-size: 11px;
  }

  .landing-header-inner {
    padding: 0 16px;
    position: relative;
  }

  .landing-hero {
    padding: 48px 16px 64px;
  }

  .landing-hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .landing-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .landing-section {
    padding: 80px 16px;
  }

  .landing-section-title {
    font-size: 28px;
  }

  .landing-hero-tag {
    font-size: 11px;
  }

  .landing-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .landing-footer-inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 16px 24px;
  }

  .landing-footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }

  .landing-footer-bottom {
    padding: 16px;
  }

  .landing-quote {
    font-size: 18px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .landing-hero h1 {
    font-size: 28px;
  }

  .landing-hero-stats {
    gap: 24px;
  }

  .landing-stat-value {
    font-size: 24px;
  }

  .landing-cta-title {
    font-size: 24px;
  }
}
