/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink: #00152a;
  --paper: #000;
  --accent: #1a56db;
  --accent2: #059669;
  --warn: #d97706;
  --muted: #6b7280;
  --border: #e5e2da;
  --card: #ffffff;
  --radius: 16px;
  --lightblue: #4f86ff;
  --hero-bg: #0b0f19;
  --footer-bg: #070709;
  --dark-card: #0a0a0f;
}

/* Smooth scroll için GPU acceleration */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wr-card,
.wr-plan,
.wr-step,
.wr-testimonial {
  /* GPU acceleration */
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Mobile hamburger menu */
@media (max-width: 768px) {
  .wr-nav-links { 
    display: none; 
    /* Mobile için dropdown yapabilirsiniz */
  }
  
  /* Hamburger icon ekle */
  .wr-nav::after {
    content: '☰';
    font-size: 24px;
    color: var(--ink);
    cursor: pointer;
    display: block;
  }
}

/* Override parent theme on this page */
.woorate-landing-page .site-header,
.woorate-landing-page .site-footer,
.woorate-landing-page #masthead,
.woorate-landing-page #colophon {
  display: none !important;
}

.woorate-landing-page #page,
.woorate-landing-page .site-content,
.woorate-landing-page #primary,
.woorate-landing-page .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.woorate-landing-page {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--lightblue);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body.woorate-landing-page::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; color:#0000c7; }

/* ── NAV ── */
.wr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(245, 243, 238, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.wr-nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.wr-nav-logo .wr-icon {
  width: 36px; height: 36px;
  background: var(--ink); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wr-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.wr-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.wr-nav-links a:hover { color: var(--ink); }
.wr-nav-cta {
  background: var(--ink) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px !important; font-weight: 500 !important;
  transition: background .2s !important;
}
.wr-nav-cta:hover { background: var(--accent) !important; }
.wr-nav-lang {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}

/* HERO temel yapı */
/* HERO */
.wr-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Arka plan */
.wr-hero-bg {
  position: absolute;
  inset: 0;
  background: #0b0f19;
  z-index: 0;
}

/* FRAUD section'da blob canvas var ama boş */
.wr-blob-canvas {
  position: absolute; 
  inset: 0;
  width: 100%; 
  height: 100%;
  z-index: 0; 
  pointer-events: none;
  /* Eğer JS yoksa yedek efekt */
  background: radial-gradient(
    circle at 30% 40%,
    rgba(26, 86, 219, 0.08) 0%,
    transparent 50%
  );
}

/* Spotlight */
.wr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.16) 0%,
    rgba(255,255,255,0.10) 20%,
    rgba(255,255,255,0.05) 35%,
    rgba(255,255,255,0.02) 50%,
    transparent 65%
  );

  animation: heroPulse 7s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,100% { opacity: .9; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.06); }
}

/* İçerik */
.wr-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  padding: 0 20px;
}

/* Float etiketler */
.wr-float {
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  user-select: none;
  will-change: transform, opacity;
}


.wr-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ecfdf5; border: 1px solid #6ee7b7;
  color: #065f46; border-radius: 100px;
  padding: 6px 14px; font-size: 13px; font-weight: 500;
  margin-bottom: 28px; position: relative; z-index: 2;
}
.wr-hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #10b981; animation: wrPulse 2s ease-in-out infinite;
}
@keyframes wrPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.wr-hero h1 {
  display: inline-block;
  font-size: clamp(42px, 7vw, 100px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.0;
  max-width: 800px; position: relative; z-index: 2; margin-bottom: 24px;
}
.wr-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wr-hero-content {
  text-align: center;
}


.wr-hero p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px); color: var(--muted);
  /*max-width: 560px; line-height: 1.6;*/
  position: relative; z-index: 2; margin-bottom: 40px;
}
.wr-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; position: relative; z-index: 2;
}

/* ── BUTTONS ── */
.wr-btn-primary {
  background: var(--ink); color: #fff;
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  text-decoration: none; transition: all .2s; display: inline-block;
}
.wr-btn-primary:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,86,219,0.3);
}
.wr-btn-secondary {
  background: transparent; color: var(--border);
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: all .2s; display: inline-block;
}
.wr-btn-secondary:hover {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,86,219,0.3);
  border: 1.5px solid #ffffff00;
}

/* ── STATS BAR ── */
.wr-stats {
  background: var(--ink); color: #fff;
  padding: 28px 5vw;
  display: flex; justify-content: center;
  gap: clamp(32px, 6vw, 80px); flex-wrap: wrap;
}
.wr-stat { text-align: center; }
.wr-stat-num {
  font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; display: block;
}
.wr-stat-label { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── SECTIONS ── */
.wr-section { padding: 100px 5vw; }
.wr-section-inner { max-width: 1100px; margin: 0 auto; }
.wr-section-center { text-align: center; }
.wr-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.wr-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.wr-subtitle {
  font-size: 17px; color: var(--muted);
  max-width: 520px; line-height: 1.6; margin-bottom: 56px;
}
.wr-section-center .wr-subtitle { margin-left: auto; margin-right: auto; }

/* ── HOW IT WORKS ── */
.wr-how { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wr-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden;
}
.wr-step { background: var(--card); padding: 40px 32px; }
.wr-step-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.wr-step-num {
  font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800;
  color: var(--border); line-height: 1; margin-bottom: 20px; display: block;
}
.wr-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.wr-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── FEATURES GRID ── */
.wr-features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.wr-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all .3s; position: relative; overflow: hidden;
}
.wr-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.wr-card:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.wr-card:hover::before { transform: scaleX(1); }
.wr-card-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #f0f4ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.wr-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.wr-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.wr-tag {
  display: inline-block; margin-top: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: #eff6ff; padding: 3px 10px; border-radius: 100px;
}
.wr-tag.green { color: var(--accent2); background: #ecfdf5; }
.wr-tag.orange { color: var(--warn); background: #fffbeb; }

/* ── FRAUD SECTION ── */
.wr-fraud { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.wr-fraud::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.2), transparent 70%);
  pointer-events: none;
}
.wr-fraud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wr-fraud .wr-label { color: #f87171; }
.wr-fraud .wr-title { color: #fff; }
.wr-fraud-desc { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.wr-fraud-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.wr-fraud-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.8); }
.wr-fraud-list li::before { content: '→'; color: #f87171; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.wr-fraud-visual {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px;
}
.wr-fraud-log-title {
  font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.wr-log-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 10px; margin-bottom: 10px; font-size: 13px;
}
.wr-log-item.alert { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); }
.wr-log-item.warn  { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); }
.wr-log-item.ok    { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); }
.wr-log-cc { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; }
.wr-log-item.alert .wr-log-cc { color: #fca5a5; }
.wr-log-item.warn  .wr-log-cc { color: #fcd34d; }
.wr-log-item.ok    .wr-log-cc { color: #6ee7b7; }
.wr-log-desc { color: rgba(255,255,255,0.6); flex: 1; }
.wr-log-badge {
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 100px;
}
.wr-log-item.alert .wr-log-badge { background: rgba(239,68,68,0.3); color: #fca5a5; }
.wr-log-item.warn  .wr-log-badge { background: rgba(245,158,11,0.3); color: #fcd34d; }
.wr-log-item.ok    .wr-log-badge { background: rgba(16,185,129,0.3); color: #6ee7b7; }
.wr-fraud-stats {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(255,255,255,0.05); border-radius: 8px;
  display: flex; gap: 24px;
}
.wr-fraud-stat-num { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; }
.wr-fraud-stat-num.red    { color: #fca5a5; }
.wr-fraud-stat-num.yellow { color: #fcd34d; }
.wr-fraud-stat-num.green  { color: #6ee7b7; }
.wr-fraud-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ── PPP ── */
.wr-ppp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wr-ppp-visual {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.wr-ppp-head {
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
}
.wr-ppp-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.wr-ppp-row:last-child { border-bottom: none; }
.wr-ppp-flag { font-size: 22px; }
.wr-ppp-name { flex: 1; font-size: 14px; font-weight: 500; }
.wr-ppp-price { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; }
.wr-disc {
  font-size: 12px; font-weight: 600; padding: 2px 8px;
  border-radius: 100px; margin-left: 8px;
}
.wr-disc.none { background: #f3f4f6; color: var(--muted); }
.wr-disc.low  { background: #eff6ff; color: var(--accent); }
.wr-disc.mid  { background: #fef3c7; color: #92400e; }
.wr-disc.high { background: #fce7f3; color: #9d174d; }
.wr-disc.plus { background: #f0fdf4; color: #065f46; }

/* ── ORDER SNAPSHOT ── */
.wr-snapshot { background: #f8f7f2; border-top: 1px solid var(--border); }
.wr-snapshot-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.wr-order-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.wr-order-head {
  padding: 16px 20px; background: var(--ink); color: #fff;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
.wr-order-head span { color: rgba(255,255,255,0.4); font-size: 11px; }
.wr-order-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 13px;
}
.wr-order-row:last-child { border-bottom: none; }
.wr-order-label { color: var(--muted); }
.wr-order-val { font-weight: 600; font-family: 'Syne', sans-serif; }
.wr-order-val.blue  { color: var(--accent); }
.wr-order-val.green { color: var(--accent2); }
.wr-order-val.muted { font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; }

/* ── packages ── */
.wr-packages { background: var(--card); border-top: 1px solid var(--border); }
.wr-packages-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 860px; margin: 0 auto;
}
.wr-plan {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 40px 36px; transition: all .3s;
}
.wr-plan:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
.wr-plan.featured { background: var(--ink); border-color: var(--ink); color: #fff; position: relative; }
.wr-plan.featured::before {
  content: 'COMING SOON'; position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 100px;
}
.wr-plan-name {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.wr-plan.featured .wr-plan-name { color: rgba(255,255,255,0.5); }
.wr-plan-price {
  font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
}
.wr-plan-price sup { font-size: 24px; vertical-align: super; margin-right: 2px; }
.wr-plan-period { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.wr-plan.featured .wr-plan-period { color: rgba(255,255,255,0.5); }
.wr-plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.wr-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.wr-plan-features li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: #ecfdf5; color: var(--accent2); display: flex;
  align-items: center; justify-content: center; font-size: 11px;
  font-weight: 700; flex-shrink: 0;
}
.wr-plan.featured .wr-plan-features li { color: rgba(255,255,255,0.8); }
.wr-plan.featured .wr-plan-features li::before { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.wr-plan-cta {
  display: block; text-align: center; padding: 14px 28px;
  border-radius: 100px; font-size: 15px; font-weight: 500;
  font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all .2s;
}
.wr-plan-cta.outline { border: 1.5px solid var(--ink); color: var(--ink); }
.wr-plan-cta.outline:hover { background: var(--ink); color: #fff; }
.wr-plan-cta.solid { background: #fff; color: var(--ink); }
.wr-plan-cta.solid:hover { background: var(--accent); color: #fff; }
.wr-ppp-note {
  margin-top: 24px; padding: 16px 20px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; font-size: 14px; color: #065f46; text-align: center;
  max-width: 860px; margin-left: auto; margin-right: auto;
}

/* ── TESTIMONIALS ── */
.wr-testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.wr-testimonial {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.wr-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; }
.wr-testimonial-text { font-size: 15px; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.wr-testimonial-author { display: flex; align-items: center; gap: 12px; }
.wr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.wr-author-name { font-weight: 600; font-size: 14px; }
.wr-author-role { font-size: 12px; color: var(--muted); }

/* ── CTA SECTION ── */
.wr-cta {
  background: var(--ink); color: #fff;
  text-align: center; padding: 120px 5vw; position: relative; overflow: hidden;
}
.wr-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(26,86,219,0.3), transparent 70%);
  pointer-events: none;
}
.wr-cta h2 { font-size: clamp(32px, 5vw, 64px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; position: relative; z-index: 1; }
.wr-cta p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 40px; line-height: 1.6; position: relative; z-index: 1; }
.wr-cta .wr-btn-primary { background: #fff; color: var(--ink); font-size: 16px; padding: 18px 40px; position: relative; z-index: 1; }
.wr-cta .wr-btn-primary:hover { background: var(--accent); color: #fff; }

/* ── FOOTER ── */
.wr-footer {
  background: #070709; color: rgba(255,255,255,0.4);
  padding: 48px 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.wr-footer .wr-nav-logo { color: #fff; }
.wr-footer p { font-size: 13px; }
.wr-footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
.wr-footer a:hover { color: #fff; }
.wr-footer-links { display: flex; gap: 20px; }

/* ── FADE ANIMATIONS ── */
.wr-fade {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.wr-fade.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO — AURORA BACKGROUND
══════════════════════════════════════════ */
.wr-hero {
  background: var(--paper);
  position: relative;
}
.wr-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
/* aurora-mid artık JS inject ediyor, CSS placeholder yeterli */
.wr-hero-aurora-mid { display: none; }

/* Eğer JS yoksa yedek gradient */
.wr-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 219, 0.15) 0%,
    rgba(124, 58, 237, 0.1) 50%,
    transparent 100%
  );
  z-index: 0;
}

/* ══════════════════════════════════════════
   CTA — READY TO SELL GLOBALLY
   yazı glow + arka plan pulse
══════════════════════════════════════════ */
.wr-cta {
  position: relative;
  overflow: hidden;
}
.wr-cta > * { position: relative; z-index: 1; }

/* Staggered glow — her harf ayrı yanıp söner */
.wr-cta-title-wrap {
  display: block;
  margin-bottom: 20px;
}
.wr-cta h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.03em;
  display: inline;
}
.wr-glow-char {
  display: inline-block;
  animation: charGlow 3s ease-in-out infinite;
  color: #fff;
}
/* Her harf için delay — JS ile atanacak */
@keyframes charGlow {
  0%, 100% { color: #fff; text-shadow: none; }
  50% { color: #93c5fd; text-shadow: 0 0 20px rgba(147,197,253,0.8), 0 0 40px rgba(26,86,219,0.4); }
}

/* ══════════════════════════════════════════
   HOVER — FEATURE CARDS (enerjik)
══════════════════════════════════════════ */
.wr-card {
  transition: all .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.wr-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent) !important;
  box-shadow: 0 20px 50px rgba(26,86,219,0.15);
}
.wr-card:hover .wr-card-icon {
  background: var(--accent);
  transform: scale(1.15) rotate(-5deg);
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wr-card-icon {
  transition: all .3s ease;
}

/* ══════════════════════════════════════════
   HOVER — HOW IT WORKS STEPS
══════════════════════════════════════════ */
.wr-step {
  transition: all .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.wr-step:hover {
  background: #0a0a0f;
  transform: scale(1.03);
  z-index: 2;
  position: relative;
}
.wr-step:hover h3 { color: #fff; }
.wr-step:hover p  { color: rgba(255,255,255,0.6); }
.wr-step:hover .wr-step-num { color: rgba(255,255,255,0.2); }
.wr-step:hover .wr-step-icon { filter: saturate(2) brightness(1.3); transform: scale(1.2); }
.wr-step-icon { transition: all .3s ease; display: block; }
.wr-step h3, .wr-step p, .wr-step .wr-step-num { transition: color .25s ease; }

/* ══════════════════════════════════════════
   HOVER — TESTIMONIALS
══════════════════════════════════════════ */
.wr-testimonial {
  transition: all .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.wr-testimonial:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(26,86,219,0.12);
}
.wr-testimonial:hover .wr-avatar {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
}
.wr-avatar { transition: all .3s ease; }

/* ══════════════════════════════════════════
   HOVER — PPP TABLE ROWS
══════════════════════════════════════════ */
.wr-ppp-row {
  transition: all .2s ease;
  border-radius: 8px;
  padding-left: 8px; padding-right: 8px;
  margin-left: -8px; margin-right: -8px;
}
.wr-ppp-row:hover {
  background: #f0f4ff;
  transform: translateX(6px);
}
.wr-ppp-row:hover .wr-ppp-price {
  color: var(--accent);
}
.wr-ppp-price { transition: color .2s ease; }

/* ══════════════════════════════════════════
   HOVER — ORDER SNAPSHOT ROWS
══════════════════════════════════════════ */
.wr-order-row {
  transition: background .2s ease;
}
.wr-order-row:hover {
  background: #f8f9ff;
}
.wr-order-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wr-order-card {
  transition: all .3s ease;
}

/* ══════════════════════════════════════════
   HOVER — FRAUD LOG ITEMS
══════════════════════════════════════════ */
.wr-log-item {
  transition: all .2s ease;
  cursor: default;
}
.wr-log-item:hover {
  transform: translateX(6px) scale(1.01);
}
.wr-log-item.alert:hover { background: rgba(239,68,68,0.25); }
.wr-log-item.warn:hover  { background: rgba(245,158,11,0.25); }
.wr-log-item.ok:hover    { background: rgba(16,185,129,0.25); }

/* Fraud + dark sections: canvas blobs */
.wr-fraud {
  position: relative; overflow: hidden;
}
.wr-fraud .wr-section-inner { position: relative; z-index: 1; }
.wr-blob-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ══════════════════════════════════════════
   HOVER — packages CARDS
══════════════════════════════════════════ */
.wr-plan {
  transition: all .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wr-plan:not(.featured):hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(26,86,219,0.15);
}
.wr-plan.featured:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 60px rgba(26,86,219,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wr-fraud-grid, .wr-ppp-grid, .wr-snapshot-grid { grid-template-columns: 1fr; gap: 40px; }
  .wr-packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wr-nav-links { display: none; }
  .wr-float { display: none; }
  .wr-section { padding: 60px 5vw; }
}
/* FLOAT ELEMENTS - Animasyon ekleyin */
.wr-float {
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  user-select: none;
  will-change: transform, opacity;
  
  /* ✅ EKLE: Random başlangıç pozisyonu için */
  animation: floatDrift 20s ease-in-out infinite;
}

/* ✅ EKLE: Temel animasyon */
@keyframes floatDrift {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.7;
  }
  25% { 
    transform: translate(10px, -10px) rotate(1deg);
    opacity: 1;
  }
  50% { 
    transform: translate(-5px, -20px) rotate(-1deg);
    opacity: 0.8;
  }
  75% { 
    transform: translate(15px, -15px) rotate(0.5deg);
    opacity: 0.9;
  }
}

/* ✅ EKLE: Her float'a farklı hız */
.wr-float:nth-child(2n) { animation-duration: 25s; animation-delay: -2s; }
.wr-float:nth-child(3n) { animation-duration: 18s; animation-delay: -5s; }
.wr-float:nth-child(4n) { animation-duration: 22s; animation-delay: -8s; }