/* ============================================================
   HERO + VIBE DETOX
   "AI ile üretilmiş site" hissini veren şablon öğelerini söker.
   styles.css'TEN SONRA yüklenir; cascade'i kazanır.
   ============================================================ */

/* 1) Uçuşan noktalar & holografik zemin GİTSİN (en büyük "AI template" işareti) */
.holo-particles,
.holo-particle,
.holo-bg {
    display: none !important;
}

/* 2) Arka plan detoksu — neon mor yıkama yerine derin, kasıtlı, premium zemin.
      Üstte çok hafif sıcak bir ışık, gövde neredeyse siyah. */
body {
    background: #0a0a0f !important;
    background-image:
        radial-gradient(120% 75% at 50% -8%, rgba(255, 70, 120, 0.10), transparent 55%),
        radial-gradient(90% 60% at 85% 5%, rgba(120, 60, 200, 0.08), transparent 50%) !important;
    background-attachment: fixed !important;
}

/* ---------- HERO ---------- */

/* Başlık — daha sıkı, daha iddialı, daha az "şablon" */
.hero-main .hero-headline {
    font-size: clamp(36px, 8.5vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}
/* Vurgu satırı: neon gradient yerine TEMİZ tek renk (gradient'in kendisi AI klişesi) */
.hero-main .hero-headline .highlight {
    display: block;
    margin-top: 2px;
    background: none;
    -webkit-text-fill-color: #ff4d79;
    color: #ff4d79;
}

/* Açıklama — daha okunaklı, daha sakin */
.hero-main .hero-description {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.60);
    max-width: 470px;
}

/* CTA — sakin, kendinden emin (daha az neon parıltı).
   styles.css gradient'i daha güçlü tanımlı, o yüzden !important + background-image:none gerekiyor. */
.hero-main .cta-primary {
    padding: 17px 36px;
    border-radius: 14px;
    background-image: none !important;
    background-color: #ff2d6e !important;
    box-shadow: 0 10px 28px rgba(255, 45, 110, 0.28);
}
.hero-main .cta-primary:hover {
    transform: translateY(-2px);
    background-color: #ff3f79 !important;
    box-shadow: 0 16px 38px rgba(255, 45, 110, 0.38);
}

/* Butonun altındaki sürtünme kırıcı satır */
.hero-main .cta-subtext {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 2px;
    letter-spacing: 0.01em;
}

/* Güven satırı — daha sakin, yeşil tikler kalsın (olumlu sinyal) */
.hero-main .trust-point {
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- Telefon görseli ---------- */
.hero-visual {
    cursor: pointer;
    position: relative;
}
.hero-visual .phone-mockup {
    background: linear-gradient(165deg, #15151d, #0c0c12);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: heroPhoneFloat 6s ease-in-out infinite;
}
.hero-visual:hover .phone-mockup {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
@keyframes heroPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-visual .phone-mockup { animation: none; }
}

/* ============================================================
   TOOL-FIRST HERO (rf-)  — şablon iskeletini kırar:
   telefon maketi yok, sayfanın kalbi doğrudan yükleme aksiyonu.
   ============================================================ */
.rf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 22px 60px;
    position: relative;
    z-index: 1;
}
.rf-hero-inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.rf-headline {
    font-size: clamp(34px, 9vw, 52px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: #fff;
}
.rf-accent { color: #ff4d79; display: block; margin-top: 6px; }

/* Duygusal hero için büyük, çarpıcı CTA */
.rf-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-image: none !important;
    background-color: #ff2d6e !important;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 34px rgba(255, 45, 110, 0.35);
}
.rf-cta:hover {
    transform: translateY(-3px);
    background-color: #ff3f79 !important;
    box-shadow: 0 18px 46px rgba(255, 45, 110, 0.45);
}
.rf-cta-sub {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.01em;
}

/* Gizlilik güvencesi (fotoğraf yükleme kaygısını kırar) */
.rf-privacy {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
}
.rf-privacy i { color: rgba(255, 255, 255, 0.55); font-size: 12px; }

.rf-sub {
    margin: 18px auto 30px;
    max-width: 440px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.60);
}
.rf-sub strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* Yükleme alanı — sayfanın kalbi */
.rf-drop {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px 22px;
    border-radius: 20px;
    /* id="hero-start-btn" gradient'ini ezmek için !important gerekiyor */
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1.5px dashed rgba(255, 77, 121, 0.45);
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.rf-drop:hover {
    background-color: rgba(255, 77, 121, 0.08) !important;
    border-color: #ff4d79;
    transform: translateY(-2px);
}
.rf-drop-ring {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(255, 77, 121, 0.25), transparent 70%);
    border: 2px solid rgba(255, 77, 121, 0.5);
    color: #fff;
}
.rf-drop-ring span { font-size: 24px; font-weight: 800; line-height: 1; }
.rf-drop-ring small { font-size: 10px; color: rgba(255, 255, 255, 0.5); }
.rf-drop-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.rf-drop-text strong { font-size: 17px; font-weight: 700; color: #fff; }
.rf-drop-text span { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }
.rf-drop-arrow { color: #ff4d79; font-size: 18px; flex-shrink: 0; }

.rf-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}
.rf-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.rf-trust i { color: #22c55e; font-size: 11px; }
.rf-trust span:last-child i { color: rgba(255, 255, 255, 0.45); }

/* ---------- Mobil cila (ana görünüm) ---------- */
@media (max-width: 900px) {
    .hero-main .hero-description { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
    .hero-main { padding-top: 88px; }
    .hero-main .hero-headline { font-size: clamp(34px, 9.5vw, 46px); }
}
