/* PaketVale SaaS Landing - sarı/siyah profesyonel + kırmızı agresif vurgu */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --bg-card: #141414;
  --border: #262626;
  --border-2: #2F2F2F;
  --text: #FFFFFF;
  --muted: #A1A1AA;
  --soft: #D4D4D8;
  --yellow: #FFD500;
  --yellow-2: #FFB800;
  --yellow-soft: rgba(255,213,0,.12);
  --red: #E11D48;
  --red-2: #DC2626;
  --red-soft: rgba(225,29,72,.10);
  --green: #22C55E;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --shadow-yellow: 0 10px 30px rgba(255,213,0,.18);
  --shadow-red: 0 10px 30px rgba(225,29,72,.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===================== NAV ===================== */
.pvl-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.pvl-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.pvl-nav-links { display: flex; gap: 28px; }
.pvl-nav-links a {
  color: var(--soft); font-size: 14.5px; font-weight: 500;
  transition: color .15s;
}
.pvl-nav-links a:hover { color: var(--yellow); }
.pvl-nav-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14.5px; letter-spacing: .2px;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn-yellow { background: var(--yellow); color: #0A0A0A; box-shadow: 0 6px 18px rgba(255,213,0,.28); }
.btn-yellow:hover { transform: translateY(-1px); background: var(--yellow-2); box-shadow: var(--shadow-yellow); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(225,29,72,.30); }
.btn-red:hover { transform: translateY(-1px); background: var(--red-2); box-shadow: var(--shadow-red); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--bg-3); border-color: var(--yellow); color: var(--yellow); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===================== HERO ===================== */
.pvl-hero {
  position: relative; padding: 80px 0 70px;
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(255,213,0,.10), transparent 60%),
    radial-gradient(900px 400px at -10% 30%, rgba(225,29,72,.12), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.pvl-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
}
.pvl-hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.pvl-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--yellow-soft); color: var(--yellow); border: 1px solid rgba(255,213,0,.25);
  font-size: 13px; font-weight: 600;
}
.pvl-hero h1 {
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1.05; font-weight: 900;
  letter-spacing: -1.2px; margin: 18px 0 18px;
}
.pvl-hero h1 .accent-yellow { color: var(--yellow); }
.pvl-hero h1 .accent-red { color: var(--red); }
.pvl-hero p.lead {
  font-size: 18px; color: var(--muted); max-width: 560px; margin-bottom: 28px;
}
.pvl-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pvl-hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px;
  max-width: 540px;
}
.pvl-hero-stat .num { font-size: 26px; font-weight: 800; color: var(--yellow); }
.pvl-hero-stat .lbl { font-size: 13px; color: var(--muted); }

.pvl-hero-visual {
  position: relative; aspect-ratio: 1.05/1; border-radius: 22px;
  background: linear-gradient(150deg, #1a1a1a, #0c0c0c);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  padding: 22px; overflow: hidden;
}
.pvl-mock-screen {
  background: #0A0A0A; border: 1px solid var(--border-2); border-radius: 12px;
  padding: 16px; height: 100%;
}
.pvl-mock-toolbar { display: flex; gap: 6px; margin-bottom: 14px; }
.pvl-mock-toolbar span { width: 11px; height: 11px; border-radius: 50%; background: #333; }
.pvl-mock-toolbar span:nth-child(1) { background: var(--red); }
.pvl-mock-toolbar span:nth-child(2) { background: var(--yellow); }
.pvl-mock-toolbar span:nth-child(3) { background: var(--green); }
.pvl-mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.pvl-mock-card {
  background: #141414; border: 1px solid var(--border); border-radius: 8px;
  aspect-ratio: 1.1/1; padding: 10px; display: flex; flex-direction: column; justify-content: space-between;
}
.pvl-mock-card.hi { border-color: var(--yellow); background: var(--yellow-soft); }
.pvl-mock-card .top { font-size: 11px; color: var(--muted); }
.pvl-mock-card .price { font-size: 14px; font-weight: 800; color: var(--text); }
.pvl-mock-card.hi .price { color: var(--yellow); }
.pvl-mock-bar { display: flex; gap: 8px; margin-top: 12px; }
.pvl-mock-bar .pill { flex: 1; height: 28px; border-radius: 6px; background: #1a1a1a; border: 1px solid var(--border); }
.pvl-mock-bar .pill.y { background: var(--yellow); border-color: var(--yellow); }

/* ===================== TRUST BAR ===================== */
.pvl-trust {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 24px 0;
}
.pvl-trust-row { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; justify-content: center; }
.pvl-trust-row .lbl { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; }
.pvl-trust-row .item {
  font-weight: 700; font-size: 18px; color: var(--soft);
  padding: 8px 14px; border: 1px solid var(--border-2); border-radius: 8px;
  background: var(--bg-3);
}

/* ===================== SECTIONS ===================== */
.pvl-section { padding: 90px 0; position: relative; }
.pvl-section-alt { background: var(--bg-2); }
.pvl-section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.pvl-eyebrow {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--red-soft); color: var(--red); border: 1px solid rgba(225,29,72,.30);
  font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 14px;
}
.pvl-eyebrow.yellow { background: var(--yellow-soft); color: var(--yellow); border-color: rgba(255,213,0,.30); }
.pvl-section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; letter-spacing: -0.8px; line-height: 1.15;
}
.pvl-section-head h2 .y { color: var(--yellow); }
.pvl-section-head h2 .r { color: var(--red); }
.pvl-section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ===================== MODULE GRID ===================== */
.pvl-modules {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px;
}
.pvl-module-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.pvl-module-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent); transform: translateY(-3px); transition: transform .2s;
}
.pvl-module-card:hover { border-color: var(--yellow); transform: translateY(-3px); box-shadow: var(--shadow-yellow); }
.pvl-module-card:hover::before { transform: translateY(0); }
.pvl-module-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--yellow-soft); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  border: 1px solid rgba(255,213,0,.25);
}
.pvl-module-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.pvl-module-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ===================== SECTORS ===================== */
.pvl-sectors { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.pvl-sector {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all .15s;
}
.pvl-sector:hover { border-color: var(--red); background: var(--red-soft); }
.pvl-sector i { font-size: 30px; color: var(--red); margin-bottom: 14px; display: block; }
.pvl-sector h4 { font-weight: 700; font-size: 16px; }
.pvl-sector p { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ===================== INTEGRATIONS ===================== */
.pvl-integrations {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.pvl-integration {
  padding: 14px 22px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; font-weight: 700; color: var(--soft); font-size: 15px;
  display: inline-flex; gap: 8px; align-items: center;
  transition: all .15s;
}
.pvl-integration:hover { border-color: var(--yellow); color: var(--yellow); }
.pvl-integration .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ===================== PRICING ===================== */
.pvl-toggle-wrap { display: flex; justify-content: center; margin-bottom: 36px; }
.pvl-toggle {
  display: inline-flex; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px;
}
.pvl-toggle button {
  background: transparent; color: var(--soft); border: 0; cursor: pointer;
  padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: all .15s;
}
.pvl-toggle button.active { background: var(--yellow); color: #0A0A0A; }
.pvl-toggle .save {
  display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 6px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 800;
}

.pvl-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pvl-price-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; transition: all .15s;
}
.pvl-price-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.pvl-price-card.popular { border-color: var(--yellow); box-shadow: var(--shadow-yellow); }
.pvl-price-card.popular::before {
  content: "EN POPÜLER"; position: absolute; top: -12px; right: 18px;
  background: var(--red); color: #fff; padding: 4px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .6px;
}
.pvl-price-card .pico {
  width: 44px; height: 44px; border-radius: 10px; background: var(--yellow-soft); color: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.pvl-price-card h3 { font-size: 19px; font-weight: 800; }
.pvl-price-card .desc { color: var(--muted); font-size: 13.5px; margin: 6px 0 18px; min-height: 38px; }
.pvl-price-old { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.pvl-price-now { font-size: 36px; font-weight: 900; color: var(--text); display: flex; align-items: baseline; gap: 6px; }
.pvl-price-now .currency { font-size: 18px; color: var(--yellow); }
.pvl-price-now .period { font-size: 13px; color: var(--muted); font-weight: 600; }
.pvl-price-features { list-style: none; margin: 18px 0 22px; padding: 0; }
.pvl-price-features li { padding: 6px 0; color: var(--soft); font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.pvl-price-features li::before { content: "✓"; color: var(--yellow); font-weight: 800; flex-shrink: 0; }

/* ===================== TESTIMONIALS ===================== */
.pvl-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.pvl-testimonial {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px;
}
.pvl-testimonial .quote { color: var(--soft); font-size: 15px; font-style: italic; line-height: 1.6; margin-bottom: 18px; }
.pvl-testimonial .quote::before { content: "\201C"; color: var(--yellow); font-size: 36px; line-height: 0; vertical-align: -10px; margin-right: 6px; }
.pvl-testimonial .who { display: flex; align-items: center; gap: 12px; }
.pvl-testimonial .av { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: #0A0A0A; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.pvl-testimonial .firma { font-weight: 700; font-size: 14.5px; }
.pvl-testimonial .pos { color: var(--muted); font-size: 12.5px; }

/* ===================== FAQ ===================== */
.pvl-faq { max-width: 820px; margin: 0 auto; }
.pvl-faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.pvl-faq-q {
  padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 15.5px;
}
.pvl-faq-q::after { content: "+"; color: var(--yellow); font-size: 22px; transition: transform .2s; }
.pvl-faq-item.open .pvl-faq-q::after { transform: rotate(45deg); }
.pvl-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s; padding: 0 22px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.pvl-faq-item.open .pvl-faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ===================== CTA BAND ===================== */
.pvl-cta-band {
  position: relative; background: linear-gradient(135deg, var(--red), #B91C1C);
  padding: 70px 0; text-align: center; overflow: hidden;
}
.pvl-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px);
}
.pvl-cta-band h2 {
  position: relative; font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; letter-spacing: -0.8px;
  color: #fff; margin-bottom: 14px;
}
.pvl-cta-band p { position: relative; color: rgba(255,255,255,.92); font-size: 17px; margin-bottom: 28px; }
.pvl-cta-band .btn-yellow { box-shadow: 0 12px 30px rgba(0,0,0,.30); }

/* ===================== CONTACT ===================== */
.pvl-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.pvl-contact-info .item {
  display: flex; gap: 14px; padding: 18px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
}
.pvl-contact-info .ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--yellow-soft); color: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.pvl-contact-info h5 { font-size: 14px; font-weight: 700; }
.pvl-contact-info p { color: var(--muted); font-size: 14px; margin-top: 2px; }

.pvl-form {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.pvl-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pvl-form .field { margin-bottom: 14px; }
.pvl-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--soft); }
.pvl-form input, .pvl-form select, .pvl-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: #0A0A0A; border: 1px solid var(--border-2); color: var(--text);
  font-size: 14.5px; font-family: inherit; transition: border-color .15s;
}
.pvl-form input:focus, .pvl-form select:focus, .pvl-form textarea:focus {
  outline: none; border-color: var(--yellow);
}
.pvl-form textarea { resize: vertical; min-height: 100px; }
.pvl-form .alert { padding: 12px 14px; border-radius: 10px; margin-bottom: 14px; font-size: 14px; }
.pvl-form .alert-success { background: rgba(34,197,94,.10); color: #4ADE80; border: 1px solid rgba(34,197,94,.30); }
.pvl-form .alert-error { background: var(--red-soft); color: #FCA5A5; border: 1px solid rgba(225,29,72,.30); }

/* ===================== FOOTER ===================== */
.pvl-footer { background: #060606; border-top: 1px solid var(--border); padding: 60px 0 28px; color: var(--muted); }
.pvl-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.pvl-footer h6 { color: var(--text); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.pvl-footer ul { list-style: none; }
.pvl-footer li { margin-bottom: 8px; font-size: 14px; }
.pvl-footer li a:hover { color: var(--yellow); }
.pvl-footer .brand-blurb { color: var(--muted); font-size: 13.5px; margin-top: 14px; max-width: 320px; line-height: 1.6; }
.pvl-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}

/* ===================== MOBILE NAV ===================== */
.pvl-burger { display: none; background: transparent; border: 1px solid var(--border-2); color: var(--text); padding: 8px 12px; border-radius: 8px; cursor: pointer; }

/* ===================== HERO V2 (premium dark + glass dashboard) ===================== */
.pvl-hero-v2 {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(1200px 600px at 88% -10%, rgba(255,213,0,.10), transparent 60%),
    radial-gradient(900px 460px at -8% 28%, rgba(225,29,72,.10), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #0E0E10 100%);
  overflow: hidden;
}
/* V4 — wireframe spec arka plan & sıkı stil */
.pvl-hero-v4 {
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(255,212,0,.10), transparent 65%),
    radial-gradient(700px 400px at 88% 10%, rgba(255,212,0,.06), transparent 60%),
    radial-gradient(800px 460px at -10% 30%, rgba(225,29,72,.07), transparent 60%),
    #0B0B0D;
  padding: 80px 0 64px;
}

/* === V5: Hero full-bg foto + sol-metin gradient (visibility fix) === */
.pvl-hero-bgphoto {
  position: relative;
  min-height: 80vh;
  /* Referans tasarım fotoğrafı tüm hero arka planı */
  background-color: #0B0B0D;
  background-image: url('/assets/landing/img/hero-pos.jpg?v=2');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  /* Önceki gradient'lar kaldırıldı (görseli gizliyordu) */
  padding: 80px 0;
  display: flex; align-items: center;
}
/* Sol metin için karartma — sağda fotoğraf %100 net */
.pvl-hero-bgphoto .pvl-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    /* Soldan koyu, sağa şeffaf — orta noktada %50, %35'te koyu, %65+'da ham foto */
    linear-gradient(90deg,
      rgba(11,11,13,.92) 0%,
      rgba(11,11,13,.86) 30%,
      rgba(11,11,13,.55) 50%,
      rgba(11,11,13,0)   65%,
      rgba(11,11,13,0)   100%),
    /* Üstten alta hafif vinyet */
    linear-gradient(180deg, rgba(11,11,13,.18) 0%, rgba(11,11,13,0) 30%, rgba(11,11,13,.25) 100%);
  z-index: 1;
}
/* Eski grid yapısı bg-photo modunda yok; container tek kolon, soldan hizalı */
.pvl-hero-bgphoto .pvl-hero-bg,
.pvl-hero-bgphoto .pvl-hero-glow { display: none; }
.pvl-hero-bgphoto .pvl-hero-inner {
  position: relative; z-index: 2;
  display: block;
}
.pvl-hero-bgphoto .pvl-hero-copy {
  max-width: 560px;
}
/* Mobil foto bloğu — desktop'ta gizli */
.pvl-hero-photo-mobile { display: none; }
.pvl-hero-v4 .pvl-hero-copy { max-width: 560px; }
.pvl-hero-v4 h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -1.4px; font-weight: 900;
  margin: 16px 0 14px;
}
.pvl-hero-v4 p.lead {
  color: #C7C7CF; font-size: 17px; line-height: 1.55; margin-bottom: 20px;
}
.pvl-lead-strong { color: #fff; font-weight: 700; display: inline-block; }

/* CRO: Hero subline (problem + pain bridge) */
.pvl-hero-subline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15.5px; font-weight: 700;
  color: #FCA5A5; line-height: 1.4;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.25);
  margin-bottom: 14px;
}
.pvl-hero-subline i { color: #F87171; font-size: 13px; }
.pvl-hero-subline u { color: #fff; text-decoration-color: rgba(248,113,113,.6); }

/* CRO: Urgency callout (CTA altı) */
.pvl-urgency {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 12px; padding: 10px 14px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.30);
  border-radius: 10px;
  font-size: 13.5px; color: #DDF6E2; line-height: 1.45;
}
.pvl-urgency .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pvlPulse 1.6s ease-out infinite;
}
.pvl-urgency strong { color: var(--yellow); font-weight: 800; }
.pvl-hero-v2::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
}
.pvl-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.pvl-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
}
.pvl-hero-glow-y {
  width: 380px; height: 380px; right: -80px; top: 40px;
  background: radial-gradient(circle, rgba(255,213,0,.45), transparent 70%);
}
.pvl-hero-glow-r {
  width: 320px; height: 320px; left: -60px; bottom: -40px;
  background: radial-gradient(circle, rgba(225,29,72,.40), transparent 70%);
}

.pvl-hero-v2 .pvl-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.25fr .85fr; gap: 52px; align-items: center;
}
/* V3 — problem-first; metin daha güçlü, görsel daha kompakt */
.pvl-hero-v3 .pvl-hero-inner { grid-template-columns: 1.3fr .8fr; gap: 48px; }
.pvl-hero-badge-pain {
  background: rgba(225,29,72,.10) !important;
  color: #FCA5A5 !important;
  border-color: rgba(225,29,72,.35) !important;
}
.pvl-hero-v2 h1 .accent-red { color: var(--red); }
.pvl-hero-v2 .pvl-hero-badge {
  background: rgba(255,213,0,.10); color: var(--yellow);
  border: 1px solid rgba(255,213,0,.30);
}
.pvl-hero-v2 h1 {
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.04; font-weight: 900; letter-spacing: -1.4px;
  margin: 18px 0 16px; color: #fff;
}
.pvl-hero-v2 h1 .accent-yellow { color: var(--yellow); }
.pvl-hero-v2 p.lead {
  font-size: 18px; color: #B8B8C0; max-width: 560px; margin-bottom: 26px;
}
.pvl-hero-v2 .pvl-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pvl-hero-v2 .btn-yellow {
  box-shadow: 0 12px 30px rgba(255,213,0,.32), 0 0 0 1px rgba(255,213,0,.4) inset;
}
.pvl-btn-demo { backdrop-filter: blur(8px); }

.pvl-hero-v2 .pvl-hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px;
  font-size: 13.5px; color: #C8C8D0;
}
.pvl-hero-v2 .pvl-hero-trust i { color: var(--green); margin-right: 6px; }

/* === V4 — Pain list (✓ yeşil), trust line, mini social proof, hero CTA spec === */
.pvl-painlist-v2 {
  list-style: none; padding: 0; margin: 6px 0 26px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px;
}
.pvl-painlist-v2 li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: #E5E7EB;
}
.pvl-painlist-v2 li i {
  width: 20px; height: 20px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.16); color: #4ADE80;
  border-radius: 50%; font-size: 10px;
}

.btn-hero-lg {
  padding: 16px 24px; border-radius: 12px;
  font-size: 16px; font-weight: 800;
}
.pvl-hero-v4 .btn-yellow.btn-hero-lg {
  background: #FFD400; color: #0A0A0A;
  box-shadow: 0 14px 36px rgba(255,212,0,.32);
}
.pvl-hero-v4 .btn-yellow.btn-hero-lg:hover {
  background: #FFCC00; box-shadow: 0 16px 40px rgba(255,212,0,.42);
}
.pvl-hero-v4 .btn-ghost.btn-hero-lg {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.pvl-trust-line {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 13.5px; color: #B5B5BD;
}
.pvl-trust-line .dot { color: #525258; }

.pvl-social-proof-mini {
  margin-top: 12px;
  font-size: 13px; color: #9CA3AF;
}
.pvl-social-proof-mini i { color: var(--yellow); margin-right: 6px; }
.pvl-social-proof-mini strong { color: #fff; font-weight: 700; }

/* === Pain strip — full-width, hero altı === */
.pvl-painstrip {
  background: linear-gradient(180deg, rgba(225,29,72,.06) 0%, rgba(11,11,13,1) 100%);
  border-top: 1px solid rgba(225,29,72,.18);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.pvl-painstrip-title {
  font-size: 13px; font-weight: 800; color: #FCA5A5;
  text-transform: uppercase; letter-spacing: 1.6px;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.pvl-painstrip-title i { color: #F87171; font-size: 14px; }
.pvl-painstrip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.pvl-painstrip-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .15s, background .15s, transform .15s;
}
.pvl-painstrip-item:hover {
  border-color: rgba(225,29,72,.35);
  background: rgba(225,29,72,.06);
  transform: translateY(-2px);
}
.pvl-painstrip-item .ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(225,29,72,.14); color: #F87171;
  border: 1px solid rgba(225,29,72,.30);
  font-size: 16px;
}
.pvl-painstrip-item .txt {
  font-size: 14.5px; font-weight: 700; color: #fff;
}

/* ===================== CTA ALTI EXTRA: micro trust + demo desc ===================== */
.pvl-cta-microtrust {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: #C8C8D0;
}
.pvl-cta-microtrust i { color: #4ADE80; font-size: 12px; }
.pvl-cta-microtrust .sep { color: #525258; margin: 0 2px; }

.pvl-demo-desc {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: #9CA3AF;
}
.pvl-demo-desc i { color: var(--yellow); font-size: 11px; }

/* ===================== BEFORE / AFTER COMPARISON ===================== */
.pvl-compare-section {
  background: linear-gradient(180deg, #0B0B0D 0%, #0E0E10 50%, #0B0B0D 100%);
  padding: 80px 0;
}
.pvl-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.pvl-compare-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.pvl-compare-before {
  border-color: rgba(225,29,72,.30);
  background: linear-gradient(180deg, rgba(225,29,72,.06) 0%, var(--bg-card) 70%);
}
.pvl-compare-after {
  border-color: rgba(34,197,94,.30);
  background: linear-gradient(180deg, rgba(34,197,94,.06) 0%, var(--bg-card) 70%);
}
.pvl-compare-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 8px;
}
.pvl-compare-tag.bad  { color: #F87171; background: rgba(225,29,72,.12); border: 1px solid rgba(225,29,72,.35); }
.pvl-compare-tag.good { color: #4ADE80; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.35); }

/* ÖNCE — Çoklu tablet kaosu */
.pvl-compare-mock {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1c1014, #0a0608);
  border: 1px solid rgba(255,255,255,.06);
}
.pvl-mock-chaos { background: radial-gradient(circle at 50% 50%, #2a0e16, #0a0608); }
.pvl-mini-tab {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px 7px 9px;
  background: rgba(28,18,22,.95);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  font-size: 11.5px; font-weight: 700; color: #DDD;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.pvl-mini-tab .dot { width: 6px; height: 6px; border-radius: 50%; background: #FF1F4F; animation: pvlPulse 1.6s ease-out infinite; }
.pvl-mini-tab .badge {
  background: var(--red); color: #fff; font-style: normal;
  font-size: 10px; font-weight: 800;
  padding: 2px 6px; border-radius: 999px;
  min-width: 18px; text-align: center;
  animation: pvlBadgePulse 1.8s ease-out infinite;
}
.pvl-mini-tab-1 { top: 18px;  left: 14px;  transform: rotate(-5deg); }
.pvl-mini-tab-1 .dot { background: #FF1F4F; }
.pvl-mini-tab-2 { top: 14px;  right: 22px; transform: rotate(4deg); }
.pvl-mini-tab-2 .dot { background: #5D3EBC; }
.pvl-mini-tab-3 { top: 92px;  left: 28px;  transform: rotate(3deg); }
.pvl-mini-tab-3 .dot { background: #F27A1A; }
.pvl-mini-tab-4 { top: 96px;  right: 14px; transform: rotate(-4deg); }
.pvl-mini-tab-4 .dot { background: #FF6900; }
.pvl-chaos-alert {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(225,29,72,.18);
  border: 1px solid rgba(225,29,72,.45);
  color: #F87171; font-size: 14px;
  animation: pvlBadgePulse 1.6s ease-out infinite;
}

/* SONRA — Tek panel temiz */
.pvl-mock-clean { background: linear-gradient(180deg, #0a1410, #050a08); }
.pvl-mock-screen-clean {
  position: absolute; inset: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  backdrop-filter: blur(6px);
}
.pvl-mock-screen-clean .head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; color: #fff;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 4px;
}
.pvl-mock-screen-clean .head .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pvlPulse 1.6s ease-out infinite;
}
.pvl-mock-screen-clean .head .meta {
  margin-left: auto; font-weight: 600; color: #4ADE80; font-size: 10.5px;
  background: rgba(34,197,94,.12); padding: 2px 8px; border-radius: 999px;
}
.pvl-mock-screen-clean .row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #DDD;
  padding: 6px 8px; border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.pvl-mock-screen-clean .row .pf {
  width: 22px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 800; color: #fff;
}
.pvl-mock-screen-clean .pf-ys     { background: #FF1F4F; }
.pvl-mock-screen-clean .pf-getir  { background: #5D3EBC; }
.pvl-mock-screen-clean .pf-ty     { background: #F27A1A; }
.pvl-mock-screen-clean .pf-migros { background: #FF6900; }
.pvl-mock-screen-clean .row i {
  margin-left: auto; color: #4ADE80; font-size: 10px;
}

.pvl-compare-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pvl-compare-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600;
}
.pvl-compare-list.bad li  { color: #FCA5A5; }
.pvl-compare-list.bad i   { color: #F87171; font-size: 16px; }
.pvl-compare-list.good li { color: #BBF7D0; }
.pvl-compare-list.good i  { color: #4ADE80; font-size: 16px; }

/* Center arrow "Dönüşüm" */
.pvl-compare-arrow {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
  min-width: 90px;
}
.pvl-compare-arrow .line {
  flex: 1; width: 2px; min-height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255,213,0,.4), transparent);
}
.pvl-compare-arrow .bubble {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 14px 12px;
  background: var(--yellow);
  color: #0A0A0A;
  border-radius: 50%;
  width: 70px; height: 70px;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255,213,0,.35);
  font-weight: 800;
}
.pvl-compare-arrow .bubble i { font-size: 18px; }
.pvl-compare-arrow .bubble .lbl { font-size: 9.5px; letter-spacing: .8px; text-transform: uppercase; }

/* ===================== TRUST LOGO STRIP ===================== */
.pvl-trust-logos {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.pvl-trust-logos-title {
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.6px;
  color: #71717A; text-transform: uppercase; text-align: center;
  margin-bottom: 22px;
}
.pvl-trust-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.pvl-tlogo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 13.5px; font-weight: 800; letter-spacing: .2px;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  transition: color .2s, border-color .2s, background .2s, transform .15s;
  white-space: nowrap;
}
.pvl-tlogo i { font-size: 16px; }
.pvl-tlogo:hover {
  color: #fff;
  border-color: rgba(255,213,0,.35);
  background: rgba(255,213,0,.06);
  transform: translateY(-2px);
}

/* ===================== MID-PAGE CTA ===================== */
.pvl-midcta {
  background: #121214;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.pvl-midcta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 280px at 30% 20%, rgba(255,213,0,.08), transparent 60%),
    radial-gradient(600px 240px at 80% 80%, rgba(225,29,72,.06), transparent 60%);
  pointer-events: none;
}
.pvl-midcta-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.pvl-midcta h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900; letter-spacing: -.8px; line-height: 1.2;
  color: #fff; margin-bottom: 12px;
}
.pvl-midcta h2 .strike {
  position: relative; display: inline-block;
  color: #F87171;
}
.pvl-midcta h2 .strike::after {
  content: ""; position: absolute; left: -2px; right: -2px;
  top: 56%; height: 3px;
  background: #F87171; border-radius: 2px;
  transform: rotate(-2deg);
}
.pvl-midcta p {
  font-size: 17px; color: #B5B5BD; margin-bottom: 26px;
}
.pvl-midcta-actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 14px;
}
.pvl-midcta-actions .btn-yellow {
  background: #FFD400; color: #0A0A0A;
  box-shadow: 0 14px 36px rgba(255,212,0,.32);
}
.pvl-midcta-actions .btn-yellow:hover {
  background: #FFCC00; box-shadow: 0 16px 40px rgba(255,212,0,.42);
}
.pvl-midcta-actions .btn-ghost {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18);
}
.pvl-midcta-micro {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: #C8C8D0;
}
.pvl-midcta-micro i { color: #4ADE80; font-size: 12px; }
.pvl-midcta-micro .sep { color: #525258; }

/* ===================== TESTIMONIALS V2 — Proof block ===================== */
.pvl-testimonials-v2 .pvl-testimonial {
  position: relative;
  padding-top: 64px;
  background: linear-gradient(180deg, rgba(255,213,0,.04) 0%, var(--bg-card) 60%);
  border-color: rgba(255,213,0,.15);
}
.pvl-test-metric {
  position: absolute; top: -1px; left: -1px; right: -1px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #FFD400 0%, #FFB800 100%);
  color: #0A0A0A;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.pvl-test-metric .num {
  font-size: 24px; font-weight: 900; letter-spacing: -.5px; line-height: 1;
}
.pvl-test-metric .lbl {
  font-size: 13px; font-weight: 700; line-height: 1.3;
}
.pvl-testimonials-v2 .quote {
  color: #E5E7EB; font-style: normal; font-size: 15.5px;
  line-height: 1.6; margin-bottom: 18px;
}
.pvl-testimonials-v2 .quote::before { content: ""; }
.pvl-testimonials-v2 .who-meta { line-height: 1.35; }
.pvl-testimonials-v2 .name { font-weight: 800; font-size: 14.5px; color: #fff; }
.pvl-testimonials-v2 .pos { color: var(--muted); font-size: 12.5px; margin-top: 1px; }
.pvl-testimonials-v2 .pos strong { color: #DDD; font-weight: 700; }
.pvl-testimonials-v2 .loc { color: var(--muted); font-size: 12px; margin-top: 4px; }
.pvl-testimonials-v2 .loc i { color: var(--yellow); font-size: 11px; margin-right: 3px; }

/* Proof rakamları bar */
.pvl-proof-bar {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  background: rgba(255,213,0,.04);
  border: 1px solid rgba(255,213,0,.15);
  border-radius: 16px;
  padding: 22px;
}
.pvl-proof-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
}
.pvl-proof-stat .num {
  font-size: 28px; font-weight: 900; color: var(--yellow); letter-spacing: -.6px;
}
.pvl-proof-stat .lbl { font-size: 12.5px; color: #B5B5BD; }

/* ===================== SLIM CTA STRIP ===================== */
.pvl-slim-cta {
  background: linear-gradient(90deg, rgba(255,213,0,.08), rgba(225,29,72,.06));
  border-top: 1px solid rgba(255,213,0,.20);
  border-bottom: 1px solid rgba(255,213,0,.20);
  padding: 22px 0;
}
.pvl-slim-cta-alt {
  background: linear-gradient(90deg, rgba(225,29,72,.08), rgba(255,213,0,.06));
}
.pvl-slim-cta .container {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
}
.pvl-slim-text { display: flex; flex-direction: column; gap: 2px; }
.pvl-slim-text strong { color: #fff; font-size: 17px; font-weight: 800; letter-spacing: -.2px; }
.pvl-slim-text span { color: #B5B5BD; font-size: 13.5px; }

/* ===================== STICKY CTA (desktop only) ===================== */
.pvl-sticky-cta {
  position: fixed;
  top: 78px; right: 20px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: #FFD400; color: #0A0A0A;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 800; letter-spacing: .1px;
  box-shadow: 0 14px 30px rgba(255,212,0,.32), 0 0 0 1px rgba(255,212,0,.5) inset;
  text-decoration: none;
  opacity: 0; transform: translateY(-10px) scale(.96);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .15s;
}
.pvl-sticky-cta i { font-size: 12px; }
.pvl-sticky-cta.show {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.pvl-sticky-cta:hover { background: #FFCC00; }
@media (max-width: 980px) {
  .pvl-sticky-cta { display: none !important; }
}

/* Pain list (eski v3 — uyumluluk için bırakıldı) — kullanıcı kendi sorununu görsün */
.pvl-painlist {
  margin: 22px 0 26px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(225,29,72,.07), rgba(225,29,72,.03));
  border: 1px solid rgba(225,29,72,.22);
  border-radius: 14px;
}
.pvl-painlist-title {
  font-size: 12.5px; font-weight: 800; letter-spacing: .4px;
  color: #FCA5A5; text-transform: uppercase; margin-bottom: 10px;
}
.pvl-painlist-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px;
}
.pvl-pain {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #E5E7EB;
}
.pvl-pain i {
  width: 20px; height: 20px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(225,29,72,.18); color: #F87171;
  border-radius: 50%; font-size: 11px;
}

/* Microcopy under CTA */
.pvl-cta-micro {
  margin-top: 12px;
  font-size: 13.5px; font-weight: 600; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 8px;
}
.pvl-cta-micro i { font-size: 12px; }

/* Social proof bar */
.pvl-social-proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 22px; padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.pvl-sp-item {
  font-size: 13.5px; color: #C8C8D0;
  display: inline-flex; align-items: center; gap: 8px;
}
.pvl-sp-item i { color: var(--yellow); font-size: 13px; }
.pvl-sp-item strong { color: #fff; font-weight: 800; }
.pvl-sp-sep { width: 1px; height: 18px; background: rgba(255,255,255,.12); }

.pvl-platform-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;
}
.pvl-platform-chips .chip {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: .2px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.04); color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}
.pvl-platform-chips .chip-ys     { border-color: rgba(255,31,79,.45);  color: #FFA8B6; background: rgba(255,31,79,.08); }
.pvl-platform-chips .chip-getir  { border-color: rgba(93,62,188,.55);  color: #C8B8F8; background: rgba(93,62,188,.10); }
.pvl-platform-chips .chip-ty     { border-color: rgba(242,122,26,.55); color: #FFCB94; background: rgba(242,122,26,.10); }
.pvl-platform-chips .chip-migros { border-color: rgba(255,105,0,.55);  color: #FFC09A; background: rgba(255,105,0,.10); }
.pvl-platform-chips .chip-more   { color: #A1A1AA; border-style: dashed; }

/* Sağ taraf — POS sahnesi + glass dashboard */
.pvl-hero-stage {
  position: relative; aspect-ratio: 0.92/1;
  border-radius: 26px; overflow: hidden;
  /* Arka plan SVG sahnenin görünürlüğünü engellemesin diye sade */
  background: #0a0604;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
/* Referans foto modu — kırpılmış 815x555 ≈ 1.47 ratio */
.pvl-hero-stage-photo {
  aspect-ratio: 815 / 555;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,213,0,.08) inset;
}
/* Canlı pulse — sağ üst köşede yeşil "canlı" indicator */
.pvl-stage-pulse {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 10px; height: 10px; border-radius: 50%;
  background: #22C55E;
  box-shadow:
    0 0 0 4px rgba(34,197,94,.18),
    0 0 0 12px rgba(34,197,94,.06);
  animation: pvlPulse 1.6s ease-out infinite;
}
/* Chaos hint — arka planda blur'lu çoklu tablet */
.pvl-chaos {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  filter: blur(.4px);
  opacity: .75;
}
.pvl-chaos-tab {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px 6px 8px;
  background: rgba(28,28,34,.85);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  font-size: 11px; font-weight: 700; color: #C8C8D0;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
}
.pvl-chaos-tab .dot {
  width: 6px; height: 6px; border-radius: 50%;
  animation: pvlPulse 1.6s ease-out infinite;
}
.pvl-chaos-tab .badge {
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 2px 6px; border-radius: 999px;
  font-style: normal; min-width: 16px; text-align: center;
  box-shadow: 0 0 0 0 rgba(225,29,72,.6);
  animation: pvlBadgePulse 1.8s ease-out infinite;
}
@keyframes pvlBadgePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.pvl-chaos-tab-1 { top: 8%;  left: 4%;   transform: rotate(-6deg); }
.pvl-chaos-tab-1 .dot { background: #FF1F4F; }
.pvl-chaos-tab-2 { top: 5%;  right: 6%;  transform: rotate(4deg); }
.pvl-chaos-tab-2 .dot { background: #5D3EBC; }
.pvl-chaos-tab-3 { top: 22%; left: 8%;   transform: rotate(3deg); opacity: .7; }
.pvl-chaos-tab-3 .dot { background: #F27A1A; }
.pvl-chaos-tab-4 { top: 18%; right: 10%; transform: rotate(-3deg); opacity: .65; }
.pvl-chaos-tab-4 .dot { background: #FF6900; }
.pvl-chaos-cross {
  position: absolute; top: 14%; left: 50%;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(225,29,72,.15);
  border: 1px solid rgba(225,29,72,.4);
  color: #F87171; font-size: 11px;
  transform: translateX(-50%) rotate(8deg);
  filter: blur(0);
}
.pvl-stage-photo {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0a0604;
  /* Referans tasarım fotoğrafı: operatör + canlı dashboard */
  background-image: url('/assets/landing/img/hero-pos.jpg?v=2');
  background-size: cover;
  background-position: center;
}

.pvl-dash-glass {
  position: absolute; left: 18px; right: 18px; bottom: 18px; top: auto;
  z-index: 3;
  padding: 16px 16px 14px;
  background: rgba(15,15,20,.62);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,213,0,.06) inset;
  color: #fff;
  display: flex; flex-direction: column; gap: 11px;
}
/* Daha yoğun varyant — hero V3 için */
.pvl-dash-glass-dense { gap: 10px; padding: 14px 14px 12px; }

/* V4 — wireframe glass spec (clean) */
.pvl-dash-clean {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  padding: 18px;
  gap: 14px;
}
.pvl-dash-divider {
  height: 1px; background: rgba(255,255,255,.08); margin: 2px 0;
}
.pvl-orders-clean li {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 9px 11px;
  font-size: 13px;
}
.pvl-orders-clean .pvl-ord { font-weight: 600; color: #DDD; }
.pvl-orders-clean .pvl-ord strong { color: #fff; }
.pvl-dash-clean .pvl-dash-stats { gap: 10px; }
.pvl-dash-clean .pvl-dash-stat {
  background: transparent; border: 0; padding: 4px 6px;
}
.pvl-dash-clean .pvl-dash-stat .num {
  font-size: 22px; color: #fff; letter-spacing: -.5px;
}
.pvl-dash-clean .pvl-dash-stat:first-child .num { color: var(--yellow); }
.pvl-dash-clean .pvl-dash-stat .lbl { font-size: 11px; color: #A1A1AA; margin-top: 2px; }
.pvl-dash-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #fff;
}
.pvl-dash-title { font-weight: 800; letter-spacing: .2px; }
.pvl-dash-mini { color: #A1A1AA; font-weight: 500; font-size: 12px; margin-left: auto; }
.pvl-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
  animation: pvlPulse 1.6s ease-out infinite;
}
@keyframes pvlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.pvl-orders { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.pvl-orders li {
  position: relative;
  display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center;
  padding: 7px 9px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 12.5px;
}
/* Yoğun mod — daha sık satır + meta */
.pvl-orders-dense li { padding: 6px 9px; }
.pvl-orders-dense .pvl-ord {
  display: flex; flex-direction: column; line-height: 1.25;
  min-width: 0;
}
.pvl-ord-meta {
  font-style: normal; font-weight: 500; font-size: 10.5px;
  color: #9CA3AF; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pvl-orders li.row-urgent {
  background: linear-gradient(90deg, rgba(225,29,72,.15), rgba(225,29,72,.04));
  border-color: rgba(225,29,72,.40);
}
.pvl-orders li.row-flash {
  background: linear-gradient(90deg, rgba(34,197,94,.12), rgba(34,197,94,.04));
  border-color: rgba(34,197,94,.35);
  animation: pvlFlash 2.5s ease-in-out infinite;
}
@keyframes pvlFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  50%      { box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
}
.pvl-orders li.row-muted { opacity: .55; }
.pvl-orders li.row-muted .pvl-ord-meta { color: #6B7280; }
.pvl-pf {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.pvl-pf-ys     { background: #FF1F4F; }
.pvl-pf-getir  { background: #5D3EBC; }
.pvl-pf-ty     { background: #F27A1A; }
.pvl-pf-migros { background: #FF6900; }
.pvl-ord { color: #DDD; }
.pvl-ord strong { color: #fff; font-weight: 800; }
.pvl-ord-status {
  font-size: 10.5px; font-weight: 800; letter-spacing: .3px;
  padding: 4px 9px; border-radius: 999px; text-transform: uppercase;
}
.pvl-ord-status.preparing { background: rgba(255,213,0,.15); color: var(--yellow); border: 1px solid rgba(255,213,0,.30); }
.pvl-ord-status.new       { background: rgba(34,197,94,.18); color: #4ADE80;       border: 1px solid rgba(34,197,94,.35); }
.pvl-ord-status.late      { background: rgba(225,29,72,.20); color: #FCA5A5;       border: 1px solid rgba(225,29,72,.45); }
.pvl-ord-status.delivered { background: rgba(255,255,255,.06); color: #9CA3AF;     border: 1px solid rgba(255,255,255,.10); }

.pvl-dash-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.pvl-dash-stats-3 { grid-template-columns: 1.1fr .9fr .9fr; }
.pvl-dash-stat {
  position: relative;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 9px 11px;
}
.pvl-dash-stat .lbl { color: #A1A1AA; font-size: 10.5px; letter-spacing: .2px; }
.pvl-dash-stat .num { color: #fff; font-weight: 900; font-size: 16px; margin-top: 2px; letter-spacing: -.3px; line-height: 1.1; }
.pvl-dash-stat .num .unit { font-size: 11px; color: #A1A1AA; font-weight: 700; margin-left: 2px; }
.pvl-dash-stat:first-child .num { color: var(--yellow); }
.pvl-dash-stat .trend {
  position: absolute; top: 8px; right: 9px;
  font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 6px; border-radius: 6px;
}
.pvl-dash-stat .trend.up   { color: #4ADE80; background: rgba(34,197,94,.12); }
.pvl-dash-stat .trend.down { color: #4ADE80; background: rgba(34,197,94,.12); }
.pvl-dash-stat .trend i { font-size: 8px; }

.pvl-quick-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.pvl-quick-grid .qa {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #DDD;
  padding: 9px 6px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.pvl-quick-grid .qa i { color: var(--yellow); font-size: 12px; }

/* ===================== ÇÖZÜMLER ===================== */
.pvl-solutions-section {
  background: linear-gradient(180deg, #0E0E10 0%, #0A0A0A 100%);
  padding-top: 70px;
}
.pvl-solutions {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.pvl-solution {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px; padding: 26px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  color: inherit; text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .25s ease, background .2s;
  overflow: hidden;
}
.pvl-solution::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,213,0,.6), transparent);
  opacity: 0; transition: opacity .25s;
}
.pvl-solution:hover {
  transform: translateY(-4px);
  border-color: rgba(255,213,0,.55);
  box-shadow: 0 18px 50px rgba(255,213,0,.15), 0 0 0 1px rgba(255,213,0,.25) inset;
  background: linear-gradient(180deg, rgba(255,213,0,.06) 0%, rgba(255,255,255,.02) 100%);
}
.pvl-solution:hover::before { opacity: 1; }
.pvl-solution-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,213,0,.10); color: var(--yellow);
  border: 1px solid rgba(255,213,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 6px;
}
.pvl-solution-tag {
  display: inline-block; align-self: flex-start;
  font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: #9CA3AF;
  padding: 3px 8px; border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.pvl-solution:hover .pvl-solution-tag { color: var(--yellow); border-color: rgba(255,213,0,.30); background: rgba(255,213,0,.08); }
.pvl-solution h3 {
  font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.3px; line-height: 1.25;
}
.pvl-solution p {
  color: #A8A8B2; font-size: 14px; line-height: 1.6; flex: 1;
}
.pvl-solution-link {
  font-size: 13px; font-weight: 800; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px;
}
.pvl-solution-link i { transition: transform .18s; }
.pvl-solution:hover .pvl-solution-link i { transform: translateX(3px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .pvl-solutions { grid-template-columns: repeat(2, 1fr); }
  .pvl-hero-v2 .pvl-hero-inner { gap: 36px; }
  .pvl-hero-v3 .pvl-hero-inner { grid-template-columns: 1.2fr .8fr; }
  .pvl-painlist-grid { gap: 6px 14px; }
  .pvl-painstrip-grid { grid-template-columns: repeat(2, 1fr); }
  .pvl-trust-logos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .pvl-hero-inner { grid-template-columns: 1fr; }
  .pvl-hero-visual { display: none; }
  .pvl-hero-v2 { padding: 56px 0 40px; }
  .pvl-hero-v2 .pvl-hero-inner,
  .pvl-hero-v3 .pvl-hero-inner,
  .pvl-hero-v4 .pvl-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .pvl-hero-stage { aspect-ratio: 1.1/1; max-width: 560px; margin: 0 auto; width: 100%; }
  .pvl-contact-grid { grid-template-columns: 1fr; }
  .pvl-footer-grid { grid-template-columns: 1fr 1fr; }
  /* Mobilde chaos sadece görseli karıştırıyor — kapat */
  .pvl-chaos { display: none; }

  /* V4 — mobil sıralama: Headline → Subtext → CTA → Pain list → Dashboard */
  .pvl-hero-v4 .pvl-hero-inner { display: flex; flex-direction: column; }
  .pvl-hero-v4 .pvl-hero-copy  { display: contents; }
  .pvl-hero-v4 .pvl-hero-badge        { order: 1; align-self: flex-start; }
  .pvl-hero-v4 h1                     { order: 2; }
  .pvl-hero-v4 p.lead                 { order: 3; }
  .pvl-hero-v4 .pvl-hero-actions      { order: 4; }
  .pvl-hero-v4 .pvl-painlist-v2       { order: 5; }
  .pvl-hero-v4 .pvl-trust-line        { order: 6; }
  .pvl-hero-v4 .pvl-social-proof-mini { order: 7; }
  .pvl-hero-v4 .pvl-hero-stage        { order: 8; }

  /* V5 bg-photo mode mobilde — bg foto kaldır, img bloğu en sona getir */
  .pvl-hero-bgphoto {
    background-image: none !important;
    min-height: 0;
    padding: 44px 0 32px;
  }
  .pvl-hero-bgphoto .pvl-hero-overlay { display: none; }
  .pvl-hero-bgphoto .pvl-hero-copy    { max-width: 100%; }
  .pvl-hero-photo-mobile {
    display: block;
    order: 9;
    margin-top: 22px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.08);
  }
  .pvl-hero-photo-mobile img {
    width: 100%; height: auto; display: block;
  }
}
@media (max-width: 720px) {
  .pvl-section { padding: 64px 0; }
  .pvl-nav-links { display: none; }
  .pvl-burger { display: inline-flex; }
  .pvl-nav-links.open {
    display: flex; flex-direction: column; gap: 14px;
    position: absolute; top: 64px; left: 0; right: 0; padding: 18px 20px;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
  }
  .pvl-form .row { grid-template-columns: 1fr; }
  .pvl-footer-grid { grid-template-columns: 1fr; }
  .pvl-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pvl-hero-stat .num { font-size: 20px; }

  .pvl-hero-v2 { padding: 44px 0 36px; }
  .pvl-hero-v2 h1 { font-size: 32px; letter-spacing: -.8px; }
  .pvl-hero-v2 p.lead { font-size: 16px; }
  .pvl-hero-v2 .pvl-hero-actions .btn { width: 100%; }
  .pvl-painlist-grid { grid-template-columns: 1fr; gap: 6px; }
  .pvl-painlist-v2 { grid-template-columns: 1fr; gap: 8px; }
  .pvl-social-proof { gap: 10px; padding: 10px 14px; }
  .pvl-sp-sep { display: none; }
  .pvl-trust-line { gap: 8px; font-size: 12.5px; }
  .pvl-trust-line .dot { display: none; }
  .pvl-painstrip { padding: 22px 0; }
  .pvl-painstrip-grid { grid-template-columns: 1fr; gap: 8px; }

  /* Before/After mobil — dikey stack + ok yatay döner */
  .pvl-compare {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pvl-compare-arrow { flex-direction: row; min-width: 0; min-height: auto; padding: 6px 0; }
  .pvl-compare-arrow .line { width: 60px; min-height: 2px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,213,0,.4), transparent); }
  .pvl-compare-arrow .bubble { width: 64px; height: 64px; }
  .pvl-compare-section { padding: 56px 0; }
  .pvl-compare-mock { height: 180px; }

  /* Trust logos mobil — 2 sütun */
  .pvl-trust-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pvl-tlogo { padding: 10px 12px; font-size: 12.5px; }

  /* Mid-CTA mobil */
  .pvl-midcta { padding: 56px 0; }
  .pvl-midcta-actions { width: 100%; flex-direction: column; gap: 10px; }
  .pvl-midcta-actions .btn { width: 100%; justify-content: center; }

  .pvl-cta-microtrust { font-size: 12.5px; }
  .pvl-demo-desc { font-size: 12px; }
  .pvl-hero-subline { font-size: 13.5px; padding: 9px 12px; }
  .pvl-urgency { font-size: 12.5px; padding: 9px 12px; }

  /* Slim CTA mobil — dikey */
  .pvl-slim-cta .container { flex-direction: column; gap: 14px; text-align: center; }
  .pvl-slim-cta .btn { width: 100%; justify-content: center; }
  .pvl-slim-text { align-items: center; }
  .pvl-slim-text strong { font-size: 16px; }

  /* Proof bar mobil — 2x2 */
  .pvl-proof-bar { grid-template-columns: repeat(2, 1fr); padding: 18px; gap: 16px; }
  .pvl-proof-stat .num { font-size: 22px; }

  /* Testimonial metric mobil */
  .pvl-test-metric { padding: 12px 18px; }
  .pvl-test-metric .num { font-size: 20px; }
  .pvl-test-metric .lbl { font-size: 12px; }
  .pvl-testimonials-v2 .pvl-testimonial { padding-top: 60px; }

  .pvl-hero-stage { aspect-ratio: 0.95/1; }
  .pvl-dash-glass { left: 10px; right: 10px; bottom: 10px; padding: 12px 12px 10px; gap: 9px; }
  .pvl-dash-mini { display: none; }
  .pvl-dash-stats-3 { grid-template-columns: 1fr 1fr; }
  .pvl-dash-stats-3 .pvl-dash-stat:nth-child(3) { display: none; }
  .pvl-orders-dense li:nth-child(5) { display: none; }
  .pvl-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .pvl-platform-chips { gap: 6px; }
  .pvl-platform-chips .chip { font-size: 11.5px; padding: 6px 10px; }

  .pvl-solutions { grid-template-columns: 1fr; }
  .pvl-solution { padding: 22px 20px 20px; }
}
@media (max-width: 420px) {
  .pvl-hero-v2 .pvl-hero-trust { gap: 12px; font-size: 12.5px; }
  .pvl-orders li { grid-template-columns: 26px 1fr auto; font-size: 12px; padding: 6px 8px; }
  .pvl-pf { width: 26px; height: 26px; font-size: 10.5px; }
  .pvl-ord-status { font-size: 9.5px; padding: 3px 7px; }
  .pvl-orders-dense li:nth-child(4),
  .pvl-orders-dense li:nth-child(5) { display: none; }
  .pvl-dash-clean .pvl-dash-stat .num { font-size: 19px; }
}

/* ===================================================================
   HERO PREMIUM (V6 — pixel-perfect spec)
   Eski .pvl-hero-v3, .pvl-hero-v4, .pvl-hero-bgphoto disable edildi.
   =================================================================== */

/* Eski hero class'ları kullanılmıyor — DOM'da yok ama CSS'i yine pasif tut */
.pvl-hero-bgphoto,
.pvl-hero-v3 .pvl-hero-overlay,
.pvl-hero-photo-mobile { display: none !important; }

.pvl-hero-premium {
  position: relative;
  background:
    radial-gradient(circle at 75% 35%, rgba(255,212,0,.16), transparent 32%),
    linear-gradient(90deg, #050506 0%, #080808 38%, rgba(5,5,6,.88) 62%, rgba(5,5,6,.72) 100%);
  overflow: hidden;
}
/* hafif grid pattern */
.pvl-hero-premium::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
  z-index: 0;
}
.pvl-hero-premium-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 88px 24px 72px;
}

/* === LEFT COPY === */
.pvl-hero-premium .pvl-hero-copy {
  max-width: 600px;
}
.pvl-pre-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,212,0,.10);
  border: 1px solid rgba(255,212,0,.30);
  color: #FFD400;
  font-size: 13px; font-weight: 700;
  margin-bottom: 22px;
}
.pvl-pre-eyebrow i { font-size: 11px; }

.pvl-pre-headline {
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.pvl-pre-headline .hl { color: #FFD400; }

.pvl-pre-subtext {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}

.pvl-pre-pain {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600;
  color: #FCA5A5;
  padding: 9px 13px; border-radius: 10px;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.25);
  margin-bottom: 22px;
}
.pvl-pre-pain i { color: #F87171; font-size: 13px; }
.pvl-pre-pain u { color: #fff; text-decoration-color: rgba(248,113,113,.6); }

.pvl-pre-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.pvl-btn-pri,
.pvl-btn-sec {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 26px;
  border-radius: 14px;
  font-weight: 900; font-size: 15.5px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .12s, box-shadow .15s, background .15s;
  border: 1px solid transparent;
}
.pvl-btn-pri {
  background: #FFD400; color: #050506;
  box-shadow: 0 18px 45px rgba(255,212,0,.28);
}
.pvl-btn-pri:hover { background: #FFCC00; transform: translateY(-1px); box-shadow: 0 22px 50px rgba(255,212,0,.38); }
.pvl-btn-sec {
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.pvl-btn-sec:hover { background: rgba(255,255,255,.08); border-color: rgba(255,212,0,.45); color: #FFD400; }

.pvl-pre-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin: 14px 0 22px;
  font-size: 13.5px; color: rgba(255,255,255,.7);
}
.pvl-pre-trust i { color: #22C55E; margin-right: 5px; }

.pvl-pre-chips {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.pvl-pre-chips .lbl {
  font-size: 12.5px; color: rgba(255,255,255,.5);
  margin-right: 4px; font-weight: 600;
}
.pvl-pre-chips .chip {
  display: inline-flex; align-items: center;
  padding: 7px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
}
.pvl-pre-chips .chip-ys     { background: rgba(255,31,79,.12);  border-color: rgba(255,31,79,.40);  color: #FF8FA3; }
.pvl-pre-chips .chip-getir  { background: rgba(93,62,188,.12);  border-color: rgba(93,62,188,.45);  color: #C8B8F8; }
.pvl-pre-chips .chip-ty     { background: rgba(242,122,26,.12); border-color: rgba(242,122,26,.45); color: #FFCB94; }
.pvl-pre-chips .chip-migros { background: rgba(255,105,0,.12);  border-color: rgba(255,105,0,.45);  color: #FFC09A; }
.pvl-pre-chips .chip-more   { color: rgba(255,255,255,.5); border-style: dashed; }

.pvl-pre-urgency {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.30);
  border-radius: 10px;
  font-size: 13.5px; color: #DDF6E2; line-height: 1.5;
}
.pvl-pre-urgency .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pvlPulse 1.6s ease-out infinite;
}
.pvl-pre-urgency strong { color: #FFD400; font-weight: 800; }

/* === RIGHT VISUAL === */
.pvl-hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.08);
}
.pvl-hero-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.05) contrast(1.05);
  display: block;
}
.pvl-photo-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,6,.28), transparent 38%),
    linear-gradient(0deg, rgba(5,5,6,.62), transparent 42%),
    radial-gradient(circle at 70% 45%, transparent 0%, rgba(0,0,0,.38) 78%);
}

/* === FLOATING DASHBOARD === */
.pvl-floating-dashboard {
  position: absolute;
  right: 28px; top: 72px;
  width: min(430px, calc(100% - 56px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(12,12,14,.76);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  color: #fff;
  display: flex; flex-direction: column; gap: 14px;
}
.pfd-head {
  display: flex; align-items: center; justify-content: space-between;
}
.pfd-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800;
}
.pfd-title .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  animation: pvlPulse 1.6s ease-out infinite;
}
.pfd-title .count {
  font-style: normal; font-size: 11px; font-weight: 800;
  background: #FFD400; color: #0A0A0A;
  padding: 2px 8px; border-radius: 999px; margin-left: 4px;
}
.pfd-allbtn {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 11px; border-radius: 8px;
  font-size: 11.5px; font-weight: 700;
  cursor: pointer; transition: all .15s;
}
.pfd-allbtn:hover { color: #FFD400; border-color: rgba(255,212,0,.4); }

.pfd-orders { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.pfd-orders li {
  display: grid;
  grid-template-columns: 24px 1fr auto auto auto;
  gap: 10px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
}
.pfd-orders li:last-child { border-bottom: 0; }
.pfd-pf {
  width: 24px; height: 24px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.pfd-pf-ys     { background: #FF1F4F; }
.pfd-pf-getir  { background: #5D3EBC; }
.pfd-pf-ty     { background: #F27A1A; }
.pfd-pf-migros { background: #FF6900; }
.pfd-name { color: #DDD; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pfd-num  { color: rgba(255,255,255,.55); font-size: 12px; }
.pfd-time { color: rgba(255,255,255,.45); font-size: 11.5px; }
.pfd-stat {
  font-size: 10.5px; font-weight: 800; letter-spacing: .2px;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.pfd-stat.preparing { background: rgba(255,212,0,.12); color: #FFD400; }
.pfd-stat.new       { background: rgba(34,197,94,.16); color: #4ADE80; }

.pfd-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.pfd-stat-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 11px 12px 8px;
}
.pfd-stat-card .lbl { font-size: 10.5px; color: rgba(255,255,255,.55); }
.pfd-stat-card .num {
  font-size: 17px; font-weight: 900; color: #fff; letter-spacing: -.3px;
  margin-top: 3px; line-height: 1.05;
  display: flex; align-items: center; gap: 6px;
}
.pfd-stat-card:first-child .num { color: #FFD400; }
.pfd-stat-card .up {
  font-size: 10.5px; font-weight: 800; color: #4ADE80;
  background: rgba(34,197,94,.12); padding: 2px 6px; border-radius: 5px;
}
.pfd-stat-card .spark {
  width: 100%; height: 22px; margin-top: 4px;
  display: block;
}

.pfd-quick {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.pfd-q {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 10.5px; font-weight: 700; color: #DDD;
  text-align: center;
}
.pfd-q i { color: #FFD400; font-size: 14px; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .pvl-hero-premium-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding: 56px 18px 36px;
  }
  .pvl-hero-premium .pvl-hero-copy { max-width: 100%; }
  .pvl-hero-visual { min-height: 460px; }
  .pvl-hero-photo  { min-height: 460px; }
  .pvl-floating-dashboard {
    position: absolute;
    right: 18px; left: 18px; bottom: 18px; top: auto;
    width: auto;
    padding: 14px;
    gap: 10px;
  }
  .pvl-pre-headline { font-size: 42px; letter-spacing: -1.4px; }
  .pvl-pre-subtext  { font-size: 16px; }
  .pvl-pre-cta { gap: 10px; }
}
@media (max-width: 560px) {
  .pvl-hero-premium-inner { padding: 48px 18px 30px; }
  .pvl-pre-headline { font-size: clamp(34px, 11vw, 44px); letter-spacing: -1px; }
  .pvl-btn-pri, .pvl-btn-sec { width: 100%; justify-content: center; padding: 15px 22px; }
  .pvl-pre-cta { flex-direction: column; gap: 8px; }
  .pvl-pre-chips .lbl { width: 100%; margin-bottom: 4px; }
  .pvl-hero-visual { min-height: 380px; border-radius: 22px; }
  .pvl-hero-photo  { min-height: 380px; }
  .pvl-floating-dashboard { padding: 12px; gap: 9px; right: 12px; left: 12px; bottom: 12px; }
  .pfd-orders li {
    grid-template-columns: 22px 1fr auto;
    gap: 8px; padding: 8px 0;
    font-size: 12.5px;
  }
  .pfd-orders .pfd-num,
  .pfd-orders .pfd-time { display: none; }
  .pfd-pf { width: 22px; height: 22px; font-size: 10px; }
  .pfd-quick { grid-template-columns: repeat(2, 1fr); }
  .pfd-stat-card .num { font-size: 15px; }
}

/* ============================================================
   LANDING IMAGE ASSETS — PaketVale (2026-05-02)
   Yeni section + komponent stilleri (panel-onizleme, raporlar,
   trust-band, device-strip, integrations-grid, social-proof,
   compare-img, solution-img)
   ============================================================ */

/* Panel önizleme (#panel-onizleme) */
.pvl-panel-preview-shell {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,213,0,.12);
  background: #0F172A;
}
.pvl-panel-preview-shell img {
  display: block;
  width: 100%;
  height: auto;
}
.pvl-panel-preview-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* BEFORE/AFTER — img tabanlı */
.pvl-compare-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  background: #0F172A;
  margin-bottom: 18px;
}
.pvl-compare-img img {
  display: block;
  width: 100%;
  height: auto;
}
.pvl-compare-before .pvl-compare-img { box-shadow: 0 18px 50px rgba(255,31,79,.18); }
.pvl-compare-after  .pvl-compare-img { box-shadow: 0 18px 50px rgba(255,213,0,.18); }

/* 4 çözüm kartı — kart üstü görsel */
.pvl-solution-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255,255,255,.04);
}
.pvl-solution-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.pvl-solution:hover .pvl-solution-img img { transform: scale(1.04); }

/* Integrations — 2 kolon (visual + chip list) */
.pvl-integrations-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-integrations-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.pvl-integrations-visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 860px) {
  .pvl-integrations-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Analitik / Raporlar (#raporlar) */
.pvl-analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-analytics-copy h2 { font-size: 34px; line-height: 1.2; margin: 14px 0 12px; }
.pvl-analytics-copy h2 .y { color: var(--yellow); }
.pvl-analytics-copy p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.pvl-analytics-list { list-style: none; padding: 0; margin: 0; }
.pvl-analytics-list li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.pvl-analytics-list li i { color: var(--yellow); font-size: 16px; }
.pvl-analytics-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.pvl-analytics-visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 860px) {
  .pvl-analytics-grid { grid-template-columns: 1fr; gap: 24px; }
  .pvl-analytics-copy h2 { font-size: 26px; }
}

/* Social proof banner (testimonials üstü) */
.pvl-social-proof-banner {
  max-width: 1180px;
  margin: 0 auto 40px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.pvl-social-proof-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Trust / Growth band (testimonials → pricing arası) */
.pvl-trust-band {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
}
.pvl-trust-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-trust-band-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.pvl-trust-band-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.pvl-trust-band-copy h2 { font-size: 32px; line-height: 1.22; margin: 12px 0; }
.pvl-trust-band-copy h2 .y { color: var(--yellow); }
.pvl-trust-band-copy p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
@media (max-width: 860px) {
  .pvl-trust-band-grid { grid-template-columns: 1fr; gap: 24px; }
  .pvl-trust-band-copy h2 { font-size: 24px; }
}

/* Device + Printer strip (pricing altı) */
.pvl-device-strip {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px dashed rgba(255,213,0,.18);
}
.pvl-device-strip-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.pvl-device-strip-head h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.pvl-device-strip-head h3 i { color: #16A34A; margin-right: 6px; }
.pvl-device-strip-head h3 .y { color: var(--yellow); }
.pvl-device-strip-head p { color: var(--muted); font-size: 14px; }
.pvl-device-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.pvl-device-strip-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.pvl-device-strip-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.pvl-device-strip-card .lbl {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .pvl-device-strip-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   90099 SWEEP — UNIFIED CTA / TYPOGRAPHY / NEW COMPONENTS
   (2026-05-03 — single-pass UX restructure)
   ================================================================ */

/* -- Readability tokens (override) -- */
:root {
  --muted: #B8C0CC;
  --muted-soft: #94A3B8;
  --text-body: #E5E7EB;
}
body, p, li { font-size: 16px; line-height: 1.6; }
.pvl-section-head p { font-size: 17px; color: var(--muted); }

/* -- Unified CTA system (replaces pvl-btn-pri / btn-yellow / btn-ghost variants) -- */
.pvl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  letter-spacing: .2px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.pvl-cta-primary {
  background: var(--yellow);
  color: #0A0A0A;
  box-shadow: 0 10px 28px rgba(255,213,0,.28);
}
.pvl-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(255,213,0,.4); color: #0A0A0A; }
.pvl-cta-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.pvl-cta-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.pvl-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* -- HERO product-first override -- */
.pvl-hero-visual { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.pvl-hero-product {
  position: relative;
  width: 100%;
  max-width: 720px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,213,0,.18);
  transform: rotate(-1deg) scale(1.05);   /* +25% via scale */
  background: #0F172A;
}
.pvl-hero-product img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.04) saturate(1.05);  /* sharp, no blur */
}
.pvl-pre-headline { font-size: 56px; line-height: 1.08; letter-spacing: -.5px; }
.pvl-pre-headline .hl { color: var(--yellow); }
.pvl-pre-subtext { font-size: 19px; color: var(--text-body); max-width: 560px; }
.pvl-pre-pain { font-size: 16px; color: #FFB800; }
.pvl-pre-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.pvl-pre-trust span { font-size: 15px; color: var(--muted); }
.pvl-pre-trust i { color: #16A34A; margin-right: 4px; }

@media (max-width: 1024px) {
  .pvl-pre-headline { font-size: 42px; }
  .pvl-hero-product { transform: rotate(-1deg) scale(1); }
}
@media (max-width: 720px) {
  .pvl-pre-headline { font-size: 30px; }
  .pvl-hero-visual { min-height: auto; margin-top: 24px; }
}

/* -- BEFORE/AFTER drama (90006) -- */
.pvl-compare-v2 .pvl-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-compare-v2 .pvl-compare-before {
  background: linear-gradient(180deg, rgba(255,31,79,.06) 0%, transparent 100%);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,31,79,.18);
}
.pvl-compare-v2 .pvl-compare-after {
  background: linear-gradient(180deg, rgba(255,213,0,.06) 0%, transparent 100%);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,213,0,.22);
}
.pvl-compare-v2 .pvl-compare-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .8px;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 14px;
}
.pvl-compare-v2 .pvl-compare-tag.bad  { background: rgba(255,31,79,.18); color: #FF1F4F; }
.pvl-compare-v2 .pvl-compare-tag.good { background: rgba(255,213,0,.18); color: var(--yellow); }
.pvl-compare-v2 .pvl-compare-img { position: relative; }
.pvl-chaos-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,31,79,.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,31,79,.22), transparent 50%);
  border-radius: 18px;
  mix-blend-mode: screen;
}
.pvl-compare-v2 .pvl-compare-list { list-style: none; padding: 0; margin-top: 16px; }
.pvl-compare-v2 .pvl-compare-list li {
  padding: 10px 0; font-size: 15px; line-height: 1.5;
  color: var(--text-body); border-bottom: 1px dashed rgba(255,255,255,.06);
}
.pvl-compare-v2 .pvl-compare-list li:last-child { border-bottom: 0; }
.pvl-compare-v2 .pvl-compare-list strong { color: #fff; font-weight: 700; }
.pvl-compare-v2 .pvl-compare-list.bad i  { color: #FF1F4F; margin-right: 8px; }
.pvl-compare-v2 .pvl-compare-list.good i { color: #16A34A; margin-right: 8px; }

.pvl-compare-v2 .pvl-compare-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  align-self: center; padding-top: 80px;
}
.pvl-arrow-circle {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB800 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #0A0A0A; font-size: 28px;
  box-shadow: 0 14px 40px rgba(255,213,0,.4);
  animation: pvlArrowPulse 2.4s ease-in-out infinite;
}
.pvl-arrow-lbl { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: 1.2px; margin-top: 10px; }
@keyframes pvlArrowPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 14px 40px rgba(255,213,0,.4); }
  50%      { transform: scale(1.08); box-shadow: 0 18px 50px rgba(255,213,0,.55); }
}
@media (max-width: 900px) {
  .pvl-compare-v2 .pvl-compare { grid-template-columns: 1fr; }
  .pvl-compare-v2 .pvl-compare-arrow { padding: 0; transform: rotate(90deg); margin: 8px auto; }
}

/* -- Modules cognitive ease (90007) -- */
.pvl-modules-main { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.pvl-modules-main .pvl-module-card {
  text-align: center;
  padding: 28px 22px;
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
}
.pvl-modules-main .pvl-module-icon {
  width: 56px; height: 56px;
  background: rgba(255,213,0,.12);
  color: var(--yellow);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}
.pvl-modules-main .pvl-module-card h3 { font-size: 17px; margin-bottom: 6px; }
.pvl-modules-main .pvl-module-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }

.pvl-modules-more { max-width: 1180px; margin: 28px auto 0; }
.pvl-modules-more summary {
  list-style: none; cursor: pointer;
  padding: 16px 22px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,213,0,.3);
  border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.pvl-modules-more summary::-webkit-details-marker { display: none; }
.pvl-modules-more summary:hover { background: rgba(255,213,0,.06); border-color: var(--yellow); }
.pvl-modules-more summary > span:first-child { font-weight: 700; color: var(--yellow); font-size: 15px; }
.pvl-modules-more summary .hint { font-size: 13px; color: var(--muted); }
.pvl-modules-more[open] summary { margin-bottom: 18px; }
.pvl-modules-extra { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.pvl-modules-extra .pvl-module-card-extra {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.pvl-modules-extra .pvl-module-card-extra h3 { font-size: 15px; }
.pvl-modules-extra .pvl-module-card-extra p { font-size: 13px; color: var(--muted); }
@media (max-width: 720px) {
  .pvl-modules-more summary { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* -- Integrations benefit layout (90004) -- */
.pvl-integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-int-benefits { list-style: none; padding: 0; margin: 0 0 22px; }
.pvl-int-benefits li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pvl-int-benefits li:last-child { border-bottom: 0; }
.pvl-int-benefits .ico {
  width: 42px; height: 42px;
  background: rgba(255,213,0,.12);
  color: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pvl-int-benefits strong { display: block; font-size: 16px; color: #fff; margin-bottom: 4px; }
.pvl-int-benefits span { font-size: 14px; color: var(--muted); line-height: 1.5; }
.pvl-int-platform-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 4px; }
.pvl-int-platform-row .lbl { font-size: 13px; color: var(--muted); margin-right: 6px; }
.pvl-int-platform-row .badge { font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 7px; color: #fff; }
.pvl-int-platform-row .p-ys     { background: #FF1F4F; }
.pvl-int-platform-row .p-getir  { background: #5D3EBC; }
.pvl-int-platform-row .p-ty     { background: #F27A1A; }
.pvl-int-platform-row .p-migros { background: #FF6900; }
@media (max-width: 860px) {
  .pvl-integrations-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* -- Social proof v2 (90005) -- */
.pvl-social-proof-v2 { padding: 90px 0; }
.pvl-sp-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto 56px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.pvl-sp-banner img {
  display: block; width: 100%; height: auto;
  filter: brightness(.45) saturate(.85);
}
.pvl-sp-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 18px;
}
.pvl-sp-headline {
  display: inline-flex; align-items: baseline; gap: 14px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,213,0,.28);
}
.pvl-sp-num { font-size: 56px; font-weight: 800; color: var(--yellow); line-height: 1; }
.pvl-sp-lbl { font-size: 16px; color: #fff; font-weight: 600; }
.pvl-sp-fact { color: #fff; max-width: 720px; }
.pvl-sp-fact strong { display: block; font-size: 22px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.pvl-sp-fact span { font-size: 15px; color: #E5E7EB; opacity: .9; }

.pvl-sp-testimonial {
  max-width: 880px;
  margin: 0 auto 56px;
  background: var(--bg-card);
  border: 1px solid rgba(255,213,0,.18);
  border-radius: 20px;
  padding: 40px 44px;
  position: relative;
}
.pvl-sp-quote-mark {
  position: absolute; top: 6px; left: 26px;
  font-size: 96px; color: var(--yellow); opacity: .25;
  font-family: Georgia, serif; line-height: 1;
}
.pvl-sp-testimonial blockquote {
  font-size: 22px; line-height: 1.5; color: #fff; font-weight: 500;
  margin: 0 0 24px; position: relative; z-index: 1;
}
.pvl-sp-testimonial figcaption { display: flex; gap: 14px; align-items: center; }
.pvl-sp-testimonial .av {
  width: 48px; height: 48px;
  background: var(--yellow); color: #0A0A0A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.pvl-sp-testimonial .meta strong { display: block; color: #fff; font-size: 15px; }
.pvl-sp-testimonial .meta span { color: var(--muted); font-size: 13px; }

.pvl-sp-logos { text-align: center; }
.pvl-sp-logos .lbl { display: block; color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.pvl-sp-logos-grid {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  opacity: .9;
}
.pvl-sp-logos-grid span {
  color: var(--muted);
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.pvl-sp-logos-grid i { color: var(--yellow); }

@media (max-width: 720px) {
  .pvl-sp-num { font-size: 36px; }
  .pvl-sp-fact strong { font-size: 17px; }
  .pvl-sp-testimonial { padding: 28px 22px; }
  .pvl-sp-testimonial blockquote { font-size: 17px; }
}

/* -- Pricing hierarchy (90003) -- */
.pvl-pricing-core { max-width: 1180px; margin: 0 auto 36px; }
.pvl-core-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 2px solid var(--yellow);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 6px rgba(255,213,0,.06);
}
.pvl-core-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: #0A0A0A;
  font-weight: 800; font-size: 12px;
  letter-spacing: .8px; padding: 7px 18px;
  border-radius: 999px; white-space: nowrap;
}
.pvl-core-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px; align-items: center;
}
.pvl-core-icon {
  width: 64px; height: 64px;
  background: rgba(255,213,0,.12); color: var(--yellow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
}
.pvl-core-info h3 { font-size: 30px; font-weight: 800; }
.pvl-core-info h3 .lbl-tag { font-size: 14px; color: var(--muted); font-weight: 600; }
.pvl-core-info .desc { font-size: 16px; color: var(--text-body); margin: 10px 0 16px; }
.pvl-core-features { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.pvl-core-features li { font-size: 14px; color: var(--muted); }
.pvl-core-features li i { color: var(--yellow); margin-right: 6px; }
.pvl-core-price { text-align: center; padding: 22px; background: rgba(255,213,0,.04); border-radius: 16px; }
.pvl-core-microline { color: var(--muted-soft); font-size: 12px; margin-top: 10px; }

.pvl-pricing-tier-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-addons-label {
  font-size: 13px; color: var(--muted);
  letter-spacing: .8px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 14px;
}
.pvl-addons-label i { color: var(--yellow); margin-right: 6px; }
.pvl-addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.pvl-addon-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: border-color .2s ease;
}
.pvl-addon-card:hover { border-color: var(--yellow); }
.pvl-addon-icon { color: var(--yellow); font-size: 22px; margin-bottom: 8px; }
.pvl-addon-card h4 { font-size: 15px; font-weight: 700; }
.pvl-addon-card p { font-size: 13px; color: var(--muted); margin: 6px 0 12px; }
.pvl-addon-price { font-size: 18px; font-weight: 800; color: var(--yellow); }
.pvl-addon-price em { font-size: 12px; color: var(--muted); font-style: normal; font-weight: 500; }

.pvl-pricing-integration {
  background: linear-gradient(135deg, rgba(255,213,0,.12) 0%, rgba(255,213,0,.02) 100%);
  border: 2px solid rgba(255,213,0,.4);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pvl-int-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #FF1F4F; color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 5px 10px; border-radius: 8px;
}
.pvl-int-icon { font-size: 30px; color: var(--yellow); margin-bottom: 12px; }
.pvl-pricing-integration h3 { font-size: 20px; font-weight: 800; line-height: 1.3; }
.pvl-pricing-integration p { font-size: 14px; color: var(--muted); margin: 6px 0 14px; }
.pvl-int-platforms { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pvl-int-platforms span { font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 6px; color: #fff; }
.pvl-int-platforms .p-ys     { background: #FF1F4F; }
.pvl-int-platforms .p-getir  { background: #5D3EBC; }
.pvl-int-platforms .p-ty     { background: #F27A1A; }
.pvl-int-platforms .p-migros { background: #FF6900; }
.pvl-int-features { list-style: none; padding: 0; margin: 0 0 14px; }
.pvl-int-features li { font-size: 14px; color: var(--text-body); padding: 4px 0; }
.pvl-int-features li i { color: var(--yellow); margin-right: 8px; }
.pvl-int-pricing { text-align: center; margin-bottom: 14px; margin-top: auto; }

@media (max-width: 900px) {
  .pvl-core-grid { grid-template-columns: 1fr; }
  .pvl-pricing-tier-row { grid-template-columns: 1fr; }
  .pvl-core-features { grid-template-columns: 1fr; }
}

/* -- Slim CTA padding harmony -- */
.pvl-slim-cta { padding: 28px 0; }
.pvl-slim-cta .container {
  display: flex; gap: 22px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}

/* Nav CTA — küçük varyant */
.pvl-cta-sm { padding: 10px 16px; font-size: 14px; }
.pvl-cta-sm i { font-size: 13px; }

/* ================================================================
   POLISH PASS (post-90099, 2026-05-03)
   ================================================================ */

/* Hero overflow safety + 320px guard */
.pvl-hero-premium { overflow: hidden; }
.pvl-hero-premium-inner { width: 100%; max-width: 100%; }
.pvl-hero-product {
  max-width: 100%;
  transform-origin: center;
}
@media (max-width: 480px) {
  .pvl-hero-product {
    transform: none;            /* mobilde rotate+scale yok */
    border-radius: 14px;
  }
  .pvl-pre-headline { font-size: 26px; line-height: 1.15; }
  .pvl-pre-subtext { font-size: 16px; }
  .pvl-pre-trust { gap: 10px; }
  .pvl-pre-trust span { font-size: 13px; }
  .pvl-cta { padding: 14px 20px; font-size: 14px; width: 100%; justify-content: center; }
  .pvl-cta-row { flex-direction: column; width: 100%; }
}
@media (max-width: 360px) {
  .pvl-pre-headline { font-size: 22px; }
  .pvl-pre-eyebrow { font-size: 11px; }
  .pvl-pre-chips { font-size: 12px; }
  .pvl-pre-chips .chip { padding: 4px 9px; }
}

/* Pricing core tagline (yeni vurgu satırı) */
.pvl-core-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,213,0,.12);
  border: 1px solid rgba(255,213,0,.28);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  margin: 4px 0 14px;
}
.pvl-core-tagline i { color: var(--yellow); }

/* Integration target line */
.pvl-int-target {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,213,0,.1);
  border: 1px solid rgba(255,213,0,.22);
  color: var(--yellow);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 0 0 10px !important;
}

/* Trust band link (CTA yerine) */
.pvl-trust-band-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid rgba(255,213,0,.4);
  transition: border-color .2s ease, gap .2s ease;
}
.pvl-trust-band-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  gap: 12px;
}

/* Social proof top badge */
.pvl-sp-top-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 22px;
  padding: 10px 22px;
  background: rgba(255,213,0,.12);
  border: 1px solid rgba(255,213,0,.32);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  letter-spacing: .2px;
}
.pvl-sp-top-badge .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pvlSpPulse 1.8s ease-out infinite;
}
@keyframes pvlSpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (max-width: 480px) {
  .pvl-sp-top-badge { font-size: 12px; padding: 8px 14px; }
}

/* === 90101 final tune === */

/* Social proof — "Gerçek işletmede aktif kullanımda" tag stili */
.pvl-sp-fact-tag {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.4);
  color: #4ADE80;
  font-weight: 700;
  font-size: 13px !important;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .2px;
}
.pvl-sp-fact-tag i { color: #22C55E; }

/* Pricing INTEGRATION badge — daha uzun copy için kısaltıp düzgün konumla */
.pvl-int-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #FF1F4F; color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: .3px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .pvl-int-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }
}

/* Pricing CORE badge — daha uzun copy için */
.pvl-core-badge {
  white-space: normal;
  text-align: center;
  font-size: 11px;
  padding: 8px 16px;
  max-width: 90%;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .pvl-core-badge { font-size: 10px; max-width: 95%; }
}

/* Hero headline 2 satırlık problem-driven copy için boyut ayarı */
@media (min-width: 1025px) {
  .pvl-pre-headline { font-size: 48px; }   /* 56→48: 2 cümle daha rahat sığsın */
}

/* ================================================================
   90102 — Hero edge-to-edge + Problem Strip + Solution icons
   (2026-05-03 sweep)
   ================================================================ */

/* HERO — flush dashboard, no card/glow/rotate */
.pvl-hero-visual-flush {
  position: relative;
  display: block;
  min-height: auto;
  padding: 0;
  overflow: visible;
}
.pvl-hero-product-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;       /* aktif siparişler üstte kalsın */
  border-radius: 16px;
  filter: contrast(1.04) saturate(1.05);
  background: #0F172A;
  /* No box-shadow, no border, no rotate, no scale */
}
@media (max-width: 1024px) {
  .pvl-hero-product-img { min-height: 360px; }
}
@media (max-width: 720px) {
  .pvl-hero-product-img { min-height: auto; border-radius: 12px; }
  .pvl-hero-visual-flush { margin-top: 24px; }
}

/* HERO — yeni headline + subtext-2 */
.pvl-pre-headline { font-size: 52px; line-height: 1.05; letter-spacing: -.6px; }
.pvl-pre-headline .hl { color: var(--yellow); }
.pvl-pre-subtext {
  font-size: 19px;
  color: #E5E7EB;
  line-height: 1.5;
  max-width: 580px;
}
.pvl-pre-subtext-2 {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  margin-top: 8px;
  padding: 12px 18px;
  background: rgba(255,213,0,.08);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  max-width: 560px;
}
.pvl-pre-subtext-2 strong { color: var(--yellow); font-weight: 800; }
.pvl-pre-subtext-2 .hl-soft { color: var(--yellow); font-weight: 700; }
@media (max-width: 1024px) { .pvl-pre-headline { font-size: 40px; } }
@media (max-width: 480px) {
  .pvl-pre-headline { font-size: 30px; }
  .pvl-pre-subtext { font-size: 16px; }
  .pvl-pre-subtext-2 { font-size: 15px; padding: 10px 14px; }
}
@media (max-width: 360px) {
  .pvl-pre-headline { font-size: 24px; }
}

/* PROBLEM STRIP (hero altı, eski painstrip yerine) */
.pvl-problem-strip {
  background: linear-gradient(180deg, #0A0A0A 0%, #1A0A0A 100%);
  padding: 56px 0 60px;
  border-top: 1px solid rgba(255,31,79,.12);
  border-bottom: 1px solid rgba(255,213,0,.1);
}
.pvl-problem-head { text-align: center; margin-bottom: 30px; }
.pvl-problem-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -.3px;
}
.pvl-problem-title i {
  color: #FF1F4F;
  margin-right: 10px;
  font-size: 22px;
}
.pvl-problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pvl-problem-list li {
  position: relative;
  background: rgba(255,31,79,.06);
  border: 1px solid rgba(255,31,79,.18);
  border-radius: 14px;
  padding: 22px 20px 22px 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s ease, background .2s ease;
}
.pvl-problem-list li:hover {
  border-color: rgba(255,31,79,.4);
  background: rgba(255,31,79,.1);
}
.pvl-problem-list .num {
  position: absolute;
  top: 16px; left: 18px;
  font-size: 11px;
  font-weight: 800;
  color: #FF1F4F;
  letter-spacing: 1.5px;
}
.pvl-problem-list .ico {
  width: 36px; height: 36px;
  background: rgba(255,31,79,.18);
  color: #FF1F4F;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-top: 14px;
}
.pvl-problem-list .txt {
  color: #E5E7EB;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.pvl-problem-footer {
  text-align: center;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  padding: 14px 22px;
  background: rgba(255,213,0,.1);
  border: 1px solid rgba(255,213,0,.32);
  border-radius: 12px;
  max-width: 580px;
  margin: 0 auto;
}
.pvl-problem-footer i { color: #22C55E; margin-right: 8px; }
.pvl-problem-footer strong { color: var(--yellow); }
@media (max-width: 900px) {
  .pvl-problem-list { grid-template-columns: repeat(2, 1fr); }
  .pvl-problem-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .pvl-problem-list { grid-template-columns: 1fr; }
  .pvl-problem-strip { padding: 40px 0 44px; }
}

/* SOLUTIONS — large icon (image kaldırıldı) */
.pvl-solution {
  text-align: left;
  padding: 28px 24px;
}
.pvl-solution-icon-xl {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,213,0,.18) 0%, rgba(255,213,0,.06) 100%);
  border: 1px solid rgba(255,213,0,.28);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 28px;
  margin-bottom: 16px;
  transition: transform .25s ease, border-color .25s ease;
}
.pvl-solution:hover .pvl-solution-icon-xl {
  transform: translateY(-2px) scale(1.04);
  border-color: var(--yellow);
}

/* PLATFORM BADGES — büyütme + spacing */
.pvl-pre-chips { gap: 10px !important; }
.pvl-pre-chips .chip {
  font-size: 14px !important;
  font-weight: 700;
  padding: 8px 14px !important;
  letter-spacing: .2px;
}
.pvl-trust-row {
  gap: 16px !important;
}
.pvl-trust-row .item {
  font-size: 16px !important;
  font-weight: 700;
  padding: 6px 14px !important;
}
.pvl-int-platform-row { gap: 10px !important; }
.pvl-int-platform-row .badge {
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
}
.pvl-int-platforms { gap: 8px !important; }
.pvl-int-platforms span {
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 7px 12px !important;
}

/* Mid-CTA new copy stress */
.pvl-midcta h2 .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(255,31,79,.6);
  text-decoration-thickness: 3px;
  color: #94A3B8;
}
.pvl-midcta h2 .hl { color: var(--yellow); }

/* ================================================================
   90103 — Platform band, How-it-works, Solution mini-UI, punchline
   (2026-05-03 sweep)
   ================================================================ */

/* Platform band — hero altı, 56px logos */
.pvl-platform-band {
  padding: 36px 0 28px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255,255,255,.02) 100%);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pvl-platform-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.pvl-platform-logos {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pvl-platform {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.pvl-platform:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.pvl-platform-ys     { background: linear-gradient(135deg, #FF1F4F 0%, #E0193F 100%); }
.pvl-platform-getir  { background: linear-gradient(135deg, #5D3EBC 0%, #4A30A0 100%); }
.pvl-platform-ty     { background: linear-gradient(135deg, #F27A1A 0%, #D86510 100%); }
.pvl-platform-migros { background: linear-gradient(135deg, #FF6900 0%, #E85800 100%); }
@media (max-width: 720px) {
  .pvl-platform-logos { gap: 14px; }
  .pvl-platform { height: 48px; font-size: 18px; padding: 0 22px; }
}
@media (max-width: 480px) {
  .pvl-platform { height: 42px; font-size: 15px; padding: 0 16px; }
}

/* Problem strip punchline (italic, low opacity) */
.pvl-problem-punchline {
  text-align: center;
  margin: 22px auto 0;
  max-width: 580px;
  font-size: 15px;
  color: rgba(229,231,235,.55);
  font-style: italic;
  letter-spacing: .2px;
}
.pvl-problem-punchline em {
  color: rgba(229,231,235,.75);
  font-weight: 500;
}

/* Nasıl çalışır — 3-step (90103) */
.pvl-howit-section { padding: 80px 0; }
.pvl-howit-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.pvl-howit-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,213,0,.18);
  border-radius: 18px;
  padding: 30px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pvl-howit-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--yellow);
  color: #0A0A0A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 800;
  border: 4px solid var(--bg);
}
.pvl-howit-ico {
  width: 56px; height: 56px;
  margin: 8px auto 4px;
  background: rgba(255,213,0,.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 24px;
}
.pvl-howit-step h3 { font-size: 17px; font-weight: 700; margin: 6px 0 4px; color: #fff; }
.pvl-howit-step p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.pvl-howit-arrow {
  align-self: center;
  color: var(--yellow);
  font-size: 20px;
  opacity: .5;
}
@media (max-width: 900px) {
  .pvl-howit-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pvl-howit-arrow { transform: rotate(90deg); }
}

/* SOLUTION mini-UI mockups (90103) */
.pvl-solution { position: relative; overflow: hidden; }
.pvl-mini-ui {
  display: block;
  height: 130px;
  margin: 0 -24px 18px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border-bottom: 1px solid rgba(255,213,0,.12);
  position: relative;
  overflow: hidden;
}
.pvl-mini-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: .2px;
}
.pvl-mini-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pvlSpPulse 1.8s ease-out infinite;
}
.pvl-mini-title { color: #E5E7EB; }
.pvl-mini-badge {
  margin-left: auto;
  background: var(--yellow);
  color: #0A0A0A;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 10px;
}

/* POS rows */
.pvl-mini-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 8px;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  font-size: 11px;
  color: #B8C0CC;
  margin-bottom: 4px;
}
.pvl-mini-row-active {
  background: rgba(255,213,0,.12);
  border: 1px solid rgba(255,213,0,.28);
  color: #fff;
  font-weight: 600;
}
.pvl-mini-pf {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.pvl-mini-pf.pf-ys     { background: #FF1F4F; }
.pvl-mini-pf.pf-getir  { background: #5D3EBC; }
.pvl-mini-pf.pf-ty     { background: #F27A1A; }
.pvl-mini-pf.pf-migros { background: #FF6900; }

/* Kiosk grid */
.pvl-mini-kiosk { padding-top: 14px; }
.pvl-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.pvl-mini-tile {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  font-size: 9px;
  color: #B8C0CC;
}
.pvl-mini-tile i { color: var(--yellow); font-size: 14px; }
.pvl-mini-tile-active {
  background: rgba(255,213,0,.16);
  border-color: var(--yellow);
  color: #fff;
}

/* Online stats + bars */
.pvl-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.pvl-mini-stat {
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  padding: 4px 6px;
  text-align: center;
}
.pvl-mini-stat .lbl {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 4px;
  color: #fff;
  font-size: 9px; font-weight: 800;
  line-height: 18px;
  margin-bottom: 2px;
}
.pvl-mini-stat .lbl.pf-ys     { background: #FF1F4F; }
.pvl-mini-stat .lbl.pf-getir  { background: #5D3EBC; }
.pvl-mini-stat .lbl.pf-ty     { background: #F27A1A; }
.pvl-mini-stat .lbl.pf-migros { background: #FF6900; }
.pvl-mini-stat strong {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}
.pvl-mini-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 24px;
}
.pvl-mini-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--yellow) 0%, rgba(255,213,0,.4) 100%);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

/* QR phone */
.pvl-mini-qr { display: flex; align-items: center; justify-content: center; padding: 6px; }
.pvl-mini-phone {
  width: 88px;
  height: 118px;
  background: #0A0A0A;
  border: 2px solid #2A2A2A;
  border-radius: 14px;
  padding: 4px;
  position: relative;
}
.pvl-mini-phone-notch {
  width: 26px; height: 4px;
  background: #2A2A2A;
  border-radius: 0 0 4px 4px;
  margin: 0 auto 3px;
}
.pvl-mini-phone-screen {
  background: #fff;
  border-radius: 8px;
  padding: 4px 5px;
  height: calc(100% - 7px);
  overflow: hidden;
}
.pvl-mini-phone-head {
  font-size: 7px;
  font-weight: 800;
  color: #0A0A0A;
  text-align: center;
  padding-bottom: 3px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 3px;
}
.pvl-mini-phone-row {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  padding: 2px 3px;
  margin-bottom: 1px;
  border-radius: 3px;
  color: #1A1A1A;
}
.pvl-mini-phone-row .price { color: #5D3EBC; font-weight: 700; }
.pvl-mini-phone-row-active {
  background: rgba(255,213,0,.18);
  font-weight: 600;
}
.pvl-mini-phone-cta {
  background: var(--yellow);
  color: #0A0A0A;
  font-size: 7px;
  font-weight: 800;
  text-align: center;
  padding: 3px;
  border-radius: 4px;
  margin-top: 3px;
}

/* Hover effect on solution cards */
.pvl-solution:hover .pvl-mini-ui {
  background: linear-gradient(135deg, #1F1F1F 0%, #141414 100%);
}

/* ================================================================
   90104 — Proof block + Pricing toggle note + Yıllık formülü copy
   (2026-05-03 — toggle bug fix + 10×aylık DB sync)
   ================================================================ */

/* PROOF BLOCK — gerçek kullanım kanıtı, hero altı */
.pvl-proof-block {
  padding: 30px 0 18px;
  background: var(--bg);
}
.pvl-proof-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 1px solid rgba(255,213,0,.28);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 4px rgba(255,213,0,.04);
}
.pvl-proof-pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pvlSpPulse 1.6s ease-out infinite;
}
.pvl-proof-content { flex: 1; }
.pvl-proof-headline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.pvl-proof-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 4px 14px rgba(255,213,0,.3);
}
.pvl-proof-text {
  font-size: 17px;
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
}
.pvl-proof-text strong { color: var(--yellow); font-weight: 800; }
.pvl-proof-highlight {
  background: rgba(255,213,0,.16);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  color: #fff;
}
.pvl-proof-sub {
  font-size: 13px;
  color: #B8C0CC;
  font-weight: 600;
  letter-spacing: .2px;
}
.pvl-proof-sub i { color: #22C55E; margin-right: 6px; }

@media (max-width: 720px) {
  .pvl-proof-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
  .pvl-proof-num { font-size: 32px; }
  .pvl-proof-text { font-size: 15px; }
}
@media (max-width: 480px) {
  .pvl-proof-headline { gap: 10px; }
  .pvl-proof-num { font-size: 28px; }
}

/* PRICING toggle note — yeşil aydınlatıcı satır */
.pvl-toggle-note {
  margin: 14px auto 0;
  max-width: 720px;
  padding: 12px 18px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.24);
  border-radius: 10px;
  font-size: 13px;
  color: #CBD5E1;
  text-align: center;
  line-height: 1.5;
}
.pvl-toggle-note i {
  color: #22C55E;
  margin-right: 6px;
}
@media (max-width: 480px) {
  .pvl-toggle-note { font-size: 12px; padding: 10px 14px; }
}

/* ================================================================
   90501-90504 + A/B — Proof block, POS animation, CTA reinforce,
   yıllık effective price (2026-05-03)
   ================================================================ */

/* 90501 — Proof block segments line */
.pvl-proof-segments {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: .15px;
}

/* 90502 — POS mini-UI micro animations */
.pvl-mini-dot-blink {
  background: #22C55E;
  animation: pvBlink 1.2s ease-in-out infinite;
}
@keyframes pvBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.7); opacity: 1; }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0); opacity: .65; }
}

.pvl-mini-badge-tick {
  animation: pvBadgeTick 3.6s ease-in-out infinite;
}
@keyframes pvBadgeTick {
  0%, 92%, 100% { transform: scale(1); }
  94%           { transform: scale(1.18); }
  96%           { transform: scale(.96); }
}

.pvl-mini-row-fade {
  animation: pvRowFadeIn .6s ease-out both;
}
@keyframes pvRowFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pvl-mini-row-pulse {
  animation: pvRowPulse 1.8s ease-in-out infinite, pvRowFadeIn .6s ease-out both;
  animation-delay: 1.2s, 0s;
  position: relative;
}
@keyframes pvRowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,213,0,.45); border-color: rgba(255,213,0,.28); }
  50%      { box-shadow: 0 0 0 6px rgba(255,213,0,0);   border-color: rgba(255,213,0,.55); }
}

.pvl-mini-status {
  margin-left: auto;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.pvl-mini-status-prep {
  background: rgba(148,163,184,.18);
  color: #B8C0CC;
}
.pvl-mini-status-new {
  background: var(--yellow);
  color: #0A0A0A;
  animation: pvStatusBlink 1s ease-in-out infinite;
}
@keyframes pvStatusBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}

/* 90503 — CTA reinforcement microline */
.pvl-cta-reinforce {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 999px;
  color: #4ADE80;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15px;
}
.pvl-cta-reinforce i {
  color: #22C55E;
  font-size: 11px;
  animation: pvBlink 1.6s ease-in-out infinite;
}

/* 90504 — Yıllık efektif aylık fiyat */
.pvl-price-effective {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.pvl-price-effective s {
  color: rgba(148,163,184,.55);
  margin-right: 4px;
}
.pvl-price-effective strong {
  color: var(--yellow);
  font-weight: 800;
}
.pvl-addon-effective {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

/* ================================================================
   RED HYGIENE AUDIT (2026-05-03 — UX color psychology fix)
   - Brand'i kırmızı'dan kurtar
   - .r sadece "kaos/problem/önce" gibi semantik problem işaretleri için
   - .r tonu sertten softa: #E11D48 → #FF3B3B
   - Pricing INTEGRATION "EN ÇOK TERCİH" badge: red CTA-rakibi → dark gold
   ================================================================ */

/* Headline span .r — softer red, sadece "problem" anlamı taşıyan kelimeler */
.pvl-section-head h2 .r,
.pvl-pre-headline .r,
h2 .r {
  color: #FF3B3B;          /* eski #E11D48'den daha soft */
}

/* Pricing INTEGRATION badge — kırmızı CTA rakibinden dark gold outline'a */
.pvl-int-badge {
  background: #1A1A1A !important;
  color: var(--yellow) !important;
  border: 1px solid rgba(255,213,0,.5);
  font-size: 10px !important;
  letter-spacing: .4px;
}

/* Hero subtext-2 PaketVale brand — kesin sarı, kırmızı değil */
.pvl-pre-subtext-2 strong {
  color: var(--yellow) !important;
}

/* Compare BAD tag — brand kırılmasın diye */
.pvl-compare-tag.bad strong,
.pvl-compare-list.bad strong {
  color: #fff !important;        /* eski varsayılan beyaz, doğrulama */
}

/* Compare GOOD tag içindeki "PaketVale" — sarı, kırmızı yasak */
.pvl-compare-tag.good {
  color: var(--yellow);
}

/* Trust band yeni güçlü headline */
.pvl-trust-band-copy h2 .y { color: var(--yellow); }

/* ================================================================
   HERO HIERARCHY FIX (2026-05-03)
   - Sağ visual dominanttı, sola ağırlık verildi
   - Grid: 0.95/1.05 → 1.1/0.9 (sol +)
   - Visual max-width 520px, geri çekildi (opacity/filter)
   - Subtle yellow glow brand unity için
   - align-self center, hizalama düzeldi
   - Mobil breakpoint korunur (zaten 720/480 stack vardı)
   ================================================================ */

@media (min-width: 901px) {
  .pvl-hero-premium-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .pvl-hero-premium .pvl-hero-copy {
    align-self: center;
    max-width: 640px;
  }

  /* Right visual — küçült + geri çek */
  .pvl-hero-visual,
  .pvl-hero-visual-flush {
    align-self: center;
    max-width: 520px;
    margin-left: auto;
    position: relative;
    transform: translateY(8px);
  }

  /* Subtle yellow glow — brand unity */
  .pvl-hero-visual-flush::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(255,213,0,0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
  }

  /* Image: dim 8% — görsel dominanssızlaştır */
  .pvl-hero-product-img {
    max-width: 100%;
    min-height: auto;            /* eski 420px zorunlu yüksekliği kaldır */
    opacity: 0.94;
    filter: contrast(0.97) brightness(0.96) saturate(1.02);
    transition: opacity .25s ease, filter .25s ease;
  }
  .pvl-hero-premium:hover .pvl-hero-product-img {
    opacity: 1;
    filter: contrast(1.04) brightness(1) saturate(1.05);
  }

  /* Headline — hierarchy lead */
  .pvl-pre-headline {
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -.6px;
  }

  /* CTA — yukarı çekildi (sol blok dengelensin) */
  .pvl-hero-copy .pvl-cta-row {
    margin-top: 22px;
  }

  /* Reinforce + trust line gap'i sıkılaştır */
  .pvl-hero-copy .pvl-cta-reinforce {
    margin-top: 10px;
  }
  .pvl-hero-copy .pvl-pre-trust {
    margin-top: 18px;
  }
}

/* Mobil korunur — eski stack davranışı (720/480) bozulmasın */
@media (max-width: 900px) {
  .pvl-hero-visual-flush::before { display: none; }
  .pvl-hero-product-img { opacity: 1; filter: none; }
}

/* ================================================================
   90601 — HERO REBUILD (2026-05-03)
   - Sağ visual ana sahne (thumbnail değil): width:min(720px, 100%), 16:10 frame
   - Grid: 0.9fr / 1.1fr (sağ + ana hero)
   - Warm cafe glow + soft yellow back-glow brand unity
   - Platform chips hero içine geri taşındı, daha görünür
   - PaketVale brand SADECE white+yellow accent
   - Eski thumbnail davranışı (520px max) override edildi
   ================================================================ */

.pvl-hero-rebuild {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Warm cafe atmosphere — global hero arka plan glow (sağ üst sıcak amber) */
.pvl-hero-bg-warm {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 85% 35%, rgba(255,180,80,0.06), transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 70%, rgba(255,213,0,0.03), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pvl-hero-rebuild .pvl-hero-premium-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  padding: 80px 32px 80px;
  min-height: calc(100vh - 80px);
  min-height: 720px;
}

/* Mobile + tablet: stack */
@media (max-width: 900px) {
  .pvl-hero-rebuild .pvl-hero-premium-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 22px 56px;
    gap: 32px;
  }
}

/* Desktop hierarchy: sağ visual = ana sahne */
@media (min-width: 901px) {
  .pvl-hero-rebuild .pvl-hero-premium-inner {
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 56px;
    align-items: center;
  }

  .pvl-hero-rebuild .pvl-hero-copy {
    align-self: center;
    max-width: 540px;
  }

  /* === STAGE — ana hero visual === */
  .pvl-hero-stage {
    position: relative;
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .pvl-hero-stage-frame {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
    background: #0F172A;
    box-shadow:
      0 30px 80px rgba(0,0,0,.55),
      0 0 0 1px rgba(255,213,0,.2);
  }
  .pvl-hero-rebuild .pvl-hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;     /* aktif siparişler üstte */
    display: block;
    opacity: 1;
    filter: contrast(1.02) saturate(1.04);
    transition: filter .4s ease;
    min-height: auto;
    max-height: 100%;
  }

  /* Subtle warm yellow back-glow — brand unity, abartısız */
  .pvl-hero-stage-glow {
    position: absolute;
    z-index: 1;
    inset: -40px;
    background: radial-gradient(circle at 50% 45%, rgba(255,213,0,.08) 0%, rgba(255,180,80,.04) 35%, transparent 65%);
    pointer-events: none;
    filter: blur(8px);
  }

  /* Override eski hero hierarchy fix kuralları (520px küçültme zorlaması) */
  .pvl-hero-rebuild .pvl-hero-visual,
  .pvl-hero-rebuild .pvl-hero-visual-flush { max-width: none !important; }
  .pvl-hero-rebuild .pvl-hero-visual-flush::before { display: none !important; }
}

/* Mobile stage: kart aspect korunsun ama glow off */
@media (max-width: 900px) {
  .pvl-hero-stage-frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: #0F172A;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
  }
  .pvl-hero-rebuild .pvl-hero-product-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .pvl-hero-stage-glow { display: none; }
}

/* === LEFT COPY tipografi rebuild === */
.pvl-hero-rebuild .pvl-pre-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,213,0,.12);
  border: 1px solid rgba(255,213,0,.32);
  color: var(--yellow);
  font-size: 13px; font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: .2px;
}
.pvl-hero-rebuild .pvl-pre-headline {
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -.6px;
  margin: 0 0 18px;
  font-weight: 800;
  color: #fff;
}
.pvl-hero-rebuild .pvl-pre-headline .hl { color: var(--yellow); }
.pvl-hero-rebuild .pvl-pre-subtext {
  font-size: 19px;
  color: #E5E7EB;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 0 14px;
}
.pvl-hero-rebuild .pvl-pre-subtext strong { color: #fff; font-weight: 700; }

/* PaketVale brand — KESİN beyaz, kırmızı YASAK */
.pvl-brand-mark {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: -.3px;
  background: linear-gradient(180deg, #fff 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pvl-hero-rebuild .pvl-pre-subtext-2 {
  font-size: 16px;
  color: #E5E7EB;
  line-height: 1.5;
  margin: 6px 0 18px;
  padding: 11px 16px;
  background: rgba(255,213,0,.06);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  max-width: 520px;
}
.pvl-hero-rebuild .pvl-pre-subtext-2 .hl-soft { color: var(--yellow); font-weight: 700; }

/* Hero platform chips — daha görünür (eski 12-14px → 14-15px + spacing) */
.pvl-hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pvl-hero-chip {
  display: inline-flex; align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .15px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.pvl-hero-chip:hover { transform: translateY(-1px); }
.pvl-hero-chip-ys     { background: linear-gradient(135deg, #FF1F4F 0%, #E0193F 100%); }
.pvl-hero-chip-getir  { background: linear-gradient(135deg, #5D3EBC 0%, #4A30A0 100%); }
.pvl-hero-chip-ty     { background: linear-gradient(135deg, #F27A1A 0%, #D86510 100%); }
.pvl-hero-chip-migros { background: linear-gradient(135deg, #FF6900 0%, #E85800 100%); }

/* CTA spacing kalibre */
.pvl-hero-rebuild .pvl-cta-row {
  margin-top: 4px;
  gap: 12px;
}
.pvl-hero-rebuild .pvl-cta-reinforce {
  margin-top: 12px;
  font-size: 13px;
}
.pvl-hero-rebuild .pvl-pre-trust {
  display: flex; gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pvl-hero-rebuild .pvl-pre-trust span { font-size: 14px; color: var(--muted); }
.pvl-hero-rebuild .pvl-pre-trust i { color: #16A34A; margin-right: 4px; }

/* Headline responsive */
@media (max-width: 1280px) { .pvl-hero-rebuild .pvl-pre-headline { font-size: 44px; } }
@media (max-width: 1024px) { .pvl-hero-rebuild .pvl-pre-headline { font-size: 38px; } }
@media (max-width: 480px)  { .pvl-hero-rebuild .pvl-pre-headline { font-size: 28px; } }
@media (max-width: 360px)  { .pvl-hero-rebuild .pvl-pre-headline { font-size: 24px; } }

/* Mobil chips küçülsün ama görünür kalsın */
@media (max-width: 480px) {
  .pvl-hero-chip { height: 30px; padding: 0 12px; font-size: 12px; }
  .pvl-hero-chips { gap: 8px; }
}

/* ================================================================
   90602 — Hero TENSION + LIVE OVERLAY (2026-05-03)
   - Mikro gerilim satırı (eyebrow ile H1 arası, gri italic)
   - Sağ visual yaşayan: badge pulse + status feed rotation
   - Variant A daha sert (3 satır: kaçırıyorsun → çünkü farklı panelde → PaketVale ile tek)
   ================================================================ */

/* Mikro gerilim — eyebrow altı, H1 üstü */
.pvl-hero-tension {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 6px 0 14px;
  padding: 5px 12px;
  background: rgba(255,31,79,.06);
  border-left: 2px solid rgba(255,31,79,.45);
  border-radius: 3px;
  color: rgba(229,231,235,.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15px;
  font-style: normal;
}
.pvl-hero-tension em {
  font-style: italic;
  color: #FF6B6B;
  font-weight: 700;
  letter-spacing: .3px;
  margin-left: 2px;
}
.pvl-tension-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF1F4F;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,31,79,.55);
  animation: pvTensionBlink 1.4s ease-in-out infinite;
}
@keyframes pvTensionBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,31,79,.55); opacity: 1; }
  50%      { box-shadow: 0 0 0 8px rgba(255,31,79,0); opacity: .55; }
}

/* === LIVE OVERLAYS — yaşayan UI === */

/* Stage frame relative pozisyon ortağı */
.pvl-hero-stage-frame { position: relative; }

/* Live badge — sağ üst */
.pvl-hero-live-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34,197,94,.45);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25px;
  animation: pvBadgeIn .6s ease-out .3s both;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.pvl-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pvLiveDot 1.5s ease-in-out infinite;
}
@keyframes pvLiveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50%      { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
}
@keyframes pvBadgeIn {
  from { opacity: 0; transform: translateY(-8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Live feed — sağ alt status row rotation */
.pvl-hero-live-feed {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 5;
  width: calc(min(280px, 60%));
  height: 36px;
  pointer-events: none;
}
.pvl-live-row {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,213,0,.32);
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  opacity: 0;
  animation: pvFeedRotate 9s ease-in-out infinite;
}
.pvl-live-row-1 { animation-delay: 0s; }
.pvl-live-row-2 { animation-delay: 3s; }
.pvl-live-row-3 { animation-delay: 6s; }

@keyframes pvFeedRotate {
  0%   { opacity: 0; transform: translateY(8px); }
  4%   { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  34%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

.pvl-live-pf {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.pvl-live-pf.pf-ys     { background: #FF1F4F; }
.pvl-live-pf.pf-getir  { background: #5D3EBC; }
.pvl-live-pf.pf-ty     { background: #F27A1A; }
.pvl-live-name {
  color: #E5E7EB;
  font-size: 12px;
  font-weight: 600;
}
.pvl-live-row i {
  color: rgba(229,231,235,.45);
  font-size: 10px;
}
.pvl-live-status {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.pvl-live-status-prep {
  background: rgba(148,163,184,.22);
  color: #B8C0CC;
}
.pvl-live-status-new {
  background: var(--yellow);
  color: #0A0A0A;
}

/* Mobil — overlay'ler küçülsün, korunsun */
@media (max-width: 720px) {
  .pvl-hero-live-badge {
    top: 8px; right: 8px;
    padding: 5px 10px;
    font-size: 10px;
  }
  .pvl-hero-live-feed {
    bottom: 8px; left: 8px;
    width: calc(min(220px, 70%));
    height: 30px;
  }
  .pvl-live-row { padding: 6px 10px; font-size: 10px; gap: 6px; }
  .pvl-live-pf { width: 18px; height: 18px; font-size: 9px; }
  .pvl-live-name { font-size: 10px; }
  .pvl-live-status { font-size: 9px; padding: 2px 6px; }
}
@media (max-width: 480px) {
  .pvl-hero-tension { font-size: 12px; padding: 4px 10px; }
}

/* Variant A — yeni sertleştirilmiş 3-satır yapısı için ek spacing */
.pvl-hero-rebuild .pvl-pre-headline[data-ab="A"] {
  font-size: 56px;
  line-height: 1.05;
}
@media (max-width: 1280px) {
  .pvl-hero-rebuild .pvl-pre-headline[data-ab="A"] { font-size: 48px; }
}
@media (max-width: 1024px) {
  .pvl-hero-rebuild .pvl-pre-headline[data-ab="A"] { font-size: 40px; }
}
@media (max-width: 480px) {
  .pvl-hero-rebuild .pvl-pre-headline[data-ab="A"] { font-size: 30px; }
}

/* ================================================================
   90603 — Hero MICRO POLISH (2026-05-03)
   - Tension satırı italic kaldır, weight 500, opacity .9 (giriş hook)
   - "Fark etmeden." slap satırı (H1 ikinci satır, daha küçük punch)
   - Sağ feed'e "Migros → Gecikti" problem satırı + snap animation
   - Animasyon easing varyasyonu (gerçek-POS gürültü hissi)
   - CTA precue "Canlı sistem · Anlık sipariş akışı" (gizli hamle)
   ================================================================ */

/* Tension satırı güçlendirme — italic OFF, weight UP, opacity UP */
.pvl-hero-tension {
  color: rgba(229,231,235,.92);
  font-weight: 500;
  font-style: normal;
  font-size: 13.5px;
  letter-spacing: .25px;
  background: rgba(255,31,79,.09);
  border-left-color: rgba(255,31,79,.55);
}
.pvl-hero-tension em {
  font-style: normal;          /* italic kaldırıldı */
  font-weight: 700;
  color: #FF3B3B;
  letter-spacing: .4px;
}

/* "Fark etmeden." slap satırı — H1 ikinci satır, daha küçük + farklı ton */
.pvl-headline-slap {
  display: inline-block;
  margin-top: 4px;
  font-size: .58em;            /* H1'in %58'i — açık kontrast */
  font-weight: 700;
  color: #FF3B3B;
  letter-spacing: -.2px;
  opacity: 0;
  animation: pvSlap .55s cubic-bezier(.34,1.56,.64,1) .25s both;
  transform-origin: left center;
}
@keyframes pvSlap {
  0%   { opacity: 0; transform: translateX(-12px) scale(.92); }
  60%  { opacity: 1; transform: translateX(0) scale(1.04); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Live feed — 4 satır rotation, biri snap-jump (problem satırı) */
.pvl-hero-live-feed {
  /* eski 3 satır config korunur, sadece animation re-tune */
}
.pvl-live-row {
  /* base: 12s döngü, 4 satır eşit dağılım */
  animation: pvFeedRotate 12s ease-in-out infinite;
}
.pvl-live-row-1 { animation-delay: 0s;  }
.pvl-live-row-2 { animation-delay: 3s;  animation-timing-function: cubic-bezier(.65,0,.35,1); }
.pvl-live-row-3 { animation-delay: 6s;  animation-timing-function: steps(2, end); }   /* SNAP — gerçek-POS gürültüsü */
.pvl-live-row-4 { animation-delay: 9s;  animation-timing-function: ease-out; }

/* Snap-jump için problem row farklı keyframe da kullanabilir */
.pvl-live-row-problem {
  animation: pvFeedSnap 12s steps(8, end) infinite;
  animation-delay: 6s;
  border-color: rgba(255,31,79,.5) !important;
  background: rgba(40, 10, 14, .85) !important;
}
@keyframes pvFeedSnap {
  0%   { opacity: 0; transform: translateY(6px); }
  3%   { opacity: 1; transform: translateY(0); }                /* anlık jump */
  3.5% { opacity: 1; transform: translateY(-2px); }             /* hafif kıpırtı */
  4%   { opacity: 1; transform: translateY(0); }
  25%  { opacity: 1; transform: translateY(0); }
  28%  { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(-6px); }
}

/* "Gecikti" status — kırmızı, dikkat çek */
.pvl-live-status-late {
  background: rgba(255,31,79,.22) !important;
  color: #FF6B6B !important;
}
.pvl-live-pf.pf-migros { background: #FF6900; }

/* CTA precue — gizli hamle, sol mikro satır */
.pvl-cta-precue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(229,231,235,.65);
  letter-spacing: .25px;
}
.pvl-cta-precue strong {
  color: var(--yellow);
  font-weight: 700;
}
.pvl-precue-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pvLiveDot 1.5s ease-in-out infinite;
}

/* A variant slap — küçük ekranda da okunaklı */
@media (max-width: 480px) {
  .pvl-headline-slap { font-size: .65em; }
  .pvl-cta-precue { font-size: 11px; }
}

/* ================================================================
   90701 — HERO CLEAN REBUILD (2026-05-03)
   Tüm eski patch'leri override eder. Yeni unified hero, tek block.
   ================================================================ */

/* Brand mark — Paket beyaz, Vale sarı (logo uyumu, kırmızı yasak) */
.pvl-brand {
  display: inline;
  font-weight: 800;
  letter-spacing: -.3px;
  white-space: nowrap;
}
.pvl-brand-paket { color: #FFFFFF; }
.pvl-brand-vale  { color: var(--yellow); }
/* Eski .pvl-brand-mark gradient'i — geri çekildi */
.pvl-brand-mark { background: none !important; -webkit-text-fill-color: initial !important; color: #fff !important; }

/* === HERO CLEAN === */
.pvl-hero-clean {
  position: relative;
  background: #0A0A0A;
  overflow: hidden;
  isolation: isolate;
}
.pvl-hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% 35%, rgba(255,180,80,.05), transparent 60%),
    radial-gradient(600px 400px at 25% 75%, rgba(255,213,0,.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pvl-hero-clean-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px 32px 56px;
  min-height: calc(100vh - 80px);
  min-height: 760px;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 56px;
  align-items: center;
}

/* LEFT COPY */
.pvl-hero-clean-copy { align-self: center; max-width: 540px; }
.pvl-hc-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,213,0,.10);
  border: 1px solid rgba(255,213,0,.28);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .25px;
  margin-bottom: 22px;
}
.pvl-hc-h1 {
  margin: 0 0 18px;
  display: block;
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.08;
  color: #fff;
  font-size: 52px;
}
.pvl-hc-h1-l1, .pvl-hc-h1-l2 { display: block; }
.pvl-hc-h1-l1 { color: #fff; }
.pvl-hc-h1-l2 { color: #fff; }
.pvl-hc-h1 .pvl-y { color: var(--yellow); }
.pvl-hc-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 520px;
}
.pvl-hc-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.32);
  border-radius: 12px;
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.45;
  max-width: 520px;
}
.pvl-hc-proof strong { color: #fff; font-weight: 700; }
.pvl-hc-proof-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: pvLiveDot 1.6s ease-in-out infinite;
}
.pvl-hc-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pvl-hc-trust {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.pvl-hc-trust i { color: #22C55E; margin-right: 5px; font-size: 11px; }
.pvl-hc-trust-sep { color: rgba(255,255,255,.18); }

/* RIGHT VISUAL — ürün sahnesi */
.pvl-hero-clean-visual {
  position: relative;
  align-self: center;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pvl-hc-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #0F172A;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,213,0,.18);
}
.pvl-hc-stage::after {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 45%, rgba(255,213,0,.07), transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}
.pvl-hc-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(1.04);
}

/* Yeşil "Yeni sipariş geldi" badge */
.pvl-hc-badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(34,197,94,.45);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  animation: pvBadgeIn .6s ease-out .25s both;
}
.pvl-hc-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pvLiveDot 1.5s ease-in-out infinite;
}

/* 3 satır feed — sağ alt */
.pvl-hc-feed {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: calc(min(280px, 60%));
}
.pvl-hc-feed-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #E5E7EB;
  opacity: 0;
  animation: pvFeedRowIn .5s ease-out forwards;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.pvl-hc-feed-row:nth-child(1) { animation-delay: .5s; }
.pvl-hc-feed-row:nth-child(2) { animation-delay: .9s; }
.pvl-hc-feed-row:nth-child(3) { animation-delay: 1.3s; }
@keyframes pvFeedRowIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.pvl-hc-feed-pf {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.pvl-hc-feed-pf.pf-ys     { background: #FF1F4F; }
.pvl-hc-feed-pf.pf-getir  { background: #5D3EBC; }
.pvl-hc-feed-pf.pf-ty     { background: #F27A1A; }
.pvl-hc-feed-name { color: #fff; font-weight: 700; }
.pvl-hc-feed-arrow { color: rgba(255,255,255,.4); font-size: 11px; }
.pvl-hc-feed-status {
  margin-left: auto;
  padding: 2px 7px;
  background: rgba(148,163,184,.18);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #B8C0CC;
  letter-spacing: .25px;
  text-transform: uppercase;
}
.pvl-hc-feed-status-new {
  background: var(--yellow);
  color: #0A0A0A;
}

/* Hero ALT STRIP — tek satır platform/feature */
.pvl-hero-strip {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 12px 0;
}
.pvl-hero-strip-inner {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .25px;
}
.pvl-hero-strip-inner span { white-space: nowrap; }
.pvl-strip-sep {
  color: rgba(255,255,255,.18);
  font-style: normal;
  font-weight: 400;
}

/* === RESPONSIVE === */
@media (max-width: 1280px) {
  .pvl-hc-h1 { font-size: 46px; }
  .pvl-hero-clean-inner { padding: 48px 28px; gap: 44px; }
}
@media (max-width: 1024px) {
  .pvl-hc-h1 { font-size: 40px; }
  .pvl-hero-clean-inner { grid-template-columns: 45% 55%; gap: 36px; }
}
@media (max-width: 900px) {
  .pvl-hero-clean-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 22px 48px;
    min-height: auto;
  }
  .pvl-hero-clean-visual { justify-content: center; }
  .pvl-hc-stage { max-width: 100%; }
  .pvl-hc-h1 { font-size: 38px; }
  .pvl-hc-sub { font-size: 16px; }
}
@media (max-width: 480px) {
  .pvl-hc-h1 { font-size: 32px; line-height: 1.12; }
  .pvl-hc-eyebrow { font-size: 12px; padding: 6px 12px; }
  .pvl-hc-proof { font-size: 13px; padding: 9px 14px; }
  .pvl-hc-trust { font-size: 12px; gap: 6px; }
  .pvl-hc-trust-sep { display: none; }
  .pvl-hc-cta { width: 100%; }
  .pvl-hc-cta .pvl-cta { flex: 1; justify-content: center; min-width: 140px; }
  .pvl-hc-badge { top: 10px; right: 10px; padding: 6px 10px; font-size: 10px; }
  .pvl-hc-feed { left: 10px; bottom: 10px; width: calc(min(220px, 75%)); }
  .pvl-hc-feed-row { padding: 5px 10px; font-size: 10px; }
  .pvl-hc-feed-pf { width: 16px; height: 16px; font-size: 9px; }
  .pvl-hero-strip-inner { font-size: 11px; gap: 8px; }
}
@media (max-width: 360px) {
  .pvl-hc-h1 { font-size: 28px; }
}

/* === ESKİ HERO PATCH'leri NÖTRALIZE (eski class'lar kullanılırsa) === */
.pvl-hero-rebuild,
.pvl-hero-tension,
.pvl-headline-slap,
.pvl-cta-precue,
.pvl-hero-chips,
.pvl-hero-bg-warm { /* artık index.php'de yok ama CSS'te güvenlik için */
  /* eski patch CSS'leri index.php'den temizlendi, bu kurallar harmsız */
}

/* ================================================================
   90702 — Hero SHARPENING (2026-05-03)
   - H1 altı targeting line (kim için olduğunu netleştir)
   - CTA altı friction killer (objection cevabı)
   ================================================================ */

/* Targeting line — H1'in hemen altı, sub'dan önce */
.pvl-hc-target {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 13px;
  background: rgba(255,213,0,.08);
  border-left: 2px solid var(--yellow);
  border-radius: 4px;
  color: rgba(229,231,235,.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .15px;
  line-height: 1.4;
}
.pvl-hc-target strong {
  color: var(--yellow);
  font-weight: 800;
}

/* Friction killer — CTA altı, çok küçük, gri */
.pvl-hc-friction {
  margin: 8px 0 14px;
  font-size: 12px;
  color: rgba(229,231,235,.55);
  letter-spacing: .2px;
  font-weight: 500;
}

/* Mobil ölçek */
@media (max-width: 480px) {
  .pvl-hc-target { font-size: 13px; padding: 5px 11px; }
  .pvl-hc-friction { font-size: 11px; }
}

/* ================================================================
   90801 — POSITIONING UPGRADE (2026-05-03)
   - Hero copy: "İşletmende para nereye gidiyor"
   - Problem: 5 kart + "ay sonunda fark eder" footer
   - Yeni Kontrol section: 4 kart (Satış / Stok / Personel / Kâr)
   - Yeni Para bloğu: kazanç/kayıp görünürlüğü
   - Modules: "fark yaratan" 4 kart (Kayıp/Kaçak, Canlı Kâr, vs)
   - Integrations: destek mesajı
   ================================================================ */

/* Hero — yeni positioning */
.pvl-hc-h1 .pvl-hc-h1-l1 { color: rgba(255,255,255,.92); font-weight: 700; }
.pvl-hc-h1 .pvl-hc-h1-l2 { color: #fff; font-weight: 800; }

.pvl-hc-leadline {
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  margin: -4px 0 14px;
  line-height: 1.4;
  max-width: 520px;
}
.pvl-hc-leadline strong { color: var(--yellow); font-weight: 800; }

.pvl-hc-micro {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(229,231,235,.55);
  letter-spacing: .25px;
}

/* Problem strip — 5 kart düzeni */
.pvl-problem-list-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}
@media (max-width: 1100px) {
  .pvl-problem-list-5 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 720px) {
  .pvl-problem-list-5 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .pvl-problem-list-5 { grid-template-columns: 1fr !important; }
}

.pvl-problem-title .r {
  color: #FF3B3B;
  font-weight: 800;
}

/* Kontrol section — Ana değer */
.pvl-control-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255,213,0,.02) 100%);
}
.pvl-control-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.pvl-control-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,213,0,.18);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease;
}
.pvl-control-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.pvl-control-ico {
  width: 56px; height: 56px;
  background: rgba(255,213,0,.14);
  color: var(--yellow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.pvl-control-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.pvl-control-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) { .pvl-control-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pvl-control-grid { grid-template-columns: 1fr; } }

/* Para bloğu — Kâr/Zarar */
.pvl-money-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(255,213,0,.03) 0%, var(--bg) 100%);
}
.pvl-money-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.pvl-money-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 12px 0 14px;
  color: #fff;
  font-weight: 800;
}
.pvl-money-content h2 .y { color: var(--yellow); }
.pvl-money-content h2 .r { color: #FF3B3B; }
.pvl-money-content p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.pvl-money-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pvl-money-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #E5E7EB;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.pvl-money-list li:last-child { border-bottom: 0; }
.pvl-money-list i { color: var(--yellow); margin-right: 10px; }
.pvl-money-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.pvl-money-visual img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .pvl-money-card { grid-template-columns: 1fr; gap: 28px; }
  .pvl-money-content h2 { font-size: 28px; }
}

/* Integrations — destek notu */
.pvl-int-support-note {
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(255,213,0,.06);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.pvl-int-support-note strong { color: #fff; font-weight: 700; }

/* ================================================================
   90901 — FAQ MOBILE SAFETY + SECTION FLOW LOCK (2026-05-03)
   - FAQ mobilde hero üstüne binmesin diye block-flow garantisi
   - Tüm <section> elementleri normal akışta, transform/escape engellendi
   - Mobile'da FAQ container width=100%, max-width sınırlı
   ================================================================ */
.pvl-hero-clean,
.pvl-hero-strip,
.pvl-section,
#sss,
#iletisim {
  position: relative;
  width: 100%;
  max-width: 100%;
  z-index: auto;
  float: none;
  clear: both;
}

#sss {
  display: block;
  contain: layout;
}
#sss .pvl-faq {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 4px;
}
/* FAQ default kapalı — sadece tıklayınca açılır */
.pvl-faq-a { max-height: 0; padding: 0 22px; overflow: hidden; }
.pvl-faq-item.open .pvl-faq-a { max-height: 600px; padding: 0 22px 18px; }

@media (max-width: 768px) {
  #sss { margin-top: 48px; padding: 56px 0 64px; }
  #sss .pvl-faq { padding: 0 12px; }
  .pvl-faq-q { font-size: 15px; padding: 16px 18px; line-height: 1.4; }
  .pvl-faq-a { font-size: 14px; padding: 0 18px; }
  .pvl-faq-item.open .pvl-faq-a { padding: 0 18px 16px; }
}
@media (max-width: 480px) {
  #sss { margin-top: 48px; padding: 48px 0 56px; }
  .pvl-faq-q { font-size: 14.5px; padding: 14px 16px; }
}

/* ================================================================
   90902 — FINAL FOOTER CTA — "Hâlâ kontrol sende değil mi?" (2026-05-03)
   ================================================================ */
.pvl-final-cta {
  position: relative;
  padding: 84px 0 88px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(255,213,0,.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #0A0A0A 100%);
  border-top: 1px solid rgba(255,213,0,.12);
  text-align: center;
  overflow: hidden;
}
.pvl-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,213,0,.025) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.pvl-final-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 22px;
}
.pvl-final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 28px;
}
.pvl-final-cta h2 .y { color: var(--yellow); }
.pvl-final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 38px;
  background: var(--yellow);
  color: #0A0A0A;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(255,213,0,.28), 0 0 0 1px rgba(255,213,0,.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pvl-final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(255,213,0,.36), 0 0 0 1px rgba(255,213,0,.55);
}
.pvl-final-cta-micro {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(229,231,235,.6);
  letter-spacing: .2px;
}
@media (max-width: 480px) {
  .pvl-final-cta { padding: 64px 0 68px; }
  .pvl-final-cta h2 { margin-bottom: 22px; }
  .pvl-final-cta-btn { padding: 16px 28px; font-size: 16px; width: 100%; justify-content: center; }
  .pvl-final-cta-micro { font-size: 12px; }
}

/* ================================================================
   91001 — 10-SANİYE İKNA AKIŞI (2026-05-03)
   - Hero TENSION line (CTA üstü kayıp uyarısı)
   - Hero altı PARA SORUSU bandı
   - Problem listesi 4-kolon varyantı
   ================================================================ */

/* HERO — Tension (CTA üstü) — yumuşak sarı, urgency var ama danger yok */
.pvl-hc-tension {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 11px 16px;
  background: rgba(255, 213, 0, 0.07);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  color: rgba(229, 231, 235, 0.92);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  max-width: 540px;
}
.pvl-hc-tension i { color: var(--yellow); flex-shrink: 0; font-size: 14px; }
.pvl-hc-tension strong { color: #fff; font-weight: 800; }

@media (max-width: 480px) {
  .pvl-hc-tension { font-size: 13.5px; padding: 10px 14px; }
}

/* HERO — Anonim kullanım proof'u (CTA altı, mikro çizgi) */
.pvl-hc-usage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(229, 231, 235, 0.62);
  letter-spacing: .2px;
  line-height: 1.4;
}
.pvl-hc-usage i { color: #22C55E; font-size: 11px; }
@media (max-width: 480px) {
  .pvl-hc-usage { font-size: 11.5px; }
}

/* HERO ALTI — para sorusu bandı (kullanıcıyı yakalayan tek dokunuş) */
.pvl-money-question {
  position: relative;
  background: linear-gradient(180deg, rgba(255,213,0,.05) 0%, rgba(0,0,0,0) 100%);
  border-bottom: 1px solid rgba(255,213,0,.12);
  padding: 38px 0 42px;
  text-align: center;
}
.pvl-money-question .container { max-width: 820px; }
.pvl-mq-line-1 {
  font-size: clamp(17px, 2.4vw, 22px);
  color: rgba(255,255,255,.78);
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
}
.pvl-mq-line-1 strong { color: #fff; font-weight: 800; }
.pvl-mq-line-2 {
  font-size: clamp(20px, 3.2vw, 30px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 0;
  line-height: 1.25;
}
.pvl-mq-line-2 .y { color: var(--yellow); }
.pvl-mq-line-3 {
  margin: 18px auto 0;
  max-width: 600px;
  font-size: 14.5px;
  color: rgba(229,231,235,.62);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .1px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.10);
}
.pvl-mq-line-3 strong { color: rgba(255,255,255,.85); font-weight: 700; }

@media (max-width: 480px) {
  .pvl-money-question { padding: 30px 0 34px; }
  .pvl-mq-line-1 { font-size: 15.5px; }
  .pvl-mq-line-2 { font-size: 19px; }
  .pvl-mq-line-3 { font-size: 13px; margin-top: 14px; padding-top: 12px; }
  .pvl-mq-line-3 br { display: none; }
}

/* Problem listesi — 4 kolon varyantı */
.pvl-problem-list-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 900px) {
  .pvl-problem-list-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .pvl-problem-list-4 { grid-template-columns: 1fr !important; }
}

/* ================================================================
   91002 — CONTACT 4-CARD GRID — mobil overflow fix (2026-05-03)
   - Inline grid-template-columns kaldırıldı, class-based responsive
   - Email/telefon link'leri break-word
   - Kart içi min-width:0 (flex/grid overflow guard)
   ================================================================ */
.pvl-contact-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 100%;
  margin: 0 auto;
}
.pvl-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  min-width: 0;
}
.pvl-contact-card-primary {
  border: 2px solid var(--yellow);
}
.pvl-contact-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--yellow-soft);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pvl-contact-card-primary .pvl-contact-ico {
  background: var(--yellow);
  color: #0A0A0A;
}
.pvl-contact-body {
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pvl-contact-body h5 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.pvl-contact-body p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pvl-contact-body p.phone {
  font-size: 16px;
  font-weight: 800;
  color: var(--yellow);
}
.pvl-contact-body a {
  color: var(--yellow);
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.pvl-contact-body a:hover { text-decoration: underline; }

/* Kurumsal satırı — uzun email kelimesini kır */
.pvl-contact-corporate {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  padding: 0 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pvl-contact-corporate i {
  color: var(--yellow);
  margin-right: 6px;
}
.pvl-contact-corporate a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.pvl-contact-corporate a:hover { text-decoration: underline; }

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .pvl-contact-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pvl-contact-grid-4 { grid-template-columns: 1fr; gap: 10px; }
  .pvl-contact-card { padding: 16px; gap: 12px; }
  .pvl-contact-ico { width: 40px; height: 40px; font-size: 16px; }
  .pvl-contact-body h5 { font-size: 13px; }
  .pvl-contact-body p { font-size: 12.5px; }
  .pvl-contact-body p.phone { font-size: 15px; }
  .pvl-contact-corporate {
    font-size: 12.5px;
    margin-top: 22px;
    padding: 0 16px;
  }
  .pvl-contact-corporate a { white-space: normal; }
}

/* ================================================================
   91101 — 5 KONVERSİYON HAMLESİ (2026-05-03)
   1) Hero gain promise (CTA üstü)
   2) Problem 5. madde — emphasis (kâr sandığın kadar değil)
   3) Scroll-stopper mini section (problem sonrası)
   ================================================================ */

/* Hero gain promise — "ben ne kazanacağım" cevabı */
.pvl-hc-gain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(255,213,0,.15), rgba(255,213,0,.04));
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: -.1px;
  line-height: 1.35;
  max-width: 540px;
}
.pvl-hc-gain strong {
  color: #fff;
  font-weight: 800;
}
.pvl-hc-gain-arrow {
  color: var(--yellow);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .pvl-hc-gain { font-size: 15px; padding: 9px 14px; }
}

/* Problem 5. madde — emphasis (para damarı vurgusu) */
.pvl-problem-list .pvl-problem-emphasis {
  border-color: rgba(255, 213, 0, 0.45) !important;
  background: linear-gradient(135deg, rgba(255,213,0,.08), rgba(255,213,0,.02)) !important;
  box-shadow: 0 8px 24px rgba(255, 213, 0, 0.06);
}
.pvl-problem-list .pvl-problem-emphasis .num {
  color: var(--yellow) !important;
}
.pvl-problem-list .pvl-problem-emphasis .ico {
  color: var(--yellow) !important;
  background: rgba(255,213,0,.15) !important;
}
.pvl-problem-list .pvl-problem-emphasis .txt {
  color: #fff !important;
  font-weight: 800 !important;
}

/* Scroll-stopper section — durdur, düşündür */
.pvl-scroll-stopper {
  position: relative;
  padding: 64px 0 72px;
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(255,213,0,.05), transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.pvl-scroll-stopper .container { max-width: 760px; }
.pvl-ss-pre {
  font-size: 14px;
  color: rgba(229,231,235,.55);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
}
.pvl-ss-line-good {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(20px, 2.6vw, 26px);
  color: rgba(229,231,235,.78);
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
}
.pvl-ss-check {
  color: #22C55E;
  font-size: clamp(18px, 2.4vw, 22px);
}
.pvl-ss-line-bad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: clamp(24px, 3.4vw, 34px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.4px;
  margin: 0;
  line-height: 1.2;
}
.pvl-ss-but {
  display: inline-block;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2px;
}
.pvl-ss-line-bad strong {
  color: #fff;
  font-weight: 800;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 4px;
  display: inline-block;
}

@media (max-width: 480px) {
  .pvl-scroll-stopper { padding: 48px 0 56px; }
  .pvl-ss-pre { font-size: 12.5px; margin-bottom: 14px; }
  .pvl-ss-line-good { font-size: 17px; gap: 10px; }
  .pvl-ss-check { font-size: 16px; }
  .pvl-ss-line-bad { font-size: 22px; }
  .pvl-ss-but { font-size: 12px; }
}
