/* Central CSS for v/index.php */
:root {
  --grad-a: #667eea;
  --grad-b: #764ba2;
  --grad-c: #8b5cf6;
  --bg: #e0e7ff;
  --text: #ffffff;
}

/* HERO */
.v-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 50%, var(--grad-c) 100%);
  color: #fff;
  overflow: hidden;
  max-width: 90%;
  margin: 2rem auto;
  border-radius: 28px;
  width: 90%;
  box-sizing: border-box;
}
.v-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

.v-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* Başlık */
.v-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Alt yazı */
.v-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  margin: 0 0 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 620px;
}

/* Özellikler */
.v-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  width: 100%;
}

.v-hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.v-hero__feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* CTA Butonu */
.v-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--grad-a);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.v-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.v-hero__cta svg {
  width: 18px;
  height: 18px;
}

/* Orblar */
.v-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.v-hero__orb--1 { width: 700px; height: 700px; top: -250px; left: -150px; background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, transparent 60%); animation: vOrb1 18s ease-in-out infinite; }
.v-hero__orb--2 { width: 600px; height: 600px; bottom: -200px; right: -150px; background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, transparent 60%); animation: vOrb2 15s ease-in-out infinite; }
.v-hero__orb--3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%); animation: vOrb3 12s ease-in-out infinite; }

@keyframes vOrb1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(60px,40px) scale(1.05);} }
@keyframes vOrb2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-40px,-20px) scale(1.08);} }
@keyframes vOrb3 { 0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:0.2;} 50%{ transform: translate(-50%,-50%) scale(1.15); opacity:0.4;} }

/* STATS */
.v-stats { padding: 1.75rem; }
.v-stats__grid { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.v-stat { background:#fff; border-radius:12px; padding:1rem 1.25rem; box-shadow:0 2px 12px rgba(0,0,0,0.08); min-width:260px; display:flex; align-items:center; gap:.75rem; }
.v-stat__ico { width:42px; height:42px; border-radius:8px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); color:#fff; }
.v-stat__val { font-weight:800; font-size:1.35rem; background: linear-gradient(135deg, #40b338, #ddd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.v-stat__lbl { font-size:.75rem; color:#555; font-weight:600; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .v-hero { width: 94%; max-width: 94%; padding: 3rem 1.5rem; min-height: 45vh; }
}

@media (max-width: 600px) {
  .v-hero { 
    width: 96%; 
    max-width: 96%; 
    margin: 1rem auto; 
    border-radius: 20px; 
    padding: 2.5rem 1.25rem;
    min-height: auto;
  }
  .v-hero__title { font-size: 1.85rem; margin-bottom: 0.875rem; }
  .v-hero__subtitle { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .v-hero__features { gap: 0.5rem; margin-bottom: 1.5rem; }
  .v-hero__feature { 
    padding: 0.5rem 0.875rem; 
    font-size: 0.82rem;
  }
  .v-hero__feature svg { width: 16px; height: 16px; }
  .v-hero__cta { 
    padding: 0.875rem 1.75rem; 
    font-size: 0.95rem;
    width: auto;
    min-width: 200px;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
  }
  .v-stat { min-width: 100%; }
}