/* ============================================================
   3DGRANDE — LP3DG LANDING PAGE DESIGN SYSTEM (standalone)
   Version: 16.0  (2026-04-20)
   
   Değişiklik geçmişi: v11 DS + v13/v14/v15/v16 fix packs
   
   V16 eklemeleri:
   - Section-title beyaz !important (em-soft kaldırıldığı için
     ana başlık okunurluğu garantiye alındı)
   - Section-header flex-column + gap (label-title yapışıklığı
     kökten çözüldü)
   - Trust row sol panelde (cta-panel-left grid)
   - Form alanlarında belirgin border (hero-card + cta form-stack)
   
   FTP: /themes/warehouse/assets/css/lp3dg-v14.css (dosya adı korundu)
   CACHE BYPASS: ?v=16 parametresini IqitThemeEditor link'inde güncelle
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
.lp3dg {
  /* Primary, 3dgrande site paleti ile uyumlu mavi */
  --c-blue: #3a74c5;
  --c-blue-dark: #3366ac;
  --c-blue-deep: #1e4a85;
  --c-blue-light: #7ca6dd;
  --c-blue-soft: #e8f0fa;
  --c-blue-softer: #f3f7fc;

  /* Accent, Crimson/Red (canlı aksan) */
  --c-accent: #dc2626;
  --c-accent-dark: #991b1b;
  --c-accent-light: #ef4444;
  --c-accent-soft: #fee2e2;
  --c-accent-softer: #fef5f5;

  /* Support renkler */
  --c-emerald: #047857;
  --c-emerald-soft: #d1fae5;
  --c-indigo: #3a74c5;
  --c-indigo-soft: #e8f0fa;
  --c-teal: #0f766e;
  --c-teal-soft: #ccfbf1;
  --c-amber: #b45309;
  --c-amber-soft: #fef3c7;
  --c-rose: #be123c;
  --c-rose-soft: #ffe4e6;

  --c-bg: #ffffff;
  --c-bg-alt: #f6f7f9;
  --c-bg-tint: #fafbfc;
  --c-bg-dark: #092c47;
  --c-bg-dark-alt: #0e3a5c;

  --c-text: #092c47;
  --c-text-mid: #1e3a5f;
  --c-text-soft: #5a6b82;
  --c-text-faint: #abb8c3;

  --c-border: rgba(9, 44, 71, 0.09);
  --c-border-hover: rgba(9, 44, 71, 0.16);
  --c-border-strong: rgba(9, 44, 71, 0.28);

  --c-online: #059669;

  --f-sans: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 120px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  --sh-sm: 0 1px 2px rgba(5,12,26,.05);
  --sh-md: 0 4px 12px rgba(5,12,26,.07), 0 1px 3px rgba(5,12,26,.04);
  --sh-lg: 0 16px 40px rgba(5,12,26,.09), 0 2px 6px rgba(5,12,26,.05);
  --sh-blue: 0 8px 24px rgba(58, 116, 197, .28);

  font-family: var(--f-sans);
  color: var(--c-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp3dg *, .lp3dg *::before, .lp3dg *::after { box-sizing: border-box; }

.lp3dg h1, .lp3dg h2, .lp3dg h3, .lp3dg h4, .lp3dg h5, .lp3dg h6 {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--c-text);
}
.lp3dg p { margin: 0; }
.lp3dg a { color: inherit; text-decoration: none; transition: color .15s ease; }
.lp3dg img, .lp3dg svg { display: block; max-width: 100%; }
.lp3dg button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* SCROLL REVEAL */
.lp3dg .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
.lp3dg .reveal.is-visible { opacity: 1; transform: translateY(0); }
.lp3dg .reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.16,.84,.44,1), transform .55s cubic-bezier(.16,.84,.44,1);
}
.lp3dg .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.lp3dg .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.lp3dg .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 70ms; }
.lp3dg .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.lp3dg .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 210ms; }
.lp3dg .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 280ms; }
.lp3dg .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 350ms; }

/* UTILITIES */
.lp3dg .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.lp3dg .section {
  padding: var(--s-9) 0;
  position: relative;
}

.lp3dg .section-tight { padding: var(--s-7) 0; }

/* BANDED CONTAINERS, daha ince */
.lp3dg .section-banded {
  padding: var(--s-5) 0;
}
.lp3dg .banded-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--s-7) var(--s-6);
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
}
.lp3dg .banded-inner--alt { background: var(--c-bg-alt); }
.lp3dg .banded-inner--dark { background: var(--c-bg-dark); color: #fafafa; }
.lp3dg .banded-inner--blue {
  background: var(--c-blue-softer);
  border: 1px solid var(--c-blue-soft);
}
.lp3dg .banded-inner--border {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}

/* Gradient soft indigo, NEDEN BİZ ve benzeri zengin bölümler için */
.lp3dg .banded-inner--gradient {
  background: linear-gradient(135deg, #eef2ff 0%, #fbfcfe 60%, #fef5f5 100%);
  border: 1px solid rgba(58, 116, 197, 0.06);
}

@media (max-width: 1024px) {
  .lp3dg .banded-inner { padding: var(--s-6) var(--s-5); border-radius: var(--r-xl); }
  .lp3dg .section-banded { padding: var(--s-4) var(--s-2); }
}

/* Colored category labels */
.lp3dg .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  padding: 6px 12px;
  border-radius: var(--r-full);
}

.lp3dg .section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.lp3dg .lbl-blue    { background: var(--c-blue-soft);    color: var(--c-blue-dark); }
.lp3dg .lbl-blue::before    { background: var(--c-blue); }
.lp3dg .lbl-accent  { background: var(--c-accent-soft);  color: var(--c-accent-dark); }
.lp3dg .lbl-accent::before  { background: var(--c-accent); }
.lp3dg .lbl-indigo  { background: var(--c-indigo-soft);  color: var(--c-indigo); }
.lp3dg .lbl-indigo::before  { background: var(--c-indigo); }
.lp3dg .lbl-teal    { background: var(--c-teal-soft);    color: var(--c-teal); }
.lp3dg .lbl-teal::before    { background: var(--c-teal); }
.lp3dg .lbl-amber   { background: var(--c-amber-soft);   color: var(--c-amber); }
.lp3dg .lbl-amber::before   { background: var(--c-amber); }
.lp3dg .lbl-emerald { background: var(--c-emerald-soft); color: var(--c-emerald); }
.lp3dg .lbl-emerald::before { background: var(--c-emerald); }
.lp3dg .lbl-rose    { background: var(--c-rose-soft);    color: var(--c-rose); }
.lp3dg .lbl-rose::before    { background: var(--c-rose); }
.lp3dg .lbl-dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.lp3dg .lbl-dark::before { background: var(--c-blue-light); }

.lp3dg .section-title {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.08;
  margin-bottom: var(--s-4);
  max-width: 900px;
}

.lp3dg .section-subtitle {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--c-text-mid);
  line-height: 1.55;
  max-width: 640px;
  letter-spacing: -0.005em;
}

.lp3dg .section-header { margin-bottom: var(--s-6); max-width: 820px; }
.lp3dg .section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.lp3dg .section-header--center .section-title,
.lp3dg .section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

/* BUTTONS */
.lp3dg .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  height: 44px;
  padding: 0 20px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.lp3dg .btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(5,12,26,.1);
}
.lp3dg .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.lp3dg .btn-primary:hover {
  background: var(--c-blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--sh-blue);
  color: #fff;
}
.lp3dg .btn-primary:hover::after { transform: translateX(100%); }

.lp3dg .btn-secondary {
  background: var(--c-bg);
  color: var(--c-text);
  border-color: var(--c-border-strong);
}
.lp3dg .btn-secondary:hover {
  border-color: var(--c-text);
  transform: translateY(-1px);
}

.lp3dg .btn-ghost { background: transparent; color: var(--c-text); }
.lp3dg .btn-ghost:hover { background: var(--c-bg-alt); }

.lp3dg .btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }

/* CRITICAL: fix SVG sizing inside buttons (flex was stretching them) */
.lp3dg .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.lp3dg .btn-lg svg { width: 17px; height: 17px; }

.lp3dg .btn-arrow { transition: transform .22s cubic-bezier(.4,0,.2,1); }
.lp3dg .btn:hover .btn-arrow { transform: translateX(3px); }

/* 3dörtgen style soft emphasis for display headings, subtitle alt satırda */
.lp3dg .em-soft {
  color: var(--c-text-faint);
  font-weight: 600;
  display: block;
}
.lp3dg .em-soft-inline {
  color: var(--c-text-faint);
  font-weight: 600;
  display: inline;
}

/* ============================================================
   HERO, glow OFF, sadece grid + corner deco
   ============================================================ */
.lp3dg .hero {
  padding: var(--s-9) 0 var(--s-8);
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

.lp3dg .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5,12,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,12,26,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 0%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 0%, black 20%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.lp3dg .hero-deco {
  position: absolute;
  top: 48px; right: 40px;
  width: 160px; height: 160px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) { .lp3dg .hero-deco { display: none; } }

.lp3dg .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-9);
  align-items: start;
}

.lp3dg .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 14px 6px 10px;
  background: var(--c-bg);
  border: 1px solid var(--c-border-hover);
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text-mid);
  margin-bottom: var(--s-5);
  box-shadow: var(--sh-sm);
  letter-spacing: -0.005em;
}

.lp3dg .hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--c-online);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.2);
  animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(5,150,105,0.2); }
  50% { box-shadow: 0 0 0 5px rgba(5,150,105,0.08); }
}

.lp3dg .hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--s-5);
  color: var(--c-text);
}

.lp3dg .hero h1 em {
  font-style: normal;
  color: var(--c-blue);
  font-weight: 700;
}

/* Hero subtitle (H3 equivalent), MD'de yer alan ikincil başlık */
.lp3dg .hero-subtitle {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--s-4);
  letter-spacing: -0.015em;
  max-width: 580px;
}

.lp3dg .hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--c-text-mid);
  line-height: 1.55;
  margin-bottom: var(--s-6);
  max-width: 560px;
  letter-spacing: -0.005em;
}

.lp3dg .hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}

.lp3dg .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}

.lp3dg .hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13.5px;
  color: var(--c-text-mid);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.lp3dg .hero-meta-item svg {
  width: 14px; height: 14px;
  color: var(--c-emerald);
  flex-shrink: 0;
}

.lp3dg .hero-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border-hover);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--sh-lg);
  position: relative;
  /* Desktop'ta form başlığı sol H1 ile hizalansın: hero-badge (pill ~32px) + margin-bottom s-5 (24px) */
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .lp3dg .hero-card { margin-top: 0; }
}

.lp3dg .hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--s-5);
}

.lp3dg .hero-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp3dg .hero-card-tag-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--c-blue);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.lp3dg .hero-card-tag--online { color: var(--c-online); }
.lp3dg .hero-card-tag--online .hero-card-tag-dot { background: var(--c-online); }

.lp3dg .hero-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--s-2);
  letter-spacing: -0.025em;
}

.lp3dg .hero-card-lead {
  font-size: 14.5px;
  color: var(--c-text-mid);
  margin-bottom: var(--s-5);
  line-height: 1.5;
}

.lp3dg .form-stack { display: flex; flex-direction: column; gap: var(--s-3); }
.lp3dg .field { position: relative; }

.lp3dg .field input,
.lp3dg .field textarea,
.lp3dg .field select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border-hover);
  border-radius: var(--r-md);
  transition: all .18s cubic-bezier(.4,0,.2,1);
  letter-spacing: -0.005em;
}

.lp3dg .field textarea {
  height: auto;
  min-height: 90px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}

.lp3dg .field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23092c47' stroke-width='1.8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.lp3dg .field select:invalid { color: var(--c-text-faint); }
.lp3dg .field select option { color: var(--c-text); }

.lp3dg .field input::placeholder,
.lp3dg .field textarea::placeholder { color: var(--c-text-faint); }

.lp3dg .field input:focus,
.lp3dg .field textarea:focus,
.lp3dg .field select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(58,116,197,.12);
}

.lp3dg .form-fine {
  font-size: 11.5px;
  color: var(--c-text-soft);
  text-align: center;
  line-height: 1.5;
  margin-top: var(--s-2);
  letter-spacing: -0.005em;
}

/* ============================================================
   PARTNER MARQUEE, Sonsuz kayma
   ============================================================ */
/* ========== QUICK ANSWER CALLOUT ========== */
.lp3dg .quick-answer {
  padding: var(--s-6) 0 var(--s-3);
}

.lp3dg .quick-answer-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--c-blue-softer);
  border: 1px solid var(--c-blue-soft);
  border-left: 4px solid var(--c-blue);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}

.lp3dg .quick-answer-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--c-blue);
  margin-top: 2px;
}

.lp3dg .quick-answer-icon svg {
  width: 100%;
  height: 100%;
}

.lp3dg .quick-answer-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 var(--s-2);
  line-height: 1.35;
}

.lp3dg .quick-answer-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-mid);
  margin: 0;
}

@media (max-width: 640px) {
  .lp3dg .quick-answer-card {
    flex-direction: column;
    padding: var(--s-4);
  }
  .lp3dg .quick-answer-body h3 { font-size: 16px; }
  .lp3dg .quick-answer-body p { font-size: 14px; }
}

.lp3dg .partners {
  background: var(--c-bg-alt);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.lp3dg .partners-header {
  text-align: center;
  margin-bottom: var(--s-4);
}

.lp3dg .partners-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.lp3dg .marquee-container {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.lp3dg .marquee-track {
  display: flex;
  gap: var(--s-8);
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}

.lp3dg .marquee-track:hover { animation-play-state: paused; }

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

.lp3dg .partner-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text-mid);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color .15s ease;
}

.lp3dg .partner-name:hover { color: var(--c-text); }

.lp3dg .partner-dot {
  width: 4px; height: 4px;
  background: var(--c-text-faint);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   QUICK ANSWER
   ============================================================ */
.lp3dg .callout {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.lp3dg .callout::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--c-blue);
}

.lp3dg .callout-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
  margin-bottom: var(--s-3);
}

.lp3dg .callout-q {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-3);
  line-height: 1.3;
  color: var(--c-text);
}

.lp3dg .callout-a {
  font-size: 15.5px;
  color: var(--c-text-mid);
  line-height: 1.65;
  letter-spacing: -0.005em;
}

/* VALUE CARDS */
.lp3dg .bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

@media (max-width: 1024px) { .lp3dg .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp3dg .bento { grid-template-columns: 1fr; } }

.lp3dg .bento-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

/* Renkli üst accent çizgisi, her kartın kendi kategori rengi */
.lp3dg .bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bento-accent, var(--c-blue));
  opacity: 0.85;
}

.lp3dg .bento-card:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.lp3dg .bento-card:hover::before {
  opacity: 1;
  height: 4px;
}

.lp3dg .bento-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  transition: transform .25s ease;
}

.lp3dg .bento-card:hover .bento-icon {
  transform: scale(1.06) rotate(-3deg);
}

.lp3dg .bento-icon svg { width: 22px; height: 22px; }

.lp3dg .ico-blue    { background: var(--c-blue-soft);    color: var(--c-blue); }
.lp3dg .ico-emerald { background: var(--c-emerald-soft); color: var(--c-emerald); }
.lp3dg .ico-indigo  { background: var(--c-indigo-soft);  color: var(--c-indigo); }
.lp3dg .ico-amber   { background: var(--c-amber-soft);   color: var(--c-amber); }
.lp3dg .ico-teal    { background: var(--c-teal-soft);    color: var(--c-teal); }
.lp3dg .ico-rose    { background: var(--c-rose-soft);    color: var(--c-rose); }
.lp3dg .ico-red     { background: var(--c-accent-soft);  color: var(--c-accent); }

.lp3dg .bento-num {
  font-size: 14px;
  color: var(--c-blue);
  letter-spacing: 0.04em;
  font-weight: 700;
  opacity: 0.4;
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  font-feature-settings: "tnum";
}

.lp3dg .bento-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.lp3dg .bento-card p {
  font-size: 14px;
  color: var(--c-text-mid);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* ============================================================
   BENTO DARK VARIANT, koyu zemin üzerinde renkli aksan kartlar
   ============================================================ */
.lp3dg .bento-dark-wrap {
  position: relative;
}

/* Dark zeminde section başlığı + subtitle renkleri */
.lp3dg .bento-dark-wrap .section-title { color: #fafafa; }
.lp3dg .bento-dark-wrap .section-subtitle { color: rgba(255, 255, 255, 0.65); }
.lp3dg .bento-dark-wrap .em-soft { color: #818cf8; }

/* Radyal aksan glow'lar, drama momenti */
.lp3dg .bento-dark-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(58, 116, 197, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lp3dg .bento-dark-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lp3dg .bento-dark-wrap .section-header,
.lp3dg .bento-dark-wrap .bento {
  position: relative;
  z-index: 1;
}

/* Dark kartlar, glassmorphism hissi */
.lp3dg .bento-dark .bento-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp3dg .bento-dark .bento-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lp3dg .bento-dark .bento-card::before {
  opacity: 1;
  height: 3px;
}

.lp3dg .bento-dark .bento-card h3 {
  color: #fafafa;
}

.lp3dg .bento-dark .bento-card p {
  color: rgba(255, 255, 255, 0.7);
}

.lp3dg .bento-dark .bento-num {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

/* İkon arka planları dark'ta da renk taşısın ama soft şekilde */
.lp3dg .bento-dark .bento-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp3dg .bento-dark .ico-blue    { color: #a5b4fc; }
.lp3dg .bento-dark .ico-red     { color: #fca5a5; }
.lp3dg .bento-dark .ico-emerald { color: #6ee7b7; }
.lp3dg .bento-dark .ico-indigo  { color: #c7d2fe; }
.lp3dg .bento-dark .ico-teal    { color: #5eead4; }
.lp3dg .bento-dark .ico-rose    { color: #fda4af; }

/* ============================================================
   PRODUCT SERIES, Asimetrik: Featured + compact list
   ============================================================ */
.lp3dg .series-section {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.lp3dg .series-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  align-items: stretch;
}

@media (max-width: 1024px) {
  .lp3dg .series-split { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* FEATURED big card, hero ürün */
.lp3dg .series-featured {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-6) var(--s-6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--sh-md);
}

.lp3dg .series-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-indigo) 60%, var(--c-blue-light) 100%);
}

.lp3dg .series-featured:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.lp3dg .series-featured-ribbon {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--c-accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-full);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.lp3dg .series-featured-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp3dg .series-featured-inner .series-tier {
  align-self: flex-start;
  margin-bottom: var(--s-4);
}

.lp3dg .series-featured h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--s-3);
  color: var(--c-text);
}

.lp3dg .series-featured-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text-mid);
  margin-bottom: var(--s-5);
  letter-spacing: -0.005em;
  max-width: 95%;
}

.lp3dg .series-featured-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.lp3dg .series-featured-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 13.5px;
  color: var(--c-text-mid);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.lp3dg .series-featured-features li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--c-emerald);
  margin-top: 3px;
}

.lp3dg .series-featured-cta {
  align-self: flex-start;
  margin-top: auto;
}

/* Dekoratif arka plan SVG cihaz silueti */
.lp3dg .series-featured-deco {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  opacity: 0.08;
  color: var(--c-blue);
  pointer-events: none;
  z-index: 1;
}

.lp3dg .series-featured-deco svg { width: 100%; height: 100%; }

@media (max-width: 480px) {
  .lp3dg .series-featured { padding: var(--s-6) var(--s-5) var(--s-5); }
  .lp3dg .series-featured-deco { width: 140px; height: 140px; right: -10px; bottom: -20px; }
}

/* COMPACT ROW LIST */
.lp3dg .series-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.lp3dg .series-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--s-4);
  align-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: all .2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

.lp3dg .series-row:hover {
  border-color: var(--c-border-strong);
  background: var(--c-bg);
  transform: translateX(3px);
  box-shadow: var(--sh-sm);
}

.lp3dg .series-row-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  text-align: center;
  justify-self: start;
  line-height: 1.3;
}

/* Row tier color variants (tier-blue vb mevcut class'ları kullanır) */

.lp3dg .series-row-body h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 3px;
  color: var(--c-text);
  line-height: 1.25;
}

.lp3dg .series-row-body p {
  font-size: 12.5px;
  color: var(--c-text-mid);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.lp3dg .series-row-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-soft);
  transition: all .2s ease;
  flex-shrink: 0;
}

.lp3dg .series-row:hover .series-row-arrow {
  background: var(--c-text);
  color: #fff;
  transform: translateX(2px);
}

.lp3dg .series-row-arrow svg { width: 13px; height: 13px; }

@media (max-width: 480px) {
  .lp3dg .series-row {
    grid-template-columns: 1fr auto;
    gap: var(--s-3);
    padding: var(--s-4);
  }
  .lp3dg .series-row-tier {
    grid-column: 1 / -1;
    margin-bottom: -4px;
  }
}

/* Series actions, CTA row */
.lp3dg .series-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* LEGACY series-grid (back-compat, artık kullanılmıyor ama silme) */
.lp3dg .series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}

@media (max-width: 1024px) { .lp3dg .series-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp3dg .series-grid { grid-template-columns: 1fr; } }

.lp3dg .series-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.lp3dg .series-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.lp3dg .series-card:hover {
  border-color: var(--c-border-strong);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.lp3dg .series-card:hover::after { transform: scaleX(1); }

.lp3dg .series-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-4);
}

.lp3dg .series-tier {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
}

/* Colored tier variants */
.lp3dg .tier-blue    { color: var(--c-blue);    background: var(--c-blue-soft);    border-color: rgba(58,116,197,.15); }
.lp3dg .tier-indigo  { color: var(--c-indigo);  background: var(--c-indigo-soft);  border-color: rgba(67,56,202,.15); }
.lp3dg .tier-teal    { color: var(--c-teal);    background: var(--c-teal-soft);    border-color: rgba(15,118,110,.15); }
.lp3dg .tier-amber   { color: var(--c-amber);   background: var(--c-amber-soft);   border-color: rgba(180,83,9,.15); }
.lp3dg .tier-red     { color: var(--c-accent);  background: var(--c-accent-soft);  border-color: rgba(220,38,38,.18); }
.lp3dg .tier-emerald { color: var(--c-emerald); background: var(--c-emerald-soft); border-color: rgba(4,120,87,.15); }
.lp3dg .tier-rose    { color: var(--c-rose);    background: var(--c-rose-soft);    border-color: rgba(190,18,60,.15); }

.lp3dg .series-arrow {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.lp3dg .series-card:hover .series-arrow {
  background: var(--c-text);
  color: #fff;
  transform: translateX(3px);
}

.lp3dg .series-arrow svg { width: 14px; height: 14px; }

.lp3dg .series-card h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-2);
}

.lp3dg .series-card p {
  font-size: 13.5px;
  color: var(--c-text-mid);
  line-height: 1.55;
  min-height: 42px;
}

.lp3dg .series-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) { .lp3dg .series-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp3dg .series-grid { grid-template-columns: 1fr; } }

/* APPLICATIONS, Tab yapısı (scroll kısaltma) */
.lp3dg .app-tabs {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}

.lp3dg .app-tab {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-soft);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: 10px 20px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.lp3dg .app-tab .app-tab-count {
  font-size: 11px;
  background: var(--c-bg-alt);
  color: var(--c-text-faint);
  padding: 2px 7px;
  border-radius: var(--r-full);
  font-weight: 700;
  transition: all .2s ease;
}

.lp3dg .app-tab:hover {
  border-color: var(--c-border-strong);
  color: var(--c-text);
}

.lp3dg .app-tab.is-active {
  background: var(--c-text);
  color: #fff;
  border-color: var(--c-text);
}

.lp3dg .app-tab.is-active .app-tab-count {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.lp3dg .app-panel {
  display: none;
  animation: appPanelFade .3s cubic-bezier(.4,0,.2,1);
}

.lp3dg .app-panel.is-active { display: block; }

@keyframes appPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* APPLICATIONS, Feature list (kart grid yerine, monotonluk kırma) */
.lp3dg .app-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.lp3dg .app-feature {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  position: relative;
}

.lp3dg .app-feature::before {
  content: '';
  position: absolute;
  left: 0; top: var(--s-5); bottom: var(--s-5);
  width: 3px;
  background: var(--app-accent, var(--c-blue));
  opacity: 0.85;
  border-radius: 0 3px 3px 0;
}

.lp3dg .app-feature:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.lp3dg .app-feature-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.lp3dg .app-feature:hover .app-feature-icon {
  transform: scale(1.08);
}

.lp3dg .app-feature-icon svg { width: 20px; height: 20px; }

.lp3dg .app-feature-body h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--c-text);
}

.lp3dg .app-feature-body p {
  font-size: 13.5px;
  color: var(--c-text-mid);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* Full-width last child when orphan (7 item layout) */
.lp3dg .app-list .app-feature:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--c-blue-softer) 0%, var(--c-accent-softer) 100%);
  border-color: var(--c-blue-soft);
}

@media (max-width: 768px) {
  .lp3dg .app-list { grid-template-columns: 1fr; }
  .lp3dg .app-list .app-feature:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

/* ============================================================
   WORKFLOW, Stepper (tek aktif adım gösterir, scroll tasarrufu)
   ============================================================ */
.lp3dg .wf-stepper {
  max-width: 100%;
  margin: 0 auto;
}

.lp3dg .wf-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-2);
  position: relative;
  margin-bottom: var(--s-7);
  padding-top: 4px;
}

.lp3dg .wf-nav::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(8.333% + 6px);
  right: calc(8.333% + 6px);
  height: 2px;
  background: rgba(58, 116, 197, 0.18);
  border-radius: 1px;
  z-index: 0;
}

.lp3dg .wf-nav::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(8.333% + 6px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-blue-light) 100%);
  border-radius: 1px;
  width: 0;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}

/* Progress line widths for active steps (1..6) */
.lp3dg .wf-stepper[data-active="1"] .wf-nav::after { width: 0; }
.lp3dg .wf-stepper[data-active="2"] .wf-nav::after { width: calc((100% - 16.666%) * (1/5) - 12px); }
.lp3dg .wf-stepper[data-active="3"] .wf-nav::after { width: calc((100% - 16.666%) * (2/5) - 12px); }
.lp3dg .wf-stepper[data-active="4"] .wf-nav::after { width: calc((100% - 16.666%) * (3/5) - 12px); }
.lp3dg .wf-stepper[data-active="5"] .wf-nav::after { width: calc((100% - 16.666%) * (4/5) - 12px); }
.lp3dg .wf-stepper[data-active="6"] .wf-nav::after { width: calc((100% - 16.666%) * (5/5) - 12px); }

.lp3dg .wf-step-btn {
  font-family: var(--f-sans);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  padding: 0;
  position: relative;
  z-index: 2;
  transition: transform .2s ease;
}

.lp3dg .wf-step-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid rgba(58, 116, 197, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-soft);
  letter-spacing: -0.01em;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  font-feature-settings: "tnum";
}

.lp3dg .wf-step-btn:hover .wf-step-dot {
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: scale(1.05);
}

.lp3dg .wf-step-btn.is-active .wf-step-dot {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(58, 116, 197, 0.12);
}

.lp3dg .wf-step-btn.is-complete .wf-step-dot {
  background: var(--c-blue-soft);
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.lp3dg .wf-step-btn.is-complete .wf-step-dot::after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%233730a3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8l3 3 7-7'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.lp3dg .wf-step-btn.is-complete .wf-step-num {
  display: none;
}

.lp3dg .wf-step-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text-soft);
  letter-spacing: -0.005em;
  text-align: center;
  line-height: 1.25;
  transition: color .2s ease;
  max-width: 110px;
}

.lp3dg .wf-step-btn.is-active .wf-step-label,
.lp3dg .wf-step-btn:hover .wf-step-label {
  color: var(--c-text);
}

.lp3dg .wf-panel-wrap {
  position: relative;
  min-height: 140px;
}

.lp3dg .wf-panel {
  display: none;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  animation: wfPanelFade .3s cubic-bezier(.4,0,.2,1);
}

.lp3dg .wf-panel.is-active { display: block; }

@keyframes wfPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp3dg .wf-panel-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--s-3);
  font-feature-settings: "tnum";
}

.lp3dg .wf-panel h4 {
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: var(--s-3);
  color: var(--c-text);
}

.lp3dg .wf-panel p {
  font-size: 15.5px;
  color: var(--c-text-mid);
  line-height: 1.6;
  letter-spacing: -0.005em;
}

.lp3dg .wf-panel-nav {
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
}

.lp3dg .wf-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-soft);
  cursor: pointer;
  transition: all .2s ease;
}

.lp3dg .wf-nav-btn:hover:not(:disabled) {
  border-color: var(--c-text);
  color: var(--c-text);
  transform: translateY(-1px);
}

.lp3dg .wf-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lp3dg .wf-nav-btn svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .lp3dg .wf-nav { grid-template-columns: repeat(6, 1fr); gap: 2px; }
  .lp3dg .wf-step-dot { width: 34px; height: 34px; font-size: 12.5px; }
  .lp3dg .wf-nav::before, .lp3dg .wf-nav::after { top: 17px; }
  .lp3dg .wf-step-label { font-size: 10.5px; max-width: 60px; }
}

/* ============================================================
   WORKFLOW, 3dörtgen style horizontal timeline
   ============================================================ */
.lp3dg .process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
  position: relative;
  padding-top: 28px;
  max-width: 100%;
  margin: 0 auto;
}

/* Horizontal timeline line connecting all dots */
.lp3dg .process::before {
  content: '';
  position: absolute;
  top: 8px;
  left: calc(8.333% + 10px);
  right: calc(8.333% + 10px);
  height: 1.5px;
  background: rgba(58, 116, 197, 0.3);
}

.lp3dg .process-step {
  position: relative;
  text-align: center;
  padding: 0 var(--s-2);
}

/* Timeline node dot, indigo (zemin ile uyumlu) */
.lp3dg .process-step::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 17px;
  background: var(--c-bg);
  border: 3px solid var(--c-blue);
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
  transition: transform .25s ease, background .25s ease;
}

.lp3dg .process-step:hover::before {
  background: var(--c-blue);
  transform: translateX(-50%) scale(1.15);
}

/* Soft faded indigo number, gri yerine zemin uyumlu */
.lp3dg .process-num {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: rgba(58, 116, 197, 0.35);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-3);
  font-feature-settings: "tnum";
}

.lp3dg .process-step h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: var(--s-2);
  letter-spacing: -0.015em;
  color: var(--c-text);
}

.lp3dg .process-step p {
  font-size: 12.5px;
  color: var(--c-text-mid);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) {
  .lp3dg .process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6) var(--s-4);
    padding-top: 0;
  }
  .lp3dg .process::before { display: none; }
  .lp3dg .process-step::before { display: none; }
  .lp3dg .process-step { text-align: left; padding: 0; }
  .lp3dg .process-step h4, .lp3dg .process-step p { font-size: 14px; }
  .lp3dg .process-num { font-size: 36px; }
}
@media (max-width: 480px) {
  .lp3dg .process { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-3); }
}

/* STATS */
.lp3dg .stats-section .banded-inner { padding: var(--s-6) var(--s-5); }

.lp3dg .stats-section .section-header { margin-bottom: var(--s-5); }

.lp3dg .stats-section .section-title {
  font-size: clamp(26px, 3vw, 36px);
}

/* Dark zeminlerde em-soft rengini standardize et (indigo-light) */
.lp3dg .stats-section .em-soft,
.lp3dg .cta-stripe h2 .em-soft,
.lp3dg .banded-inner--dark .em-soft {
  color: var(--c-blue-light);
}

.lp3dg .stats-section .banded-inner--dark::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.lp3dg .stats-section .banded-inner--dark { color: #fafafa; }
.lp3dg .stats-section .section-title { color: #fafafa; }
.lp3dg .stats-section .section-subtitle { color: rgba(255,255,255,0.7); }

/* Stats için daha canlı label, koyu zeminde kırmızı */
.lp3dg .stats-section .section-label {
  background: rgba(220, 38, 38, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.lp3dg .stats-section .section-label::before {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.lp3dg .stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) { .lp3dg .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .lp3dg .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.lp3dg .stat {
  background: var(--c-bg-dark);
  padding: var(--s-5) var(--s-4);
  transition: background .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}

.lp3dg .stat:hover { background: var(--c-bg-dark-alt); }

.lp3dg .stat-value {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1;
  margin-bottom: var(--s-2);
  color: #fafafa;
  font-feature-settings: "tnum";
}

/* Metin-stat ve sayı-stat renk tutarlılığı: metin beyaz, sayı kırmızı accent */
.lp3dg .stat-value.is-text {
  color: #fafafa;
  background: none;
  -webkit-text-fill-color: #fafafa;
}

.lp3dg .stat-value .accent { color: #ef4444; }

.lp3dg .stat-value .unit {
  font-size: 0.48em;
  color: rgba(255,255,255,0.55);
  margin-left: 3px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.lp3dg .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* COMPATIBILITY */
.lp3dg .compat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  max-width: 1000px;
  margin: 0 auto;
}

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

.lp3dg .compat-panel {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all .25s ease;
}

.lp3dg .compat-panel:hover {
  border-color: var(--c-border-strong);
  box-shadow: var(--sh-sm);
}

.lp3dg .compat-panel h3 {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.lp3dg .compat-panel h3 .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
}

.lp3dg .compat-list { list-style: none; padding: 0; margin: 0; }

.lp3dg .compat-list li {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}

.lp3dg .compat-list li:last-child { border-bottom: none; }

.lp3dg .compat-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
}

.lp3dg .compat-tag.is-native {
  color: var(--c-emerald);
  border-color: rgba(4,120,87,.2);
  background: var(--c-emerald-soft);
}

.lp3dg .compat-tag.is-stl {
  color: var(--c-blue);
  border-color: rgba(58,116,197,.22);
  background: var(--c-blue-soft);
}

.lp3dg .compat-tag.is-scanner {
  color: var(--c-indigo);
  border-color: rgba(67,56,202,.22);
  background: var(--c-indigo-soft);
}

/* ============================================================
   COMPATIBILITY, Chip/pill compact layout (az yer kaplar)
   ============================================================ */
.lp3dg .compat-chips {
  max-width: 980px;
  margin: 0 auto;
}

.lp3dg .compat-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--s-5);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-border);
  align-items: center;
}

.lp3dg .compat-row:last-child { border-bottom: none; }

.lp3dg .compat-row-label {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.005em;
}

.lp3dg .compat-row-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
  flex-shrink: 0;
}

.lp3dg .compat-row-label.is-secondary .dot { background: var(--c-text-faint); }
.lp3dg .compat-row-label.is-scanner .dot { background: var(--c-indigo); }

.lp3dg .compat-chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.lp3dg .compat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: 7px 12px;
  border-radius: var(--r-full);
  letter-spacing: -0.005em;
  transition: all .15s ease;
}

.lp3dg .compat-chip:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-1px);
}

.lp3dg .compat-chip-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--r-sm);
  line-height: 1.4;
}

.lp3dg .compat-chip-tag.is-native {
  color: var(--c-emerald);
  background: var(--c-emerald-soft);
}

.lp3dg .compat-chip-tag.is-preset {
  color: var(--c-blue);
  background: var(--c-blue-soft);
}

@media (max-width: 480px) {
  .lp3dg .compat-row {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    padding: var(--s-4) 0;
  }
  .lp3dg .compat-row-label { font-size: 12px; }
}

/* MAIN CTA */
.lp3dg .main-cta {
  background: var(--c-bg);
  padding: var(--s-9) 0;
  position: relative;
}

.lp3dg .cta-panel {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--s-8);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

@media (max-width: 1024px) {
  .lp3dg .cta-panel { grid-template-columns: 1fr; padding: var(--s-6); gap: var(--s-6); }
}

.lp3dg .cta-panel-left {
  display: flex;
  flex-direction: column;
}

.lp3dg .cta-panel-right {
  display: flex;
  flex-direction: column;
  /* Form'un Ad Soyad alanı, sol taraftaki H2 başlığıyla hizalanır 
     section-label'ın yüksekliği (32px pill + s-4 margin = ~48px) kadar boşluk */
  padding-top: 48px;
}

@media (max-width: 1024px) {
  .lp3dg .cta-panel-right { padding-top: 0; }
}

.lp3dg .cta-panel-right .form-stack {
  margin-bottom: var(--s-4);
}

.lp3dg .cta-panel-right .cta-trust-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-3);
  padding: var(--s-4) 0;
  margin-top: 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.lp3dg .cta-panel-right .cta-trust-inline .trust-item {
  font-size: 12.5px;
}

.lp3dg .cta-panel-right .cta-trust-inline .trust-item svg {
  width: 14px;
  height: 14px;
}

.lp3dg .cta-panel-right .cta-contact {
  padding-top: var(--s-4);
  margin-top: var(--s-4);
  font-size: 13px;
  color: var(--c-text-mid);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  border-top: none;
}

.lp3dg .cta-ways {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.lp3dg .cta-way {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  align-items: flex-start;
  transition: all .2s ease;
  background: var(--c-bg);
  cursor: pointer;
}

.lp3dg .cta-way:hover {
  border-color: var(--c-border-strong);
  background: var(--c-bg-alt);
  transform: translateX(3px);
}

.lp3dg .cta-way-num {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
  color: var(--c-text);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .2s ease;
}

.lp3dg .cta-way:hover .cta-way-num {
  background: var(--c-blue);
  color: #fff;
}

.lp3dg .cta-way-body h4 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.lp3dg .cta-way-body p {
  font-size: 13.5px;
  color: var(--c-text-mid);
  line-height: 1.5;
}

.lp3dg .cta-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
  font-size: 13.5px;
  color: var(--c-text-mid);
}

.lp3dg .cta-contact strong { color: var(--c-text); font-weight: 700; }

/* Trust items inline içinde (Main CTA footer) */
.lp3dg .cta-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}

@media (max-width: 480px) {
  .lp3dg .cta-trust-inline {
    gap: var(--s-3) var(--s-4);
  }
}

/* TRUST BAR */
.lp3dg .trust-bar {
  background: var(--c-bg-alt);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.lp3dg .trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4) var(--s-8);
}

.lp3dg .trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-mid);
  letter-spacing: -0.005em;
}

.lp3dg .trust-item svg {
  width: 16px; height: 16px;
  color: var(--c-emerald);
}

/* Trust icon color variants */
.lp3dg .trust-blue svg    { color: var(--c-blue); }
.lp3dg .trust-indigo svg  { color: var(--c-indigo); }
.lp3dg .trust-amber svg   { color: var(--c-amber); }
.lp3dg .trust-teal svg    { color: var(--c-teal); }
.lp3dg .trust-rose svg    { color: var(--c-rose); }

/* FAQ */
.lp3dg .faq {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-3);
  align-items: start;
}

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

.lp3dg .faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-2);
  transition: all .2s ease;
  overflow: hidden;
}

.lp3dg .faq-item:hover { border-color: var(--c-border-strong); }

.lp3dg .faq-item[open] {
  border-color: var(--c-border-strong);
  background: var(--c-bg-alt);
}

.lp3dg .faq-item summary {
  padding: var(--s-5) var(--s-6);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  letter-spacing: -0.015em;
}

.lp3dg .faq-item summary::-webkit-details-marker { display: none; }
.lp3dg .faq-item summary::marker { display: none; }

.lp3dg .faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  transition: all .3s ease;
}

.lp3dg .faq-item[open] .faq-icon {
  background: var(--c-text);
  border-color: var(--c-text);
}

.lp3dg .faq-icon::before,
.lp3dg .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--c-text-mid);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.lp3dg .faq-icon::before {
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}

.lp3dg .faq-icon::after {
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
}

.lp3dg .faq-item[open] .faq-icon::before,
.lp3dg .faq-item[open] .faq-icon::after {
  background: #fff;
}

.lp3dg .faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.lp3dg .faq-body {
  padding: 0 var(--s-6) var(--s-5);
  font-size: 14.5px;
  color: var(--c-text-mid);
  line-height: 1.65;
  letter-spacing: -0.005em;
  animation: faqSlide .35s cubic-bezier(.4,0,.2,1);
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp3dg .faq-body code {
  font-family: var(--f-sans);
  font-size: 13px;
  background: var(--c-bg);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--c-blue);
  font-weight: 600;
  border: 1px solid var(--c-border);
}

/* SEO CONTENT BLOCK */
.lp3dg .seo-content {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--s-8) 0;
}

.lp3dg .seo-content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.lp3dg .seo-content h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
  color: var(--c-text);
}

.lp3dg .seo-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text-mid);
  margin-bottom: var(--s-4);
  letter-spacing: -0.005em;
}

.lp3dg .seo-content p:last-child { margin-bottom: 0; }

.lp3dg .seo-content a {
  color: var(--c-blue);
  text-decoration: underline;
  text-decoration-color: rgba(58,116,197,.3);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s ease;
}

.lp3dg .seo-content a:hover {
  text-decoration-color: var(--c-blue);
}

/* Read-more toggle */
.lp3dg .seo-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}

.lp3dg .seo-more.is-open {
  max-height: 2400px;
}

.lp3dg .seo-more-fade {
  position: relative;
  height: 60px;
  margin-top: calc(var(--s-4) * -1);
  background: linear-gradient(180deg, transparent 0%, var(--c-bg-alt) 90%);
  pointer-events: none;
  transition: opacity .3s ease;
}

.lp3dg .seo-more.is-open + .seo-more-fade {
  opacity: 0;
  height: 0;
  margin: 0;
}

.lp3dg .seo-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-blue);
  background: transparent;
  border: 1px solid rgba(58, 116, 197, 0.25);
  padding: 10px 18px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: -0.005em;
}

.lp3dg .seo-more-toggle:hover {
  background: var(--c-blue-soft);
  border-color: var(--c-blue);
}

.lp3dg .seo-more-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.lp3dg .seo-more-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lp3dg .seo-more-toggle .label-less { display: none; }
.lp3dg .seo-more-toggle[aria-expanded="true"] .label-more { display: none; }
.lp3dg .seo-more-toggle[aria-expanded="true"] .label-less { display: inline; }

/* ============================================================
   IMAGE PLACEHOLDERS, gerçek görseller gelene kadar
   ============================================================ */
.lp3dg .img-placeholder {
  background: linear-gradient(135deg, var(--c-bg-alt) 0%, var(--c-blue-softer) 100%);
  border: 2px dashed rgba(58, 116, 197, 0.3);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lp3dg .img-placeholder--16x9 { aspect-ratio: 16 / 9; }
.lp3dg .img-placeholder--21x9 { aspect-ratio: 21 / 9; }
.lp3dg .img-placeholder--4x3  { aspect-ratio: 4 / 3; }
.lp3dg .img-placeholder--square { aspect-ratio: 1 / 1; }

.lp3dg .img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,116,197,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,116,197,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.lp3dg .img-placeholder-inner {
  text-align: center;
  padding: var(--s-6);
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.lp3dg .img-placeholder-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  box-shadow: var(--sh-sm);
}

.lp3dg .img-placeholder-icon svg { width: 24px; height: 24px; }

.lp3dg .img-placeholder-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--s-2);
}

.lp3dg .img-placeholder-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.015em;
  margin-bottom: var(--s-2);
}

.lp3dg .img-placeholder-hint {
  font-size: 12.5px;
  color: var(--c-text-soft);
  line-height: 1.5;
  font-style: italic;
}


/* ============================================================
   MOBILE STICKY BOTTOM CTA, sadece mobilde görünür
   ============================================================ */
.lp3dg .mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(5, 12, 26, 0.08);
  gap: 8px;
  align-items: center;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.lp3dg .mobile-cta-bar.is-visible {
  transform: translateY(0);
}

.lp3dg .mobile-cta-bar .mcta-call {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  transition: all .15s ease;
}

.lp3dg .mobile-cta-bar .mcta-call:hover,
.lp3dg .mobile-cta-bar .mcta-call:active {
  background: var(--c-text);
  color: #fff;
  border-color: var(--c-text);
}

.lp3dg .mobile-cta-bar .mcta-call svg {
  width: 18px;
  height: 18px;
}

.lp3dg .mobile-cta-bar .mcta-primary {
  flex: 1;
  height: 48px;
  background: var(--c-blue);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s ease;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(58, 116, 197, 0.28);
}

.lp3dg .mobile-cta-bar .mcta-primary:hover,
.lp3dg .mobile-cta-bar .mcta-primary:active {
  background: var(--c-blue-dark);
  color: #fff;
}

.lp3dg .mobile-cta-bar .mcta-primary svg {
  width: 15px;
  height: 15px;
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
  .lp3dg .mobile-cta-bar { display: flex; }
  /* Sayfa sonuna sticky bar için boşluk ekle */
  .lp3dg .cta-stripe { padding-bottom: calc(var(--s-9) + 80px); }
}

/* FOOTER CTA STRIPE */
.lp3dg .cta-stripe {
  background: var(--c-bg-dark);
  color: #fafafa;
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}

/* Energy accent, sağ üst köşede crimson radial glow */
.lp3dg .cta-stripe .wrap::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Sol alt köşede ikincil indigo glow */
.lp3dg .cta-stripe .wrap::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 116, 197, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.lp3dg .cta-stripe .wrap {
  position: relative;
}

/* Grid pattern, subtle, hero ile tutarlı */
.lp3dg .cta-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 163, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 163, 232, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 75%);
  pointer-events: none;
}

/* Top separator line */
.lp3dg .cta-stripe::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 163, 232, 0.5), transparent);
}

.lp3dg .cta-stripe-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lp3dg .cta-stripe h2 {
  color: #fafafa;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.08;
  margin-bottom: var(--s-4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lp3dg .cta-stripe h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, var(--c-blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp3dg .cta-stripe p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: var(--s-6);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.lp3dg .cta-stripe-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

.lp3dg .cta-stripe .btn-secondary {
  background: transparent;
  color: #fafafa;
  border-color: rgba(255,255,255,0.24);
}

.lp3dg .cta-stripe .btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lp3dg .hero-inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .lp3dg .section { padding: var(--s-9) 0; }
}

@media (max-width: 480px) {
  .lp3dg .section { padding: var(--s-8) 0; }
  .lp3dg .hero-ctas .btn { width: 100%; }
  .lp3dg .cta-stripe-actions .btn { width: 100%; }
  .lp3dg .wrap { padding: 0 var(--s-4); }
  .lp3dg .hero-card { padding: var(--s-5); }
}

@media (prefers-reduced-motion: reduce) {
  .lp3dg *, .lp3dg *::before, .lp3dg *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lp3dg .reveal, .lp3dg .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .lp3dg .marquee-track { animation: none !important; }
}


/* ============================================================
   3DGRANDE — DENTAL KLİNİK LP: V13 FIX PACK
   
   KULLANIM:
   Back Office → Tasarım → Tema Özelleştir → Warehouse →
   "Ek CSS kodu" alanındaki mevcut LP3DG DESIGN SYSTEM
   bloğunun SONUNA (dosyanın en altına) bu bloğu yapıştır.
   
   Böylece orijinal design system kuralları korunur, sadece
   aşağıdaki override'lar devreye girer.
   
   KAPSAM:
   14 spesifik düzeltme talebi için override kuralları.
   Her kural aşağıda numaralı başlıkla belirtilmiştir.
   ============================================================ */


/* ----------------------------------------------------------
   0. DESIGN TOKEN OVERRIDE — Koyu arka plan rengini siyaha
   yaklaştır. Bu değişiklik "Neden Biz", "Klinik Kazanımları"
   ve "Başlamaya Hazır" section'larını birlikte etkiler.
   ---------------------------------------------------------- */
.lp3dg {
  --c-bg-dark: #0b1628;        /* eski: #092c47  (mavimsi) */
  --c-bg-dark-alt: #0e1a2e;    /* eski: #0e3a5c  (mavimsi) */
}


/* ----------------------------------------------------------
   1. HERO ÜST BOŞLUK — Header ile hero arası aşırı açık.
   Desktop + mobile için ayrı ayrı kısalt.
   ---------------------------------------------------------- */
.lp3dg .hero {
  padding: var(--s-5) 0 var(--s-7);   /* eski: s-9 0 s-8 */
}
@media (max-width: 768px) {
  .lp3dg .hero {
    padding: var(--s-3) 0 var(--s-5); /* mobil: daha dar */
  }
}


/* ----------------------------------------------------------
   2 + 11. BUTON HİZALAMASI — Hero ve CTA-stripe'daki
   "Demo Planlayın" (<span>) ile telefon (<a>) arasında
   baseline kayması var. Flex container'a align-items: center
   ver, span.btn için explicit vertical-align ayarla.
   ---------------------------------------------------------- */
.lp3dg .hero-ctas,
.lp3dg .cta-stripe-actions {
  align-items: center;
}
.lp3dg .hero-ctas span.btn,
.lp3dg .cta-stripe-actions span.btn,
.lp3dg span.ctf_click_open_contactform7.btn {
  vertical-align: middle;
  box-sizing: border-box;
  line-height: 1;        /* <a> ile aynı davranış */
}
/* span.btn kullanıldığında cursor pointer garantile */
.lp3dg span.ctf_click_open_contactform7.btn {
  cursor: pointer;
}


/* ----------------------------------------------------------
   3. QUICK ANSWER → ALTINDAKİ BÖLÜM ARASI DAR
   Quick answer kartının alt boşluğunu aç.
   ---------------------------------------------------------- */
.lp3dg .quick-answer {
  padding: var(--s-6) 0 var(--s-7);   /* eski: s-6 0 s-3 */
}


/* ----------------------------------------------------------
   5. SECTION HEADER — Başlık + subtitle yapışık.
   "Kliniğinize uygun model... 6 farklı klinik ölçeği..."
   satırı birbirine değiyor. Title'ın margin-bottom'ını aç.
   ---------------------------------------------------------- */
.lp3dg .section-header .section-title {
  margin-bottom: var(--s-4);  /* eski: s-4 idi ama görsel olarak kifayetsizdi */
}
.lp3dg .section-header .section-subtitle {
  margin-top: var(--s-2);
}
.lp3dg .section-header {
  margin-bottom: var(--s-7);  /* eski: s-6 → s-7 */
}


/* ----------------------------------------------------------
   6. SECTION-BANDED'LAR ARASI GAP DAR
   Reflex serisi ↔ Uygulamalar, Uygulamalar ↔ İş Akışı gibi
   banded section'lar arası dikey boşluk aç.
   ---------------------------------------------------------- */
.lp3dg .section-banded {
  padding: var(--s-7) 0;      /* eski: s-5 0 */
}
@media (max-width: 1024px) {
  .lp3dg .section-banded {
    padding: var(--s-5) var(--s-2);  /* mobil daha sıkı */
  }
}


/* ----------------------------------------------------------
   8 + 9. CAD YAZILIM BÖLÜMÜ — Üst ve alt boşluk fazla.
   .section class'ı (Main CTA ile CAD Compat kullanıyor)
   dikey padding'i azalt.
   ---------------------------------------------------------- */
.lp3dg .section {
  padding: var(--s-6) 0;       /* eski: s-9 0 */
}
@media (max-width: 1024px) {
  .lp3dg .section {
    padding: var(--s-5) 0;
  }
}


/* ----------------------------------------------------------
   10. CTA STRIPE — "Başlamaya hazır mısınız?" bölümü:
   daha ince (padding azalt) + daha koyu (solid siyah-mavi
   gradient arka plan, glow'ları hafifletir).
   ---------------------------------------------------------- */
.lp3dg .cta-stripe {
  padding: var(--s-6) 0;        /* eski: s-9 0 */
  padding-bottom: calc(var(--s-6) + 80px);  /* mobile-cta-bar ile çakışmasın */
  background: linear-gradient(135deg, #050c18 0%, #0b1628 60%, #1a2a4a 100%);
}
/* Radyal glow'ları azalt — artık daha koyu zeminde fazla gelebilir */
.lp3dg .cta-stripe .wrap::before {
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 55%);
}
.lp3dg .cta-stripe .wrap::after {
  background: radial-gradient(circle, rgba(58, 116, 197, 0.14) 0%, transparent 60%);
}


/* ----------------------------------------------------------
   12. MOBILE — Header ile sayfa içeriği arası boşluk var
   (madde 1'deki mobile hero padding zaten düşürüyor, burayı
   daha da sıkılaştırıyoruz).
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .lp3dg .hero {
    padding-top: var(--s-2);    /* çok minimal üst boşluk */
  }
  .lp3dg .quick-answer {
    padding: var(--s-4) 0 var(--s-5);
  }
}


/* ----------------------------------------------------------
   13. MOBILE STICKY CTA — "Ücretsiz demo planla" yazı
   beyaz kalmalı; telefon ikonu yeşil olmalı.
   ---------------------------------------------------------- */
.lp3dg .mobile-cta-bar .mcta-primary {
  color: #ffffff !important;
  background: var(--c-blue);
}
.lp3dg .mobile-cta-bar .mcta-primary svg {
  color: #ffffff;
  stroke: currentColor;
}
.lp3dg .mobile-cta-bar .mcta-call {
  color: var(--c-emerald);       /* #047857 yeşil */
  border-color: var(--c-emerald);
  background: #ffffff;
}
.lp3dg .mobile-cta-bar .mcta-call svg {
  stroke: var(--c-emerald);
}
/* Hover varyantı yeşil tonu koru */
.lp3dg .mobile-cta-bar .mcta-call:hover,
.lp3dg .mobile-cta-bar .mcta-call:active {
  background: var(--c-emerald);
  color: #ffffff;
  border-color: var(--c-emerald);
}
.lp3dg .mobile-cta-bar .mcta-call:hover svg,
.lp3dg .mobile-cta-bar .mcta-call:active svg {
  stroke: #ffffff;
}


/* ----------------------------------------------------------
   14. MOBILE REFLEX SERİSİ — "En Çok Tercih Edilen" ribbon
   ile "Orta-Yüksek Hacim" tier badge mobilde çakışıyor.
   Mobile'da ribbon'u absolute'dan çıkarıp inline akışa al.
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .lp3dg .series-featured {
    padding-top: var(--s-4);
  }
  .lp3dg .series-featured-ribbon {
    position: static;
    display: inline-block;
    margin: 0 0 var(--s-3) 0;
    align-self: flex-start;
    box-shadow: none;
  }
  /* Tier badge ribbon'un altına akısın */
  .lp3dg .series-featured-inner .series-tier {
    margin-bottom: var(--s-3);
  }
}


/* ============================================================
   END FIX PACK
   ============================================================ */


/* ============================================================
   3DGRANDE — DENTAL KLİNİK LP: V14 FIX PACK (v13 üstüne ek)
   
   KULLANIM:
   lp3dg.css dosyasının SONUNA ekle (mevcut v13 fix pack'ten 
   sonra). Bu dosya sadece v14 talebine özel override'ları içerir,
   v13 fix pack'i TEKRAR ETMEZ.
   
   KAPSAM (7 revizyon):
   R1  Neden Biz: em-soft okunmuyor + alt satır bitişik
   R2  Reflex serisi: section-label ↔ title yapışık
   R3  Klinik Kazanımları: em-soft okunmuyor + alt satır bitişik
   R4  FAQ: template'te halledildi (open attribute kaldırıldı)
   R5  CTA stripe footer'a yapışık olsun
   R6  Mobile sticky CTA:
       - "ÜCRETSİZ DEMO PLANLA" uppercase + popup trigger
       - Telefon butonu: full yeşil + beyaz ikon
   R7  Reflex karşılaştırma butonu: template'te halledildi (silindi)
   ============================================================ */


/* ----------------------------------------------------------
   R1. NEDEN BİZ em-soft ("HeyGears Reflex Tercih Ediyor")
   Koyu zeminde #818cf8 soluk kalıyor. Daha parlak ton ver,
   alt satır ile subtitle arası gap aç.
   ---------------------------------------------------------- */
.lp3dg .bento-dark-wrap .em-soft {
  color: #e0e7ff;              /* eski: #818cf8 — indigo-100 daha parlak */
  margin-top: var(--s-2);       /* ana başlık ile em-soft satırı arası */
  margin-bottom: var(--s-3);    /* em-soft satırı ile subtitle arası */
}

/* Section header içinde title → subtitle arası zorunlu boşluk */
.lp3dg .bento-dark-wrap .section-title {
  margin-bottom: var(--s-5);    /* subtitle'ı aşağı it */
}


/* ----------------------------------------------------------
   R2 + R3. SECTION-LABEL ↔ SECTION-TITLE yapışık duruyor.
   Label (pill tag) ile title arasında belirgin boşluk aç.
   Bu tüm bölümleri etkiler — Reflex, FAQ, İş Akışı, Stats vb.
   ---------------------------------------------------------- */
.lp3dg .section-header .section-label {
  margin-bottom: var(--s-4);   /* eski: s-4 default ama görsel dar */
}
/* Dikey ayrımı kesin garantiye al: label inline-flex olduğu için margin tam uygulanmayabilir */
.lp3dg .section-header .section-label + .section-title,
.lp3dg .section-header .section-label + h2 {
  margin-top: var(--s-3);
}


/* ----------------------------------------------------------
   R3. KLİNİK KAZANIMLARI (stats-section) em-soft okunmuyor.
   "Ölçülebilir Klinik Sonuçları" — em-soft şu an blue-light
   (#7ca6dd) — koyu zeminde soluk. Beyaz-soft ton ver.
   ---------------------------------------------------------- */
.lp3dg .stats-section .em-soft,
.lp3dg .banded-inner--dark .em-soft {
  color: #e0e7ff;              /* eski: var(--c-blue-light) */
  margin-top: var(--s-2);
}
.lp3dg .stats-section .section-title {
  margin-bottom: var(--s-4);
}


/* ----------------------------------------------------------
   R5. CTA STRIPE FOOTER'A YAPIŞIK
   Elementor section varsayılan margin-bottom'u siliyoruz.
   Hem .cta-stripe hem de onu wrap'leyen .lp3dg > div üzerinde
   override ver.
   ---------------------------------------------------------- */
.lp3dg .cta-stripe {
  margin-bottom: 0 !important;
}
/* .lp3dg wrapper'ın en son çocuğu olan cta-stripe sonrasında 
   boşluk kalmasın. Parent elementor section'u için de emniyet: */
.lp3dg > section.cta-stripe,
.lp3dg > div > section.cta-stripe {
  margin-bottom: 0;
  padding-bottom: var(--s-7);  /* CTA içi alt boşluk koru */
}
/* Mobile'da sticky CTA bar overlap'i için ek padding gerekli 
   ama bu zaten v13 fix pack'te var — sadece mobilde uygulansın: */
@media (max-width: 768px) {
  .lp3dg .cta-stripe {
    padding-bottom: calc(var(--s-7) + 80px);  /* sticky bar altta durmasın */
  }
}


/* ----------------------------------------------------------
   R6a. MOBILE STICKY "ÜCRETSİZ DEMO PLANLA" UPPERCASE + POPUP
   Template'te <a href="#form"> → <span class="ctf_click_...">
   olarak değişti. CSS'te uppercase görsel + cursor ayarla.
   ---------------------------------------------------------- */
.lp3dg .mobile-cta-bar .mcta-primary {
  text-transform: uppercase;
  letter-spacing: 0.02em;      /* uppercase için tracking */
  cursor: pointer;             /* span olduğu için manuel ver */
  user-select: none;           /* double-click ile yazı seçilmesin */
  font-size: 13.5px;           /* uppercase daha geniş okur, küçült */
}
/* Span olduğu için font-feature'lar HTML tarafı etkilemiyor — 
   buton görünümü korunsun */
.lp3dg .mobile-cta-bar .mcta-primary:hover,
.lp3dg .mobile-cta-bar .mcta-primary:active {
  background: var(--c-blue-dark);
  color: #ffffff;
}


/* ----------------------------------------------------------
   R6b. MOBILE STICKY .mcta-call (TELEFON) — FULL YEŞİL + BEYAZ İKON
   V13 fix pack'te beyaz arka + yeşil ikon vardı; kullanıcı tersini
   istiyor. Bu override v13 kurallarını günceller.
   ---------------------------------------------------------- */
.lp3dg .mobile-cta-bar .mcta-call {
  background: var(--c-emerald);     /* #047857 — full yeşil */
  border-color: var(--c-emerald);
  color: #ffffff;
}
.lp3dg .mobile-cta-bar .mcta-call svg {
  stroke: #ffffff;                  /* beyaz ikon */
}
/* Hover'da biraz daha koyu yeşil — ikon beyaz kalsın */
.lp3dg .mobile-cta-bar .mcta-call:hover,
.lp3dg .mobile-cta-bar .mcta-call:active {
  background: #065f46;              /* emerald-800 daha koyu */
  border-color: #065f46;
  color: #ffffff;
}
.lp3dg .mobile-cta-bar .mcta-call:hover svg,
.lp3dg .mobile-cta-bar .mcta-call:active svg {
  stroke: #ffffff;
}


/* ----------------------------------------------------------
   BONUS: em-soft CSS Stripe (başlığın koyu tonda güzel gözüksün)
   ---------------------------------------------------------- */
.lp3dg .cta-stripe h2 .em-soft {
  color: #e0e7ff;
  display: inline-block;
  margin-top: var(--s-1);
}


/* ============================================================
   END V14 FIX PACK
   ============================================================ */



/* ============================================================
   V15 FIX PACK  (2026-04-20)
   ============================================================ */

.lp3dg .bento-dark-wrap .em-soft,
.lp3dg .stats-section .em-soft,
.lp3dg .banded-inner--dark .em-soft,
.lp3dg .cta-stripe h2 .em-soft {
  color: #f3f4f6;
  margin-top: var(--s-3);
}

.lp3dg .section-header .section-label { margin-bottom: var(--s-5); }
.lp3dg .section-header .section-label + .section-title,
.lp3dg .section-header .section-label + h2 { margin-top: var(--s-4); }

@media (min-width: 769px) {
  .elementor-section.lp3dg-mobile-only,
  section.lp3dg-mobile-only,
  .lp3dg-mobile-only {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

.lp3dg .mobile-cta-bar .mcta-primary {
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 14.5px;
}

.lp3dg .mobile-cta-bar .mcta-call {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
}
.lp3dg .mobile-cta-bar .mcta-call svg {
  width: 22px; height: 22px;
  stroke: #ffffff; stroke-width: 2;
}
.lp3dg .mobile-cta-bar .mcta-call:hover,
.lp3dg .mobile-cta-bar .mcta-call:active {
  background: #059669; border-color: #059669; color: #ffffff;
}
.lp3dg .mobile-cta-bar .mcta-call:hover svg,
.lp3dg .mobile-cta-bar .mcta-call:active svg { stroke: #ffffff; }



/* ============================================================
   V16 FIX PACK  (2026-04-20)
   
   Template'teki 4 içerik değişikliğiyle birlikte uyum sağlayan
   CSS eklemeleri:
   - R1: Section-title dark zeminlerde garantili beyaz
   - R2: Section-header flex-column + gap (label-title yapışıklığını
     kökten çözmek için)
   - R3: cta-trust-inline sol panelde (trust row yer değiştirdi)
   - R4: Form alanlarına belirgin border
   ============================================================ */


/* ----------------------------------------------------------
   R1. KOYU ZEMİN BAŞLIKLARI GARANTİLİ BEYAZ
   Em-soft kaldırıldı artık, tüm h2 tek parça. Dark zeminlerde 
   theme'in herhangi bir override'ı varsa !important ile kes.
   ---------------------------------------------------------- */
.lp3dg .bento-dark-wrap .section-title,
.lp3dg .stats-section .section-title,
.lp3dg .banded-inner--dark .section-title,
.lp3dg .cta-stripe h2 {
  color: #ffffff !important;
}
/* Subtitle'lar da dark'ta beyaz-soft */
.lp3dg .bento-dark-wrap .section-subtitle,
.lp3dg .stats-section .section-subtitle,
.lp3dg .banded-inner--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}


/* ----------------------------------------------------------
   R2. SECTION HEADER YAPIŞIKLIĞINI KÖKTEN ÇÖZME
   Önceki margin-bottom yaklaşımları yeterli değildi çünkü 
   .section-label inline-flex element'ti, bazı durumlarda margin
   tam uygulanmıyordu. Şimdi flex-column layout + gap ile garanti.
   ---------------------------------------------------------- */
.lp3dg .section-header {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);          /* label-title-subtitle arası tutarlı gap */
  align-items: flex-start;   /* varsayılan sol hizalı */
}
.lp3dg .section-header--center {
  align-items: center;       /* ortalama override */
  text-align: center;
}
/* Eski margin değerleri sıfırla ki gap temiz çalışsın */
.lp3dg .section-header .section-label,
.lp3dg .section-header .section-title,
.lp3dg .section-header .section-subtitle,
.lp3dg .section-header .em-soft {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Label ile title arası özel boşluk (gap'ten ekstra) */
.lp3dg .section-header .section-label {
  margin-bottom: var(--s-3) !important;
}
.lp3dg .section-header .section-title {
  margin-bottom: var(--s-3) !important;
}


/* ----------------------------------------------------------
   R3. CTA-TRUST-INLINE ARTIK SOL PANELDE
   Template'te yer değiştirdi. Eski sağ-panel kuralları yerine 
   sol-panelde görünümü düzenle.
   ---------------------------------------------------------- */
.lp3dg .cta-panel-left .cta-trust-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
  border-bottom: none;
}
.lp3dg .cta-panel-left .cta-trust-inline .trust-item {
  font-size: 12.5px;
  color: var(--c-text-mid);
}
.lp3dg .cta-panel-left .cta-trust-inline .trust-item svg {
  width: 14px; height: 14px;
}
@media (max-width: 480px) {
  .lp3dg .cta-panel-left .cta-trust-inline {
    grid-template-columns: 1fr;
  }
}
/* Sağ panel artık padding-top'a ihtiyacı yok (trust orada değil) */
@media (min-width: 1025px) {
  .lp3dg .cta-panel-right { padding-top: 48px; }  /* hero-card ile paralel start */
}


/* ----------------------------------------------------------
   R4. FORM ALANLARININ ETRAFINDA BELİRGİN BORDER
   Hero-card zaten border-1 + sh-lg var ama daha belirgin isteniyor.
   Cta-panel-right için de form container'ına border ver.
   ---------------------------------------------------------- */
.lp3dg .hero-card {
  border: 2px solid var(--c-blue-soft);   /* eski: 1px var(--c-border-hover) */
}
.lp3dg .cta-panel-right .form-stack {
  border: 2px solid var(--c-blue-soft);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  background: var(--c-bg-tint);
}
/* Form container içindeki label + input'a biraz ekstra nefes */
.lp3dg .cta-panel-right .form-stack .field input,
.lp3dg .cta-panel-right .form-stack .field select,
.lp3dg .cta-panel-right .form-stack .field textarea {
  background: #ffffff;   /* bg-tint arkada olduğu için input daha belirgin */
}


/* ============================================================
   END V16 FIX PACK
   ============================================================ */
   
/* ============================================================
   LP3DG — V17 KUYUMCULUK PATCH
   ============================================================
   Bu patch, kuyumculuk LP'si için gerekli yeni component'leri,
   düzeltmeleri ve scope-spesifik override'ları içerir.

   İÇERİK (v17 — güncel):
   1. PAC10 div-grid component (table HTML'i tamamen kaldırıldı)
   2. series-row-link → grid layout (a sarılmış li'ler için)
   3. 5-step workflow stepper scope override
   4. stat-value renkli span class'ları
   5. cta-contact--right (main CTA sağ panel)
   6. series-note italic
   7. image-placeholder component (görsel yer tutucular)
   8. Responsive — mobile 640px altı PAC10 stack
   9. Root overflow protection
   ============================================================ */


/* ============================================================
   1. PAC10 ODAK ÜRÜN COMPONENT (W6) — DIV-BASED GRID
   ------------------------------------------------------------
   Table tag'i kaldırıldı. Yerine div grid + role=table
   erişilebilirlik için. Tablo rendering'in responsive
   sorunları artık yok.
   ============================================================ */

.lp3dg .pac10-section {
  /* hook — ileride sektöre özel override için */
}

.lp3dg .pac10-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-7);
  align-items: start;
  margin-top: var(--s-7);
}

/* SOL: Ürün görseli placeholder + grid container */
.lp3dg .pac10-specs {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.lp3dg .pac10-grid {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.lp3dg .pac10-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-4);
  border-bottom: 1px solid rgba(58, 116, 197, 0.08);
  align-items: start;
}

.lp3dg .pac10-row:last-child { border-bottom: none; }

/* Header row */
.lp3dg .pac10-row--head {
  background: var(--c-blue-soft);
  border-bottom: 2px solid var(--c-blue-softer);
}

.lp3dg .pac10-row--head span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

/* Data rows */
.lp3dg .pac10-row:not(.pac10-row--head):hover {
  background: rgba(58, 116, 197, 0.025);
}

.lp3dg .pac10-label {
  font-weight: 500;
  color: var(--c-text-mid);
  font-size: 14.5px;
  line-height: 1.5;
}

.lp3dg .pac10-value strong {
  color: var(--c-blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.lp3dg .pac10-desc {
  color: var(--c-text-mid);
  font-size: 14px;
  line-height: 1.5;
}

/* SAĞ: Benefits */
.lp3dg .pac10-benefits {
  padding: var(--s-3) var(--s-2);
}

.lp3dg .pac10-benefits h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0 0 var(--s-5);
}

.lp3dg .pac10-benefit-list {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
}

.lp3dg .pac10-benefit-list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed rgba(58, 116, 197, 0.12);
}

.lp3dg .pac10-benefit-list li:last-child { border-bottom: none; }

.lp3dg .pac10-benefit-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--c-emerald);
  margin-top: 3px;
}

.lp3dg .pac10-benefit-list li span {
  color: var(--c-text-mid);
  line-height: 1.55;
  font-size: 14.5px;
}


/* ============================================================
   2. SERIES-ROW-LINK — GRID LAYOUT (W5)
   ------------------------------------------------------------
   .series-row bir grid container (140px 1fr auto). Satırları
   <a> ile sarınca grid'in doğrudan çocukları <a>'nın içine
   düştüğü için sağ sütun daralıyordu.

   Önceki çözüm :has() selector idi ama tarayıcı/cascade
   sorunları yaşandı. Şimdi doğrudan 'series-row--link' ek
   class'ı kullanıyoruz (HTML'de eklenmiş). Her yerde çalışır.
   ============================================================ */

.lp3dg .series-row--link {
  display: block;
  padding: 0;
}

.lp3dg .series-row-link {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: var(--s-4);
  align-items: center;
  width: 100%;
  padding: var(--s-4) var(--s-5);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.lp3dg .series-row-link:hover {
  text-decoration: none;
  color: inherit;
}

.lp3dg .series-row--link:hover {
  background: rgba(58, 116, 197, 0.025);
  border-color: rgba(58, 116, 197, 0.18);
}

.lp3dg .series-row--link:hover .series-row-arrow {
  background: var(--c-blue);
  color: #fff;
  transform: translateX(3px);
}

/* Mobile: tier üst satırda */
@media (max-width: 768px) {
  .lp3dg .series-row-link {
    grid-template-columns: 1fr auto;
    gap: var(--s-3);
    padding: var(--s-4);
  }
  .lp3dg .series-row--link .series-row-tier {
    grid-column: 1 / -1;
    margin-bottom: -4px;
  }
}


/* ============================================================
   3. 5-STEP WORKFLOW STEPPER (Kuyumculuk scope)
   ============================================================ */

.lp3dg.lp3dg-kuyumcu .wf-nav {
  grid-template-columns: repeat(5, 1fr);
}

.lp3dg.lp3dg-kuyumcu .wf-nav::before {
  left: calc(10% + 6px);
  right: calc(10% + 6px);
}

.lp3dg.lp3dg-kuyumcu .wf-nav::after {
  left: calc(10% + 6px);
}

.lp3dg.lp3dg-kuyumcu .wf-stepper[data-active="1"] .wf-nav::after { width: 0; }
.lp3dg.lp3dg-kuyumcu .wf-stepper[data-active="2"] .wf-nav::after { width: calc((100% - 20%) * (1/4) - 12px); }
.lp3dg.lp3dg-kuyumcu .wf-stepper[data-active="3"] .wf-nav::after { width: calc((100% - 20%) * (2/4) - 12px); }
.lp3dg.lp3dg-kuyumcu .wf-stepper[data-active="4"] .wf-nav::after { width: calc((100% - 20%) * (3/4) - 12px); }
.lp3dg.lp3dg-kuyumcu .wf-stepper[data-active="5"] .wf-nav::after { width: calc((100% - 20%) * (4/4) - 12px); }


/* ============================================================
   4. STAT VALUE RENKLİ SPAN'LARI
   ------------------------------------------------------------
   Kuyumculuk v4'te stats tümü .c-red kullanıyor (tek renk).
   Diğer renkler (c-blue, c-emerald vs.) başka LP'lerde
   kullanılmak üzere mevcut bırakıldı.
   ============================================================ */

.lp3dg .stat-value .c-red     { color: #ef4444; }
.lp3dg .stat-value .c-blue    { color: #7ca6dd; }
.lp3dg .stat-value .c-emerald { color: #34d399; }
.lp3dg .stat-value .c-gold    { color: #fbbf24; }
.lp3dg .stat-value .c-rose    { color: #fb7185; }
.lp3dg .stat-value .c-indigo  { color: #a5b4fc; }

/* Gri nüans — "6 Model" gibi birleşik stat'larda
   rakam rengili, birim gri olsun */
.lp3dg .stat-value .stat-muted {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.lp3dg .stat-value.is-text {
  background: none;
  -webkit-text-fill-color: initial;
}


/* ============================================================
   5. CTA CONTACT — SAĞ PANELDE FORMDAN SONRA
   ============================================================ */

.lp3dg .cta-contact--right {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-text-mid);
}

.lp3dg .cta-contact--right strong {
  color: var(--c-text);
  font-weight: 600;
}

.lp3dg .cta-contact--right span:first-child,
.lp3dg .cta-contact--right span:nth-child(2) {
  font-size: 14.5px;
}


/* ============================================================
   6. SERIES-NOTE — REFLEX SERİSİ ALTINDA İTALİK NOT
   ============================================================ */

.lp3dg .series-note {
  font-style: italic;
  color: var(--c-text-soft);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: var(--s-5) auto 0;
  max-width: 720px;
}


/* ============================================================
   7. IMAGE PLACEHOLDER — GÖRSEL YER TUTUCU COMPONENT
   ------------------------------------------------------------
   Kullanıcı ileride görseli yüklediğinde bu placeholder'ı
   <img> ile değiştirecek. Dashed border + merkezde ikon
   ve label, açıklayıcı hint metni.
   ============================================================ */

.lp3dg .img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-6) var(--s-4);
  background: rgba(58, 116, 197, 0.02);
  border: 2px dashed rgba(58, 116, 197, 0.22);
  border-radius: var(--r-lg);
  color: var(--c-text-soft);
  min-height: 180px;
  text-align: center;
}

.lp3dg .img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.55;
  color: var(--c-blue);
}

.lp3dg .img-placeholder-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-mid);
  margin-top: var(--s-1);
}

.lp3dg .img-placeholder-hint {
  font-size: 11px;
  color: var(--c-text-soft);
  opacity: 0.8;
}

/* Varyantlar */
.lp3dg .img-placeholder--featured {
  min-height: 220px;
}

.lp3dg .img-placeholder--pac10 {
  min-height: 160px;
  background: rgba(212, 175, 55, 0.04);       /* altın tint */
  border-color: rgba(212, 175, 55, 0.28);
}

.lp3dg .img-placeholder--pac10 svg {
  color: #b45309;  /* amber/gold */
}

/* Reflex featured card'da series-featured-visual container */
.lp3dg .series-featured-visual {
  margin-top: var(--s-5);
}


/* ============================================================
   8. RESPONSIVE — MOBILE (1024 / 640)
   ============================================================ */

@media (max-width: 1024px) {
  .lp3dg .pac10-split {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
}

@media (max-width: 640px) {
  /* PAC10 — 640px altında 3 kolon grid stack'e dönüşür.
     !important ile base kuralı kesinlikle override eder. */
  .lp3dg .pac10-row {
    grid-template-columns: 1fr !important;
    gap: var(--s-2) !important;
    padding: var(--s-4) !important;
  }

  .lp3dg .pac10-row--head {
    display: none !important;
  }

  .lp3dg .pac10-row:not(.pac10-row--head) {
    background: #fafbfc;
    border-bottom: 1px solid rgba(58, 116, 197, 0.1);
  }

  .lp3dg .pac10-row:not(.pac10-row--head):last-child {
    border-bottom: none;
  }

  .lp3dg .pac10-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-soft);
  }

  .lp3dg .pac10-value strong {
    font-size: 18px;
  }

  .lp3dg .pac10-desc {
    font-size: 13px;
  }

  .lp3dg .cta-contact--right {
    font-size: 13px;
  }

  .lp3dg .img-placeholder {
    min-height: 140px;
    padding: var(--s-4) var(--s-3);
  }

  .lp3dg .img-placeholder svg {
    width: 36px;
    height: 36px;
  }
}


/* ============================================================
   9. LP3DG ROOT OVERFLOW PROTECTION
   ============================================================ */

.lp3dg {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .lp3dg { overflow-x: hidden; }
}
