/* ============================================================
   TurkeyProxy v2 - Modern Dark Theme
   ============================================================ */

:root {
  --bg:           #0b0f1a;
  --bg-2:         #111827;
  --bg-3:         #1a2238;
  --surface:      #161e2e;
  --surface-2:    #1e293b;
  --border:       #243046;
  --border-2:     #334155;
  --text:         #e6edf6;
  --text-dim:     #94a3b8;
  --text-muted:   #64748b;
  --primary:      #0076ff;
  --primary-2:    #0061d4;
  --primary-glow: rgba(0,118,255,.35);
  --accent:       #38bdf8;
  --success:      #10b981;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.2);
  --shadow:       0 6px 20px rgba(0,0,0,.35);
  --shadow-lg:    0 18px 50px rgba(0,0,0,.45);
  --transition:   .2s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(at 20% -10%, rgba(0,118,255,.18) 0%, transparent 45%),
              radial-gradient(at 100% 0%, rgba(56,189,248,.12) 0%, transparent 40%),
              var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #7dd3fc; }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Global Mobile Responsive Tuning ---- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  body { font-size: 14.5px; }
  /* iOS zoom önle (16px input minimum) */
  input, textarea, select { font-size: 16px !important; }
  /* Touch-friendly button sizes */
  .btn { min-height: 44px; padding: 12px 20px; }
  .btn-sm { min-height: 38px; padding: 9px 16px; }
  /* Form card mobile padding */
  .form-card { padding: 24px 18px !important; margin: 30px auto !important; }
  /* Section paddings */
  section { padding: 50px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .btn-lg { padding: 13px 22px; font-size: 14px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-trust-divider { display: none; }
}

/* ---- İletişim sayfası ---- */
.iletisim-hero {
  text-align: center;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.iletisim-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,118,255,.12) 0%, transparent 60%);
}
.iletisim-hero-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: 720px; margin: 0 auto;
}
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
.iletisim-mascot-wrap {
  margin-top: 32px;
  text-align: center;
  padding: 18px 0;
}
.iletisim-mascot {
  width: 130px; height: auto;
  display: inline-block;
  filter: drop-shadow(0 14px 34px rgba(0,118,255,.38));
  animation: iletisim-mascot-bounce 3.5s ease-in-out infinite;
}
@keyframes iletisim-mascot-bounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
@media (max-width: 768px) {
  .iletisim-grid { grid-template-columns: 1fr; gap: 30px; }
  .iletisim-mascot { width: 100px; }
  .iletisim-hero { padding: 40px 0 20px; }
  .iletisim-mascot-wrap { margin-top: 20px; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,15,26,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: -.02em; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links > a { color: var(--text-dim); font-weight: 500; font-size: 14px; transition: color .2s ease; }
.nav-links > a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }

/* ---------- Header Dropdown ---------- */
.nav-dropdown {
  position: relative;
  /* Invisible bottom-bridge: trigger ile panel arası mouse'un kaybolmasını önler */
  padding-bottom: 26px;
  margin-bottom: -26px;
}
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  color: var(--text-dim); font-weight: 500; font-size: 14px;
  font-family: inherit; padding: 0;
  transition: color .2s ease;
}
.nav-dropdown-trigger:hover { color: var(--text); }
.nav-dropdown-caret { font-size: 10px; transition: transform .25s ease; }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: 100%;          /* trigger'a yapışık (hover bridge invisible) */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 480px;
  background: linear-gradient(180deg, #161e2e 0%, #0f1726 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,118,255,.1);
  padding: 22px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  /* Açılış anlık (.18s), kapanışta visibility 200ms gecikmeli (mouse aralarda gezerken kapanmasın) */
  transition: opacity .2s ease, transform .2s ease, visibility .2s linear .15s;
  z-index: 100;
}
.nav-dropdown-panel::before {
  content: ''; position: absolute; bottom: 100%; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--border);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.nav-dropdown-col h5 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  color: var(--text-muted); letter-spacing: .08em;
  margin: 0 0 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.nav-dropdown-col a {
  display: block;
  padding: 8px 10px; margin: 2px 0;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 13.5px; font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-dropdown-col a:hover {
  background: rgba(0,118,255,.08);
  color: var(--text);
  transform: translateX(2px);
}

/* Hamburger (mobile) */
.nav-toggle-checkbox { display: none; }
.nav-hamburger { display: none; cursor: pointer; }

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    width: 28px; height: 22px; padding: 0;
    justify-content: center; cursor: pointer;
  }
  .nav-hamburger span {
    display: block; height: 2px; width: 100%;
    background: var(--text); border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle-checkbox:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    display: none; position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(11,15,26,.98);
    backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--border);
    flex-direction: column; gap: 0;
    padding: 16px 24px 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  .nav-links > a, .nav-dropdown { padding: 12px 8px; border-bottom: 1px solid var(--border); width: 100%; }

  .nav-dropdown-panel {
    position: static; transform: none;
    min-width: auto; width: 100%;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none;
    background: transparent;
    padding: 8px 0 0;
    margin-top: 8px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nav-dropdown-panel::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-panel { transform: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  font-weight: 600; font-size: 14px; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; box-shadow: 0 6px 18px var(--primary-glow); }
.btn-primary:hover { color: white; box-shadow: 0 10px 24px var(--primary-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--surface); color: var(--text); }
.btn-block { width: 100%; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 60px; text-align: center; }
.hero .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(0,118,255,.12); color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(0,118,255,.25);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; margin: 0 0 18px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p.lead { font-size: 18px; color: var(--text-dim); max-width: 720px; margin: 0 auto 32px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 32px; font-weight: 700; margin: 0 0 12px; letter-spacing: -.02em; }
.section-title p { color: var(--text-dim); margin: 0; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: var(--transition);
}
.card:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,118,255,.12); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.card p { color: var(--text-dim); margin: 0; font-size: 14px; }

/* ---------- Pricing cards ---------- */
.pricing-card { position: relative; }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 18px 50px rgba(0,118,255,.18); }
.pricing-card .price { font-size: 36px; font-weight: 800; margin: 8px 0; letter-spacing: -.02em; }
.pricing-card .price span { font-size: 15px; color: var(--text-dim); font-weight: 500; }
.pricing-card ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.pricing-card ul li { padding: 6px 0; color: var(--text-dim); font-size: 14px; display: flex; gap: 8px; align-items: center; }
.pricing-card ul li::before { content: "✓"; color: var(--success); font-weight: bold; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  max-width: 440px; margin: 60px auto;
}
.form-card h1 { font-size: 24px; margin: 0 0 8px; }
.form-card .sub { color: var(--text-dim); font-size: 14px; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--border-2); color: var(--text);
  font-size: 14px; transition: var(--transition); font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }

.form-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dim); margin-top: 18px; }

/* ---------- Flash ---------- */
.flash {
  padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 18px;
  font-size: 14px; border: 1px solid transparent;
}
.flash-success { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); color: #6ee7b7; }
.flash-error   { background: rgba(239,68,68,.12);  border-color: rgba(239,68,68,.3);  color: #fca5a5; }
.flash-info    { background: rgba(56,189,248,.12); border-color: rgba(56,189,248,.3); color: #7dd3fc; }
.flash-warning { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.3); color: #fbbf24; }

/* ---------- Tables ---------- */
.tp-table { width: 100%; border-collapse: collapse; }
.tp-table th, .tp-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.tp-table th { background: var(--bg-2); color: var(--text-dim); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.tp-table tbody tr:hover { background: var(--surface); }

/* ---------- Badges ---------- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.badge-success { background: rgba(16,185,129,.18); color: #6ee7b7; }
.badge-danger  { background: rgba(239,68,68,.18);  color: #fca5a5; }
.badge-warning { background: rgba(245,158,11,.18); color: #fbbf24; }
.badge-info    { background: rgba(56,189,248,.18); color: #7dd3fc; }
.badge-muted   { background: var(--bg-2); color: var(--text-dim); border: 1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 80px; color: var(--text-dim); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-grid h4 { color: var(--text); font-size: 14px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .05em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ---------- SEO landing ---------- */
.seo-content { max-width: 880px; margin: 0 auto; padding: 40px 0; }
.seo-content h1 { font-size: 36px; margin-bottom: 16px; letter-spacing: -.02em; }
.seo-content h2 { margin-top: 36px; font-size: 22px; }
.seo-content p { color: var(--text-dim); }
.seo-content ul, .seo-content ol { color: var(--text-dim); padding-left: 20px; }

/* ---------- Utils ---------- */
.text-center { text-align: center; }
.text-dim    { color: var(--text-dim); }
.text-primary{ color: var(--primary); }
.mt-4 { margin-top: 32px; } .mt-2 { margin-top: 16px; }
.mb-4 { margin-bottom: 32px; } .mb-2 { margin-bottom: 16px; }
.flex { display: flex; align-items: center; gap: 12px; }

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed; top: 24px; right: 24px; z-index: 9999;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white; padding: 14px 22px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 30px rgba(16,185,129,.35);
  transform: translateX(120%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.toast.show { transform: translateX(0); }
.toast-error { background: linear-gradient(135deg, var(--danger), #b91c1c); box-shadow: 0 12px 30px rgba(239,68,68,.35); }
.toast-info  { background: linear-gradient(135deg, var(--accent), #0891b2); box-shadow: 0 12px 30px rgba(56,189,248,.35); }

/* ---------- Skeleton Loader ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 0%, var(--surface-2) 50%, var(--bg-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---------- Page transition (fade-in) ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
main { animation: fadeIn .3s ease-out; }

/* ---------- Smooth focus ---------- */
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center; padding: 60px 20px;
  background: var(--surface); border: 1px dashed var(--border-2); border-radius: var(--radius);
}
.empty-state h3 { margin: 0 0 8px; font-size: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 32px; }
  .toast { top: auto; bottom: 24px; right: 12px; left: 12px; }
}

/* ============================================================
   PHASE 15.B - Premium UI/UX Layer (public + customer panel)
   Animasyonlar, hover overlay'lar, glow efektleri, ripple
   ============================================================ */

/* ---- Page background ambient lights (parallax-like, CSS only) ---- */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(circle at 80% 80%, rgba(56,189,248,.05) 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(0,118,255,.06) 0%, transparent 30%);
  animation: ambient-float 18s ease-in-out infinite alternate;
}
@keyframes ambient-float {
  0%   { transform: translate(0,0) scale(1); opacity: .8; }
  50%  { transform: translate(20px,-15px) scale(1.05); opacity: 1; }
  100% { transform: translate(-15px,10px) scale(.95); opacity: .85; }
}

/* ---- Site header: smooth border-bottom glow on scroll ---- */
.site-header { transition: background .3s, border-color .3s, box-shadow .3s; }
.site-header.scrolled {
  background: rgba(11,15,26,.95);
  box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 1px 0 rgba(0,118,255,.15);
}

/* ---- Brand dot: pulsing glow ---- */
.brand .dot {
  position: relative;
  animation: brand-pulse 2.4s ease-in-out infinite;
}
.brand .dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  animation: brand-halo 2.4s ease-in-out infinite;
}
@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 12px var(--primary-glow); }
  50%      { box-shadow: 0 0 20px rgba(0,118,255,.6); }
}
@keyframes brand-halo {
  0%, 100% { transform: scale(1);   opacity: .6; }
  50%      { transform: scale(1.4); opacity: 0; }
}

/* ---- Buttons: shimmer/ripple on hover (CSS-only) ---- */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 32px var(--primary-glow), 0 0 0 1px rgba(0,118,255,.3);
}
.btn-primary:active { transform: translateY(0) scale(.99); }

.btn-ghost {
  position: relative; overflow: hidden;
}
.btn-ghost::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(56,189,248,.18) 0%, transparent 60%);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.btn-ghost:hover::after { opacity: 1; }

/* ---- Cards: hover lift + soft glow rim ---- */
.feature-card, .price-card, .seo-card, .testimonial-card, .stat-card {
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.feature-card::before, .price-card::before, .seo-card::before, .stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(56,189,248,.08), transparent 40%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.feature-card:hover, .price-card:hover, .seo-card:hover, .stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(56,189,248,.15);
}
.feature-card:hover::before, .price-card:hover::before, .seo-card:hover::before, .stat-card:hover::before {
  opacity: 1;
}

/* Featured price card: floating gradient border */
.price-card.featured {
  position: relative;
  background: linear-gradient(180deg, rgba(0,118,255,.08), rgba(56,189,248,.04));
}
.price-card.featured::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: gradient-rotate 4s linear infinite;
  pointer-events: none; z-index: 1;
}
@keyframes gradient-rotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---- Flash messages: slide-in + colored border ---- */
.flash {
  animation: flash-slide-in .4s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.flash::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent);
}
.flash-success::before { background: var(--success); }
.flash-error::before, .flash-danger::before { background: var(--danger); }
.flash-warning::before { background: var(--warning); }
@keyframes flash-slide-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Toast: glassy ---- */
.toast {
  backdrop-filter: blur(12px) saturate(180%);
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

/* ---- Form inputs: focus ring with glow ---- */
.form-control, input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], select, textarea {
  transition: border-color .2s, box-shadow .25s, background .2s;
}
.form-control:focus, input:focus:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56,189,248,.18), 0 0 12px rgba(56,189,248,.18);
}

/* ---- Page transition (body fade-in) ---- */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: page-fade-in .35s ease-out; }

/* ---- Section reveal (used by site.js IntersectionObserver) ----
   opacity:1 fallback: GSAP/ScrollTrigger fail olursa elementler yine görünür kalır
*/
[data-reveal] { will-change: transform, opacity; opacity: 1; }
.grid-3 > *, .grid-4 > *, .pricing-grid > * { opacity: 1; }

/* ---- Tabler Icons fallback (CDN gelmezse bos kalmasin) ---- */
.ti { display: inline-block; min-width: 1em; }
.ti:empty::before { content: '•'; opacity: .4; }

/* ---- Customer panel specific (panel/) ---- */
.panel-card, .ip-card, .stat-card {
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ip-card { position: relative; overflow: hidden; }
.ip-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(56,189,248,.12), transparent 60%);
  pointer-events: none;
}
.ip-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  border-color: rgba(56,189,248,.3);
}
.ip-card .copy-btn {
  position: relative; transition: all .2s;
}
.ip-card .copy-btn:active {
  transform: scale(.94);
}

/* ---- Counter animation tick effect ---- */
[data-count] {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

/* ---- Loading shimmer skeleton ---- */
.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,.04) 0%,
    rgba(255,255,255,.08) 50%,
    rgba(255,255,255,.04) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Scroll smooth ---- */
html { scroll-behavior: smooth; }

/* ---- Selection color ---- */
::selection { background: rgba(0,118,255,.35); color: white; }

/* ---- Scrollbar (webkit) ---- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---- Reduced motion respect ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  body::before { animation: none; }
}

/* ============================================================
   PHASE 15.C - Cinematic Hero + Showcase + Pricing icons
   Karakter, plan kapsuller, mobile mockup, service cards
   ============================================================ */

/* ---- Corporate Hero (anasayfa, kurumsal — game imagery yok) ---- */
.hero-corporate {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-corporate {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(0,118,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 80%, rgba(56,189,248,.12) 0%, transparent 50%),
    linear-gradient(180deg, #0a1024 0%, var(--bg) 100%);
}
.hero-bg-corporate::before {
  /* subtle grid pattern */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-bg-corporate::after {
  /* soft top vignette */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,26,.4) 0%, transparent 30%, transparent 70%, rgba(11,15,26,.85) 100%);
  pointer-events: none;
}
.hero-corporate .hero-inner {
  position: relative; z-index: 1;
  max-width: 880px; margin: 0 auto;
}
.hero-corporate h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; margin: 18px 0 20px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-corporate .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(0,118,255,.12); color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(0,118,255,.25);
  margin-bottom: 20px;
}
.hero-corporate .lead {
  font-size: 17px; color: var(--text-dim);
  max-width: 720px; margin: 0 auto 32px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .hero-corporate { padding: 80px 0 60px; }
  .hero-bg-corporate::before { background-size: 40px 40px; }
}


/* ---- Brand Logo ---- */
.brand { gap: 0; padding: 4px 0; }
.brand .brand-logo {
  height: 36px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(56,189,248,.18));
  transition: transform .25s ease, filter .3s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(56,189,248,.4));
}
.site-footer .brand .brand-logo { height: 32px; }

/* ---- Hero Cinematic ---- */
.hero-cinematic {
  position: relative; overflow: hidden;
  padding: 120px 0 100px;
  isolation: isolate;
  min-height: 600px;
  display: flex; align-items: center;
}
.hero-pricing {
  padding: 80px 0 40px;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: -10%;
  width: 120%; height: 120%; object-fit: cover;
  opacity: .35;
  filter: blur(2px) saturate(140%);
  animation: hero-bg-pan 40s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(11,15,26,.5) 50%, rgba(11,15,26,.95) 100%),
    linear-gradient(180deg, rgba(11,15,26,.7) 0%, transparent 30%, rgba(11,15,26,.85) 100%);
}
@keyframes hero-bg-pan {
  0%   { transform: translate(0,0) scale(1.05); }
  100% { transform: translate(-3%,-2%) scale(1.12); }
}

/* Floating characters (left + right of hero) */
.hero-char {
  position: absolute; bottom: -10px; z-index: 0;
  height: 480px; width: auto;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
  opacity: 0;
  animation: char-float-in 1.2s cubic-bezier(.2,.8,.2,1) .4s forwards,
             char-float 6s ease-in-out 1.6s infinite;
}
.hero-char-left  { left: -40px;  animation-delay: .4s, 1.6s; }
.hero-char-right { right: -40px; animation-delay: .6s, 1.9s; }
@keyframes char-float-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: .85; transform: translateY(0); }
}
@keyframes char-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@media (max-width: 1100px) {
  .hero-char { height: 360px; opacity: .4; }
}
@media (max-width: 800px) {
  .hero-char { display: none; }
  .hero-cinematic { padding: 70px 0 60px; min-height: 500px; }
}

.hero-inner {
  position: relative; z-index: 2; text-align: center; max-width: 880px;
}
.hero-h1-accent {
  background: linear-gradient(135deg, #0076ff 0%, #38bdf8 50%, #7dd3fc 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 10px; }

/* Hero trust strip */
.hero-trust {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 36px; padding: 12px 22px;
  background: rgba(11,15,26,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 13px;
}
.hero-trust-item { color: var(--text-dim); }
.hero-trust-item strong { color: var(--text); font-weight: 700; margin-right: 4px; }
.hero-trust-divider { width: 1px; height: 14px; background: var(--border-2); }
@media (max-width: 540px) {
  .hero-trust { font-size: 11px; padding: 10px 14px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .hero-trust-divider { display: none; }
}

/* ---- Feature card icons (warm/cool/tr/success) ---- */
.feature-card { padding: 28px 24px; }
.feature-card .card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover .card-icon { transform: rotate(-6deg) scale(1.08); }
.feature-card .card-icon.icon-warm    { background: linear-gradient(135deg, rgba(0,118,255,.15), rgba(245,158,11,.15)); border-color: rgba(0,118,255,.3); box-shadow: 0 6px 20px rgba(0,118,255,.15); }
.feature-card .card-icon.icon-cool    { background: linear-gradient(135deg, rgba(56,189,248,.15), rgba(59,130,246,.15)); border-color: rgba(56,189,248,.3); box-shadow: 0 6px 20px rgba(56,189,248,.15); }
.feature-card .card-icon.icon-success { background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(56,189,248,.15)); border-color: rgba(16,185,129,.3); box-shadow: 0 6px 20px rgba(16,185,129,.15); }
.feature-card .card-icon.icon-tr      { background: linear-gradient(135deg, rgba(0,118,255,.2), rgba(255,255,255,.1)); border-color: rgba(0,118,255,.4); box-shadow: 0 6px 20px rgba(0,118,255,.15); }

/* ---- Showcase (mobile panel mockup) ---- */
.section-showcase { padding: 80px 0; position: relative; }
.section-showcase::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 30% 50%, rgba(56,189,248,.08), transparent 60%);
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.showcase-text h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.03em; margin: 14px 0 16px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.showcase-list { list-style: none; padding: 0; margin: 24px 0 28px; }
.showcase-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; color: var(--text-dim);
}
.showcase-list .check {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #34d399);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
  flex-shrink: 0;
}
.showcase-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.showcase-phone {
  max-width: 380px; width: 100%; height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.5));
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .showcase-list li { justify-content: center; }
}

/* ---- Service Cards (cinematic with bg image) ---- */
.section-services { padding: 80px 0; }
.service-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0;
  text-decoration: none; color: inherit;
  display: block;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  min-height: 240px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  border-color: var(--accent);
}
.service-card-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .25; transition: opacity .4s, transform .6s ease;
}
.service-card:hover .service-card-bg { opacity: .4; transform: scale(1.08); }
.service-card-content {
  position: relative; z-index: 1; padding: 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,15,26,.7) 70%, rgba(11,15,26,.95) 100%);
  height: 100%; min-height: 240px;
  display: flex; flex-direction: column;
}
.service-card-content .card-icon { font-size: 32px; margin-bottom: 12px; }
.service-card-content h3 { margin: 0 0 8px; }
.service-card-content p { color: var(--text-dim); margin: 0 0 auto; }
.service-card-cta {
  display: inline-block; margin-top: 18px;
  color: var(--accent); font-weight: 600; font-size: 14px;
  transition: transform .25s;
}
.service-card:hover .service-card-cta { transform: translateX(6px); color: #7dd3fc; }

/* ---- Final CTA section ---- */
.section-cta-final { padding: 80px 0 100px; }
.cta-final-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,118,255,.06), rgba(56,189,248,.06));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 60px 60px 60px 360px;
  display: flex; align-items: center;
  min-height: 280px;
}
.cta-final-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 25% 50%, rgba(56,189,248,.15), transparent 50%);
}
.cta-final-mascot {
  position: absolute; left: 30px; bottom: 0; top: 0; margin: auto 0;
  height: 280px; width: auto; z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.4));
  animation: mascot-float 5s ease-in-out infinite;
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.cta-final-text { position: relative; z-index: 2; }
.cta-final-text h2 {
  font-size: 32px; margin: 0 0 12px; font-weight: 800; letter-spacing: -.03em;
}
.cta-final-text p { color: var(--text-dim); margin: 0 0 24px; font-size: 15px; max-width: 540px; }
@media (max-width: 800px) {
  .cta-final-card { padding: 320px 24px 40px; text-align: center; }
  .cta-final-mascot { left: 50%; transform: translateX(-50%); top: 30px; bottom: auto; height: 240px; }
  .cta-final-text .hero-cta { justify-content: center; }
}

/* ============================================================
   Pricing Cards with Capsule Icons (starter/plus/deluxe/ultimate)
   ============================================================ */
.pricing-grid { gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .grid-4 { grid-template-columns: 1fr; } }

.section-pricing { padding: 60px 0; }

.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 26px 28px;
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0; transition: opacity .3s;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,.3);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.price-card:hover::before { opacity: 1; }

/* Emoji-based capsule icons (replaces broken <img> tags) */
.price-card-icon, .price-card-icon-sm {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border-radius: 22px;
  border: 1px solid rgba(0,118,255,.25);
  background: linear-gradient(135deg, rgba(0,118,255,.18), rgba(0,118,255,.04));
  box-shadow: 0 12px 30px rgba(0,118,255,.18), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  line-height: 1;
}
.price-card-icon {
  width: 88px; height: 88px;
  font-size: 44px;
}
.price-card-icon-sm {
  width: 68px; height: 68px;
  font-size: 32px;
  margin-bottom: 12px;
  border-radius: 18px;
}
.price-card:hover .price-card-icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,118,255,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.price-card:hover .price-card-icon-sm { transform: scale(1.08) rotate(-2deg); }

/* Renk varyantları */
.emoji-icon-blue {
  background: linear-gradient(135deg, rgba(0,118,255,.22), rgba(0,118,255,.06));
  border-color: rgba(0,118,255,.3);
}
.emoji-icon-popular {
  background: linear-gradient(135deg, rgba(0,118,255,.32), rgba(56,189,248,.14));
  border-color: rgba(0,118,255,.5);
  box-shadow: 0 14px 36px rgba(0,118,255,.32), inset 0 1px 0 rgba(255,255,255,.1);
}
.emoji-icon-cyan {
  background: linear-gradient(135deg, rgba(56,189,248,.22), rgba(125,211,252,.06));
  border-color: rgba(56,189,248,.32);
  box-shadow: 0 12px 30px rgba(56,189,248,.22), inset 0 1px 0 rgba(255,255,255,.06);
}
.emoji-icon-gold {
  background: linear-gradient(135deg, rgba(245,158,11,.28), rgba(251,191,36,.08));
  border-color: rgba(251,191,36,.4);
  box-shadow: 0 14px 36px rgba(245,158,11,.28), inset 0 1px 0 rgba(255,255,255,.1);
}

.price-card h3 {
  margin: 0 0 4px; font-size: 22px; font-weight: 700; letter-spacing: -.02em;
}
.price-card-sub {
  margin: 0 0 18px; color: var(--text-dim); font-size: 13px;
}
.price-card .price {
  font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1;
  margin: 12px 0 4px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-card .price span {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  margin-left: 4px;
}
.price-total {
  margin: 0 0 18px; font-size: 13px; color: var(--text-dim);
}
.price-total strong { color: var(--success); font-weight: 700; }
.price-features {
  list-style: none; padding: 0; margin: 16px 0 24px;
  text-align: left;
}
.price-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-dim);
  font-size: 13.5px;
  border-bottom: 1px dashed rgba(255,255,255,.04);
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--success); font-weight: 800; font-size: 14px;
}
.price-card-compact { padding: 24px 18px 20px; }
.price-card-compact .price { font-size: 26px; }
.price-card-compact .price-features li { font-size: 12.5px; padding: 6px 0 6px 20px; }
.price-card-compact .price-features li::before { font-size: 12px; top: 6px; }

/* Featured price card (3 ayli) - sigorta kaldirilan featured */
.price-card-featured {
  border: 1px solid rgba(56,189,248,.4);
  background: linear-gradient(180deg, rgba(56,189,248,.06) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 0 4px rgba(56,189,248,.05);
}
.price-card-featured::before { opacity: 1; }

/* Ultimate (kurumsal) - altin glow */
.price-card-ultimate {
  border-color: rgba(245,158,11,.35);
  background: linear-gradient(180deg, rgba(245,158,11,.06) 0%, var(--bg-2) 100%);
}
.price-card-ultimate::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  opacity: 1;
}

/* Ribbons */
.price-card-ribbon {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--accent), #7dd3fc);
  color: var(--bg); padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .03em;
  box-shadow: 0 4px 12px rgba(56,189,248,.3);
  z-index: 2;
}
.price-card-ribbon.ribbon-success { background: linear-gradient(135deg, var(--success), #34d399); color: white; }
.price-card-ribbon.ribbon-warning { background: linear-gradient(135deg, var(--warning), #fbbf24); color: var(--bg); }
.price-card-ribbon.ribbon-ultimate {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
  color: var(--bg);
}

/* ============================================================
   PHASE 15.D - Marquee + Stats + Bento + FAQ Bubbles + Footer Outline
   Eski WP siteden ilham (dark adapted)
   ============================================================ */

/* ---- Marquee scrolling strip ---- */
.marquee-section {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(56,189,248,.08), rgba(0,118,255,.08), rgba(56,189,248,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee-section::before, .marquee-section::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee {
  display: flex; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 0;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px;
  font-size: 17px; font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.marquee-item .ti {
  font-size: 22px;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.marquee-dot {
  color: var(--primary); opacity: .5;
  font-size: 14px; padding: 0 4px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Sayılarla TurkeyProxy (sade, dikkat çekmeyen) ---- */
.section-stats {
  padding: 70px 0;
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(56,189,248,.04), transparent 60%);
}
.section-title-large h2 {
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 700;
  line-height: 1.35; letter-spacing: -.02em;
  max-width: 760px; margin: 12px auto 0;
  color: var(--text);
}
.ninja-emoji {
  display: inline-block;
  font-size: .85em;
  animation: ninja-bounce 2s ease-in-out infinite;
}
@keyframes ninja-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(6deg); }
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 40px auto 0;
  max-width: 900px;
}
.stat-tile {
  position: relative; overflow: hidden;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease;
  min-height: auto;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: var(--surface);
}
.stat-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0,118,255,.35);
}
.stat-tile-blue {
  background: linear-gradient(180deg, rgba(0,118,255,.08), var(--surface) 80%);
  border-color: rgba(0,118,255,.2);
}
.stat-tile-dark {
  background: var(--surface);
}
.stat-tile-label {
  display: inline-block;
  background: rgba(255,255,255,.06);
  color: var(--text-dim);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.stat-tile-dark .stat-tile-label { background: rgba(255,255,255,.06); color: var(--text-dim); }
.stat-tile-blue .stat-tile-label { background: rgba(0,118,255,.15); color: #7dd3fc; }
.stat-tile-icon { display: none; }
.stat-tile-num {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.1;
  margin: 4px 0;
  position: relative; z-index: 1;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.stat-tile-blue .stat-tile-num { color: #fff; }
.stat-tile-sub {
  font-size: 12px; font-weight: 500;
  letter-spacing: .02em;
  position: relative; z-index: 1;
  color: var(--text-muted);
  text-transform: none;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr; }
  .section-stats { padding: 60px 0; }
}

/* ---- Bento Grid ---- */
.section-bento { padding: 100px 0; position: relative; }
.section-title .emoji-accent {
  display: inline-block;
  animation: emoji-wiggle 2.5s ease-in-out infinite;
}
@keyframes emoji-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-15deg); }
  75%      { transform: rotate(15deg); }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 22px;
  margin-top: 50px;
}
.bento-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 28px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,.3);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.bento-card h3 {
  font-size: 22px; font-weight: 700; margin: 16px 0 10px;
  letter-spacing: -.02em;
}
.bento-card p { color: var(--text-dim); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* Bento positions (3 col x 2 row, middle is large) */
.bento-1 { grid-column: 1; grid-row: 1; }
.bento-2 { grid-column: 2; grid-row: 1 / span 2; }
.bento-3 { grid-column: 3; grid-row: 1; }
.bento-4 { grid-column: 1; grid-row: 2; }
.bento-5 { grid-column: 3; grid-row: 2; }

/* Bento 1: Kolay Yönetim - circular dial + ghost */
.bento-icon-wrap {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
}
.bento-icon-dial {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--border-2);
  animation: dial-rotate 20s linear infinite;
}
.bento-icon-dial::before, .bento-icon-dial::after {
  content: ''; position: absolute; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.bento-icon-dial::before { top: -4px; left: 50%; transform: translateX(-50%); }
.bento-icon-dial::after  { bottom: -4px; left: 50%; transform: translateX(-50%); background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.bento-icon-ghost {
  width: 70px; height: 70px;
  filter: drop-shadow(0 4px 12px rgba(56,189,248,.4));
  z-index: 2; position: relative;
  animation: ghost-float 4s ease-in-out infinite;
}
@keyframes dial-rotate {
  to { transform: rotate(360deg); }
}
@keyframes ghost-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Bento 2: Feature card - büyük resim + text */
.bento-card-feature { padding: 0; display: flex; flex-direction: column; }
.bento-feature-image {
  width: 100%; max-height: 380px; object-fit: contain; object-position: center;
  padding: 28px 28px 0; box-sizing: border-box;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.bento-feature-text { padding: 24px 32px 32px; }

/* Bento 3: Yüksek Hız - mini icons */
.bento-mini-icons {
  display: flex; gap: 12px; margin-bottom: 8px; flex-wrap: wrap;
}
.bento-mini-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent);
  transition: transform .3s, background .3s;
}
.bento-mini-icon:hover {
  transform: translateY(-3px) rotate(-6deg);
  background: rgba(56,189,248,.15);
}

/* Bento 4: Subnet - list rows */
.bento-list { margin-bottom: 16px; }
.bento-list-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px;
  background: rgba(56,189,248,.04);
  border: 1px solid rgba(56,189,248,.08);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  transition: background .25s;
}
.bento-list-row:hover { background: rgba(56,189,248,.1); }
.bento-list-tag { color: var(--text); font-weight: 600; }
.bento-list-loc { color: var(--text-muted); font-size: 12px; }

/* Bento 5: 7/24 destek - small logo */
.bento-logo-mini {
  height: 40px; width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(56,189,248,.3));
}

@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-1 { grid-column: 1; grid-row: 1; }
  .bento-2 { grid-column: 1 / span 2; grid-row: 2; }
  .bento-3 { grid-column: 2; grid-row: 1; }
  .bento-4 { grid-column: 1; grid-row: 3; }
  .bento-5 { grid-column: 2; grid-row: 3; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5 {
    grid-column: 1; grid-row: auto;
  }
}

/* ---- FAQ Floating Bubbles ---- */
.section-faq-bubbles {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-faq-bubbles::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(56,189,248,.05), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(0,118,255,.05), transparent 50%);
}
.faq-bubbles {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  max-width: 1100px; margin: 50px auto 0;
}
.faq-bubble {
  display: inline-block;
  padding: 14px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  animation: bubble-float 6s ease-in-out infinite;
}
.faq-bubble:hover {
  background: rgba(56,189,248,.1);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(56,189,248,.2);
}
/* Stagger animation delays */
.fb-1 { animation-delay: 0s; }
.fb-2 { animation-delay: -0.7s; }
.fb-3 { animation-delay: -1.4s; }
.fb-4 { animation-delay: -2.1s; }
.fb-5 { animation-delay: -2.8s; }
.fb-6 { animation-delay: -3.5s; }
.fb-7 { animation-delay: -4.2s; }
.fb-8 { animation-delay: -4.9s; }

@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---- Showcase Phone Ground Line (kol kesik gozukmesin) ---- */
.showcase-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 0;
  min-height: 520px;
}
.showcase-phone {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.showcase-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 92%; max-width: 460px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(56,189,248,.5) 30%,
    rgba(255,255,255,.6) 50%,
    rgba(56,189,248,.5) 70%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(56,189,248,.35);
  z-index: 1;
}
/* Soft floor reflection / glow under phone (sabit, nabız atmaz) */
.showcase-visual::before {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 70%; max-width: 360px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(56,189,248,.28) 0%, rgba(56,189,248,.08) 40%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  opacity: .7;
}

/* Bento feature image - aynı ground line treatment */
.bento-card-feature {
  position: relative;
}
.bento-card-feature .bento-feature-image {
  margin-bottom: 8px;
}
.bento-card-feature::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  top: calc(min(380px, 40%) + 28px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(56,189,248,.4) 50%,
    transparent 100%);
  opacity: .8;
  pointer-events: none;
}

/* ============================================================
   Floating Ghost Mascot (sağ alt köşe — WhatsApp shortcut)
   ============================================================ */
.floating-mascot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 110px;
  z-index: 90;
  display: block;
  text-decoration: none;
  filter: drop-shadow(0 8px 22px rgba(56, 189, 248,.35));
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1),
              filter .3s ease;
}
.floating-mascot img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.floating-mascot:hover {
  transform: scale(1.12) rotate(3deg);
  filter: drop-shadow(0 14px 32px rgba(56, 189, 248,.65));
}
.floating-mascot-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: linear-gradient(135deg, #1a1f2e, #0f1320);
  border: 1px solid rgba(56, 189, 248,.35);
  color: #e5e7eb;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  transition: opacity .25s ease, transform .25s ease;
}
.floating-mascot-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(56, 189, 248,.35);
}
.floating-mascot:hover .floating-mascot-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
  .floating-mascot { width: 78px; right: 14px; bottom: 14px; }
  .floating-mascot-tooltip { display: none; }
}
@media (max-width: 480px) {
  .floating-mascot { width: 60px; right: 10px; bottom: 10px; }
}

/* ============================================================
   SEO Page — slug-spesifik dekoratif görseller (kompakt layout)
   ============================================================ */
.seo-content { padding: 50px 0 60px; max-width: 920px; }
.seo-content h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; letter-spacing: -.02em;
  margin: 20px 0 14px;
  text-align: center;
}
.seo-content > p:first-of-type { text-align: center; max-width: 720px; margin: 0 auto 24px; }
.seo-content h2, .seo-content h3 { margin-top: 28px; letter-spacing: -.02em; }
.seo-content p, .seo-content li { color: var(--text-dim); line-height: 1.7; }

.seo-figure {
  margin: 24px auto;
  text-align: center;
  max-width: 640px;
}
.seo-figure img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  border: 1px solid var(--border);
  background: var(--surface);
}
/* Hero görsel daha vurgulu ama hâlâ kompakt */
.seo-figure-hero {
  max-width: 480px;
  margin: 16px auto 30px;
}
.seo-figure-hero img {
  max-height: 380px;
  box-shadow: 0 20px 50px rgba(0,118,255,.2), 0 14px 36px rgba(0,0,0,.45);
  border-color: rgba(0,118,255,.18);
}
@media (max-width: 600px) {
  .seo-figure { max-width: 100%; }
  .seo-figure img { max-height: 260px; }
  .seo-figure-hero img { max-height: 280px; }
}

/* ---- SEO Page İçerik Tipografi ---- */
.seo-content .lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 760px;
  text-align: center;
}
.seo-content h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -.01em;
  color: var(--text);
}
.seo-content h3 {
  font-size: 18px; font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}
.seo-content ul, .seo-content ol {
  padding-left: 22px;
  margin: 12px 0 18px;
}
.seo-content ul li, .seo-content ol li { margin-bottom: 8px; }
.seo-content strong { color: var(--text); }
.seo-content a { color: var(--accent); }
.seo-content a:hover { color: #7dd3fc; text-decoration: underline; }

/* ---- SSS Accordion (details / summary) ---- */
.seo-content details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 8px 0;
  transition: border-color .25s ease, background .25s ease;
}
.seo-content details:hover {
  border-color: rgba(0,118,255,.3);
}
.seo-content details[open] {
  border-color: rgba(0,118,255,.4);
  background: linear-gradient(180deg, rgba(0,118,255,.04), var(--surface));
}
.seo-content details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
  position: relative;
  padding-right: 32px;
  user-select: none;
}
.seo-content details summary::-webkit-details-marker { display: none; }
.seo-content details summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px; line-height: 1;
  color: var(--accent);
  font-weight: 400;
  transition: transform .3s ease;
}
.seo-content details[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.seo-content details > p,
.seo-content details > ul,
.seo-content details > ol {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
}

/* ============================================================
   Silkroad Cinematic Landing — özel template stilleri
   ============================================================ */
.silkroad-hero-logo {
  position: absolute;
  top: 40px; right: 40px;
  width: clamp(120px, 14vw, 200px);
  z-index: 3;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
  pointer-events: none;
}
.silkroad-hero .eyebrow {
  background: rgba(0,118,255,.18);
  border-color: rgba(0,118,255,.35);
  color: #7dd3fc;
}
.silkroad-sss { padding: 70px 0 40px; max-width: 920px; }
.silkroad-sss h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 32px;
  font-weight: 700;
}

/* CTA Card with Image (silkroad bottom section) */
.silkroad-cta-section { padding: 40px 0 80px; }
.silkroad-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(0,118,255,.2);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(0,118,255,.12);
  position: relative;
  overflow: hidden;
}
.silkroad-cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,118,255,.1), transparent 50%);
  pointer-events: none;
}
.silkroad-cta-text { position: relative; z-index: 1; }
.silkroad-cta-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.silkroad-cta-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.silkroad-cta-visual {
  position: relative; z-index: 1;
}
.silkroad-cta-visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0,118,255,.3));
  border-radius: 16px;
}

@media (max-width: 800px) {
  .silkroad-hero-logo { top: 16px; right: 16px; width: 80px; }
  .silkroad-cta-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }
  .silkroad-cta-visual { order: -1; }
  .silkroad-cta-text .hero-cta { justify-content: center; }
}
