/*
Theme Name: Futia
Theme URI: https://futia.net
Author: Futia
Author URI: https://futia.net
Description: Yapay Zeka Destekli Otomasyon Çözümleri - Modern, koyu temalı WordPress teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: futia
*/

/* ========================================
   FUTIA - Modern Dark Theme Styles
   ======================================== */

/* CSS Variables */
:root {
    --bg-primary: #0c0b14;
    --bg-secondary: #110f1d;
    --bg-tertiary: #16132a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    /* Glassmorphism tokens */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.16);
    --glass-blur: 16px;
    --glass-blur-heavy: 24px;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7a;

    --accent-primary: #8b5cf6;
    --accent-secondary: #6366f1;
    --accent-tertiary: #06b6d4;

    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-glow: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    --gradient-accent-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 50%, rgba(6, 182, 212, 0.12) 100%);

    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.15);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-glow-lg: 0 0 80px rgba(139, 92, 246, 0.2), 0 0 160px rgba(99, 102, 241, 0.1);
    --shadow-glow-accent: 0 8px 32px rgba(139, 92, 246, 0.35);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sora', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ========================================
   Animated Cosmic Background System
   3 katman: base nebula + yildizlar + nebula pulse
   ======================================== */

/* Katman 1: Ana arka plan — yavas akan gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(88, 48, 160, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 80% 10%, rgba(6, 182, 212, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 55% 50% at 15% 75%, rgba(67, 56, 202, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 85% 85%, rgba(139, 92, 246, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 25% 20% at 5% 5%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0918 0%, #0c0b14 25%, #0e0d1a 50%, #0c0b16 75%, #080710 100%);
}

/* Katman 2: Yildiz alani — box-shadow ile 3 farkli boyut yildiz */
.cosmic-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Kucuk yildizlar — 1px */
.cosmic-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    box-shadow:
        124px 68px 0 rgba(255,255,255,0.5),
        310px 145px 0 rgba(255,255,255,0.4),
        520px 210px 0 rgba(255,255,255,0.6),
        730px 95px 0 rgba(255,255,255,0.3),
        180px 320px 0 rgba(255,255,255,0.5),
        445px 405px 0 rgba(255,255,255,0.4),
        670px 350px 0 rgba(255,255,255,0.6),
        850px 280px 0 rgba(255,255,255,0.3),
        95px 490px 0 rgba(255,255,255,0.5),
        360px 560px 0 rgba(255,255,255,0.4),
        580px 520px 0 rgba(255,255,255,0.5),
        790px 480px 0 rgba(255,255,255,0.3),
        200px 650px 0 rgba(255,255,255,0.4),
        1000px 120px 0 rgba(255,255,255,0.5),
        1100px 310px 0 rgba(255,255,255,0.4),
        1250px 180px 0 rgba(255,255,255,0.6),
        1350px 440px 0 rgba(255,255,255,0.3),
        1050px 540px 0 rgba(255,255,255,0.5),
        1180px 620px 0 rgba(255,255,255,0.4),
        1400px 90px 0 rgba(255,255,255,0.5),
        55px 180px 0 rgba(255,255,255,0.3),
        420px 42px 0 rgba(255,255,255,0.5),
        900px 580px 0 rgba(255,255,255,0.4),
        1300px 340px 0 rgba(255,255,255,0.6),
        760px 670px 0 rgba(255,255,255,0.3),
        330px 710px 0 rgba(255,255,255,0.5),
        1150px 55px 0 rgba(255,255,255,0.4),
        480px 130px 0 rgba(255,255,255,0.3),
        620px 690px 0 rgba(255,255,255,0.5),
        1020px 420px 0 rgba(255,255,255,0.4);
    animation: starTwinkle1 4s ease-in-out infinite alternate;
}

/* Orta yildizlar — 1.5px, biraz parlak */
.cosmic-stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5px;
    height: 1.5px;
    border-radius: 50%;
    box-shadow:
        280px 52px 0 rgba(139,92,246,0.6),
        650px 180px 0 rgba(255,255,255,0.7),
        1080px 260px 0 rgba(6,182,212,0.6),
        400px 380px 0 rgba(255,255,255,0.6),
        150px 510px 0 rgba(139,92,246,0.5),
        820px 420px 0 rgba(255,255,255,0.7),
        550px 600px 0 rgba(6,182,212,0.5),
        1200px 150px 0 rgba(255,255,255,0.6),
        70px 350px 0 rgba(139,92,246,0.6),
        960px 80px 0 rgba(255,255,255,0.7),
        1320px 500px 0 rgba(6,182,212,0.6),
        240px 440px 0 rgba(255,255,255,0.5),
        710px 560px 0 rgba(139,92,246,0.5),
        1100px 650px 0 rgba(255,255,255,0.6),
        460px 250px 0 rgba(6,182,212,0.6),
        890px 340px 0 rgba(255,255,255,0.7),
        1380px 220px 0 rgba(139,92,246,0.5),
        170px 680px 0 rgba(6,182,212,0.5);
    animation: starTwinkle2 5s ease-in-out infinite alternate;
}

/* Katman 3: Hareket eden nebula glow'lar */
.cosmic-nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

/* Nebula 1 — Mor, yavascar saga kayar */
.cosmic-nebula::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.10) 0%, rgba(88, 48, 160, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: nebulaFloat1 20s ease-in-out infinite alternate;
}

/* Nebula 2 — Cyan, sola kayar */
.cosmic-nebula::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 55%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.08) 0%, rgba(59, 130, 246, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: nebulaFloat2 25s ease-in-out infinite alternate;
}

/* Hafif noise/grain texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
}

/* ========================================
   Cosmic Animasyonlar
   ======================================== */

/* Yildiz titresimleri — farkli gruplar farkli ritimde */
@keyframes starTwinkle1 {
    0%   { opacity: 0.6; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes starTwinkle2 {
    0%   { opacity: 0.4; }
    50%  { opacity: 0.9; }
    100% { opacity: 0.6; }
}

/* Nebula hareket — yavas suruklenir */
@keyframes nebulaFloat1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50%  { transform: translate(4%, 3%) scale(1.05); opacity: 1; }
    100% { transform: translate(8%, -2%) scale(1.02); opacity: 0.8; }
}

@keyframes nebulaFloat2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50%  { transform: translate(-5%, -3%) scale(1.06); opacity: 1; }
    100% { transform: translate(-3%, 4%) scale(1.03); opacity: 0.7; }
}

/* prefers-reduced-motion: animasyonlari durdur */
@media (prefers-reduced-motion: reduce) {
    .cosmic-stars::before,
    .cosmic-stars::after {
        animation: none;
    }
    .cosmic-nebula::before,
    .cosmic-nebula::after {
        animation: none;
    }
}

/* Tüm içerik z-index ayarı */
.header,
main,
.footer,
section,
.container {
    position: relative;
    z-index: 1;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* Text glow for headings */
.glow-text {
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3), 0 0 80px rgba(99, 102, 241, 0.15);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(79, 70, 229, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 20px rgba(124, 58, 237, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: hv2GlassShine 4s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(99, 102, 241, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 30px rgba(124, 58, 237, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 -1px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-outline:hover::before {
    left: 200%;
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 -1px 4px rgba(0, 0, 0, 0.1);
}

@keyframes hv2GlassShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 11, 20, 0.7);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* WordPress Admin Bar — header'i admin bar altina kaydir */
body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #fff 30%, #8b5cf6 65%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    font-size: 14px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.current-menu-item::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 18px;
}

.social-icons a:hover {
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========================================
   Hero Section — Premium Design v2
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}



/* ========================================
   CSS Arka Plan Sistemi
   Gorsel yerine CSS gradient ile derinlik
   ======================================== */

/* Gradient Orb Container */
/* Hero Orb Container'lari — gizli
   Yekpare gorunum icin section-level orb'lar devre disi.
   Tum gorsel derinlik body::before cosmic bg'den gelir. */
.hero-bg,
.kanal-hero-bg,
.hakkimizda-hero .hero-bg-effects,
.blog-hero-bg,
.single-hero-bg,
.error-hero-bg,
[class*="-hero-bg"],
.gradient-orb {
    display: none;
}

/* ========================================
   Section Arka Planlari
   Tamamen transparan — cosmic body bg yekpare akar
   Section'lar kendi basina arka plan TASIMAZ.
   ======================================== */

.hero,
.services,
.about,
.cta,
.contact,
.blog-hero,
.blog-section,
.single-post-hero,
.error-hero,
.page-header,
.kanal-hero,
.kanallar-section,
.kanal-howto,
.kanal-features,
.kanal-faq,
.kanal-final-cta,
.hakkimizda-hero,
.hakkimizda-hikaye,
.hakkimizda-misyon-vizyon,
.hakkimizda-stats,
.hakkimizda-degerler,
.hakkimizda-ekip,
.hakkimizda-yorumlar,
.hakkimizda-cta,
.hediye-hero,
.hediye-upsell-services,
.hediye-features,
.hediye-why,
.hediye-cta,
.otomasyon-hero,
.otomasyon-howto,
.otomasyon-features,
.otomasyon-pricing,
.otomasyon-faq,
.otomasyon-final-cta,
.yt-hero,
.yt-problems,
.yt-process,
.yt-tech,
.yt-pricing,
.yt-after,
.yt-proof,
.yt-faq,
.ai-hero,
.ai-showcase,
.kit-hero,
.password-hero {
    background: none !important;
}

/* Footer — sadece alt kisimda hafif karartma (fade to black) */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(5, 4, 10, 0.6) 100%) !important;
}

/* --- Hero Content --- */
.hero .container {
    display: block;
    max-width: 1200px;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* FUTIA Brand Text */
.hero-brand-text {
    display: block;
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 900;
    letter-spacing: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 25%, #06b6d4 50%, #a78bfa 75%, #8b5cf6 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroBrandShift 8s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.25));
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

@keyframes heroBrandShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* FUTURE IS AI Pill — dokunulmadi, sadece glow eklendi */
.hero-tagline {
    margin-bottom: 40px;
    text-align: center;
}

.hero-tagline > span {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 50%, #06b6d4 100%);
    border-radius: 60px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow:
        0 0 25px rgba(139, 92, 246, 0.3),
        0 0 50px rgba(139, 92, 246, 0.10);
    animation: heroTaglineGlow 4s ease-in-out infinite;
}

@keyframes heroTaglineGlow {
    0%, 100% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.3), 0 0 50px rgba(139, 92, 246, 0.10); }
    50% { box-shadow: 0 0 35px rgba(139, 92, 246, 0.45), 0 0 70px rgba(139, 92, 246, 0.15); }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 14px;
    color: var(--text-secondary);
}

/* Hero Title */
.hero-title {
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 30%, #06b6d4 70%, #8b5cf6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleGradient 5s ease-in-out infinite;
}

@keyframes heroTitleGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
    justify-content: center;
}

/* Hero Stats — Glass Card */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px 8px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 28px;
    transition: var(--transition);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-image {
    display: none;
}

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.08);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%);
    border-color: rgba(139, 92, 246, 0.25);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-features i {
    color: var(--accent-tertiary);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Stretched link - makes entire card clickable */
.service-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   Popular Services (Homepage) - Purple Gradient
   ======================================== */
.popular-services .services-grid {
    margin-bottom: 50px;
}

.popular-card {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 50px 40px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popular-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popular-card:hover {
    background: rgba(139, 92, 246, 0.06) !important;
    border-color: rgba(139, 92, 246, 0.35) !important;
    transform: translateY(-10px);
    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.15),
        0 0 60px rgba(139, 92, 246, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.3);
}

.popular-card:hover::before {
    opacity: 1;
}

.popular-card:hover::after {
    opacity: 1;
}

.popular-card .service-icon {
    width: 72px;
    height: 72px;
    font-size: 30px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.popular-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.popular-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.popular-card .service-features {
    margin-bottom: 30px;
}

.popular-card .service-features li {
    font-size: 15px;
    padding: 8px 0;
}

.popular-card .service-features i {
    color: var(--accent-primary);
}

.popular-card .service-link {
    color: white;
    background: var(--gradient-primary);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    display: inline-flex;
    margin-top: auto;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.popular-card .service-link:hover {
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.services-all-link {
    text-align: center;
}

/* ========================================
   Services Page Styles
   ======================================== */
.services-page {
    background: var(--bg-primary);
}

.services-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--bg-secondary);
}

.services-hero .page-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.services-hero .page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-section {
    padding: 80px 0;
}

.services-grid-section .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Clickable Card Link Wrapper */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.services-grid-section .service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.services-grid-section .service-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
}

.services-grid-section .service-card:hover .service-cta {
    background: var(--accent-primary);
    color: white;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.badge-popular {
    background: var(--gradient-primary);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-discount {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

/* Service Card Elements */
.services-grid-section .service-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    margin-bottom: 18px;
}

.services-grid-section .service-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.services-grid-section .service-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.services-grid-section .service-features {
    margin-bottom: 15px;
}

.services-grid-section .service-features li {
    font-size: 12px;
    padding: 5px 0;
}

.services-grid-section .service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 18px;
}

/* Service CTA Highlight (Turuncu Vurgulu Metin) */
.service-cta-highlight {
    color: #f97316;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Service CTA Buttons */
.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    margin-top: auto;
}

.service-cta.btn-detail {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.service-cta.btn-purchase {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.service-cta.btn-purchase:hover {
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

/* Services CTA Section */
.services-cta-section {
    padding: 0 0 100px;
}

.services-cta-box {
    background: rgba(139, 92, 246, 0.06);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.services-cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.services-cta-box p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.no-services {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

/* Services Page Responsive */
@media (max-width: 1200px) {
    .services-grid-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-hero .page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-grid-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero {
        padding: 100px 0 40px;
    }
    
    .services-hero .page-title {
        font-size: 28px;
    }
    
    .services-cta-box {
        padding: 40px 25px;
    }
    
    .services-cta-box h2 {
        font-size: 24px;
    }
}

/* ========================================
   About Section
   ======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-badge {
    text-align: left;
    display: inline-block;
}

.about-text .section-title {
    text-align: left;
}

.about-description {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 40px;
    text-align: left;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: center;
}

.about-feature .feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature:hover .feature-icon {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.feature-content {
    text-align: left;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 50px;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.about-card .card-glow {
    top: -50px;
    right: -50px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-stat {
    text-align: center;
}

.about-stat i {
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.about-stat .number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.about-stat .label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Steps */
.cta-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 35px;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.3s;
}

.cta-step:hover {
    border-color: var(--accent-primary);
}

.cta-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-step span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.cta-step-arrow {
    color: var(--text-muted, #555);
    font-size: 0.7rem;
    opacity: 0.4;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

/* Trust Row */
.cta-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.cta-trust-row i {
    color: var(--accent-tertiary, #10b981);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-steps {
        flex-direction: column;
        gap: 8px;
    }

    .cta-step-arrow {
        transform: rotate(90deg);
    }

    .cta-step {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .cta-trust-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-details a:hover {
    color: var(--accent-primary);
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

/* ── Floating Social Icons (Faceless.so style) ── */
.social-floating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sf-icon-wrap {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    animation: sf-float 3s ease-in-out infinite;
}

.sf-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sf-icon-wrap:hover .sf-glow {
    opacity: 1;
}

.sf-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-icon-wrap:hover .sf-icon {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Brand colors */
.sf-icon.sf-tiktok    { background: #000000; }
.sf-icon.sf-youtube   { background: #ff0033; }
.sf-icon.sf-instagram { background: linear-gradient(135deg, #833ab4, #e1306c, #f77737); }
.sf-icon.sf-facebook  { background: #1877f2; }
.sf-icon.sf-x         { background: #1a1a1a; }

/* Glow colors */
.sf-glow.sf-tiktok    { background: rgba(255, 255, 255, 0.15); }
.sf-glow.sf-youtube   { background: rgba(255, 0, 51, 0.3); }
.sf-glow.sf-instagram { background: rgba(225, 48, 108, 0.3); }
.sf-glow.sf-facebook  { background: rgba(24, 119, 242, 0.3); }
.sf-glow.sf-x         { background: rgba(255, 255, 255, 0.15); }

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

/* Legacy fallback — footer & blog social links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b6b7a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group select optgroup {
    background: var(--bg-primary, #151524);
    color: rgba(255, 255, 255, 0.45);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
}

/* WordPress Form Styles */
.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.wpcf7-submit {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    max-width: 300px;
}

.footer-logo {
    display: block;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a,
.footer-column li {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-column li i {
    width: 16px;
    margin-right: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================================
   Mobile Menu
   ======================================== */

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(17, 15, 29, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 20px 30px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    margin-bottom: 30px;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
}

.mobile-social {
    display: flex;
    gap: 15px;
}

.mobile-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0 0;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

/* ========================================
   Blog Styles
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.06);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card h3 a:hover {
    color: var(--accent-primary);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Single Post - Legacy (overridden by new styles) */
/* .single-post eski stiller artık kullanılmıyor */

.single-post h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--accent-primary);
}

.post-thumbnail {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-content {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}

.post-content h2,
.post-content h3 {
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content a {
    color: var(--accent-primary);
}

.post-content img {
    border-radius: var(--radius-md);
    margin: 30px 0;
}

/* Post Footer */
.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-tags {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.post-tags strong {
    color: var(--text-primary);
    margin-right: 10px;
}

.post-tags a {
    color: var(--accent-primary);
}

.post-share {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.post-share strong {
    color: var(--text-primary);
    margin-right: 5px;
}

.single-post .post-footer .post-share .social-link,
.post-share .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
}

.single-post .post-footer .post-share .social-link:hover,
.post-share .social-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-primary);
}

/* ========================================
   Page Styles
   ======================================== */

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    display: none;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content .container {
    max-width: 900px;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text .section-badge {
        display: block;
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-features {
        text-align: left;
    }
    
    .about-feature {
        justify-content: flex-start;
    }
    
    .about-visual {
        order: -1;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-logo {
        display: block;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .hero-stats {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 4px;
    }

    .stat {
        text-align: center;
        padding: 12px 16px;
    }

    .stat-divider {
        height: 28px;
    }

    .hero-badges {
        justify-content: center;
    }

    section {
        padding: 70px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-brand-text {
        font-size: 48px;
        letter-spacing: 8px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-ring { display: none; }

    .hero-deco-glow-1 { width: 350px; height: 350px; }
    .hero-deco-glow-2 { width: 300px; height: 300px; }
    .hero-deco-glow-3 { width: 250px; height: 250px; }
    
    .section-header {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .about-text .section-badge,
    .about-text .section-title {
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-features {
        width: auto;
    }
    
    .about-feature {
        flex-direction: row;
        align-items: center;
    }
    
    .feature-content {
        text-align: left;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-stats-grid {
        gap: 25px;
    }
    
    .about-stat .number {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .contact-card,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-logo {
        display: block;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-brand-text {
        font-size: 38px;
        letter-spacing: 6px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-tagline > span {
        font-size: 14px;
        padding: 12px 24px;
        letter-spacing: 3px;
    }

    .container {
        padding: 0 15px;
    }

    .nav {
        height: 70px;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero-stats {
        flex-direction: column;
        border-radius: 12px;
        padding: 4px;
        width: 100%;
        max-width: 260px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto;
    }

    .stat {
        padding: 10px 16px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* Animation Styles */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle float animation for hero elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Gradient shimmer for featured badges */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-badge.badge-popular {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.header.scrolled {
    background: rgba(12, 11, 20, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(139, 92, 246, 0.05);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@media (min-width: 769px) {
    .floating-whatsapp {
        bottom: 30px;
    }
}

/* ========================================
   YOUTUBE OTOMASYON PAGE STYLES
   ======================================== */

.yt-landing {
    padding-top: 80px;
}

/* YT Hero */
.yt-hero {
    position: relative;
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.yt-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yt-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.yt-hero-text {
    max-width: 600px;
}

.yt-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.yt-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.yt-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
}

.yt-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.yt-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--accent-tertiary);
}

.yt-hero-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Problems Section */
.yt-problems {
    padding: 100px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.problem-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.solution {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.solution-icon {
    font-size: 18px;
    margin-bottom: 10px;
}

.solution p {
    font-size: 13px;
    color: var(--text-secondary);
}

.solution strong {
    color: var(--accent-tertiary);
}

.result-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.result-box i {
    font-size: 40px;
    color: var(--accent-primary);
}

.result-box p {
    font-size: 17px;
    color: var(--text-secondary);
}

.result-box strong {
    color: var(--text-primary);
}

/* Process Section */
.yt-process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    position: relative !important;
    flex-shrink: 0;
}

.step-content {
    position: relative;
    width: 100%;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Tech Section */
.yt-tech {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(139, 92, 246, 0.08);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 15px;
}

.tech-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Pricing Section */
.yt-pricing {
    padding: 100px 0;
}

.countdown-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.countdown-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pricing-section {
    margin-bottom: 60px;
}

.pricing-section-title {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-section-title i {
    color: var(--accent-primary);
}

.pricing-section-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.pricing-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(165deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.03) 100%);
}

/* ── Pricing Card Color Themes ── */
.pricing-card.pricing-teal {
    border-color: rgba(20, 184, 166, 0.2);
    background: linear-gradient(165deg, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0.04) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.pricing-card.pricing-teal:hover {
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(20, 184, 166, 0.15);
}
.pricing-card.pricing-teal .pricing-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.pricing-card.pricing-teal .pricing-features i {
    color: #14b8a6;
}

.pricing-card.pricing-purple {
    border-color: rgba(139, 92, 246, 0.2);
    background: linear-gradient(165deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.04) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.pricing-card.pricing-purple:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.15);
}
.pricing-card.pricing-purple .pricing-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.pricing-card.pricing-purple .pricing-features i {
    color: #8b5cf6;
}

.pricing-card.pricing-blue {
    border-color: rgba(59, 130, 246, 0.2);
    background: linear-gradient(165deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.pricing-card.pricing-blue:hover {
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.15);
}
.pricing-card.pricing-blue .pricing-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.pricing-card.pricing-blue .pricing-features i {
    color: #3b82f6;
}

.pricing-card.pricing-orange {
    border-color: rgba(249, 115, 22, 0.2);
    background: linear-gradient(165deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.04) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.pricing-card.pricing-orange:hover {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(249, 115, 22, 0.15);
}
.pricing-card.pricing-orange .pricing-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}
.pricing-card.pricing-orange .pricing-features i {
    color: #f97316;
}

.pricing-card.pricing-gold {
    border-color: rgba(234, 179, 8, 0.2);
    background: linear-gradient(165deg, rgba(234, 179, 8, 0.12) 0%, rgba(234, 179, 8, 0.04) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.pricing-card.pricing-gold:hover {
    border-color: rgba(234, 179, 8, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(234, 179, 8, 0.15);
}
.pricing-card.pricing-gold .pricing-icon {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}
.pricing-card.pricing-gold .pricing-features i {
    color: #eab308;
}

.pricing-card .featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
}

.pricing-header h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 20px;
}

.old-price {
    display: block;
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    display: block;
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    padding: 10px 15px;
    font-size: 14px;
    color: var(--accent-tertiary);
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--accent-tertiary);
    font-size: 12px;
}

/* After Section */
.yt-after {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.yt-after .container {
    position: relative;
    z-index: 2;
}


.after-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.after-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    transition: var(--transition);
}

.after-card:hover {
    border-color: var(--border-color-hover);
}

.after-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.after-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
}

.after-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.after-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.after-details {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--accent-primary);
    margin-top: 3px;
}

.after-price {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.after-advantage {
    color: var(--accent-tertiary);
    font-size: 14px;
    margin-bottom: 20px;
}

.after-advantage i {
    margin-right: 8px;
}

/* Proof/Success Section */
.yt-proof {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Earnings Gallery */
.earnings-gallery {
    margin-bottom: 60px;
}

.gallery-wrapper {
    position: relative;
    padding: 0 60px;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-slide {
    min-width: 420px;
    max-width: 420px;
    margin-right: 20px;
    flex-shrink: 0;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

@media (max-width: 1400px) {
    .gallery-slide {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .gallery-slide {
        min-width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .gallery-wrapper {
        padding: 0 50px;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.gallery-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.gallery-image:hover {
    border-color: var(--accent-primary);
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: var(--bg-tertiary);
    display: block;
    border-radius: var(--radius-md);
}

.gallery-overlay {
    display: none;
}

.gallery-caption {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    color: var(--accent-tertiary);
    font-size: 14px;
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active,
.gallery-dot:hover {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* Earnings Placeholder */
.earnings-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.placeholder-content i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.placeholder-content p {
    color: var(--text-secondary);
}

/* Proof Stats */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.proof-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.proof-stat:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.proof-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.proof-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Proof Testimonials Grid */
.proof-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.proof-testimonials-grid .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition);
}

.proof-testimonials-grid .testimonial-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-stars i.empty {
    color: var(--text-muted);
}

.proof-testimonials-grid .testimonial-content p {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.proof-testimonials-grid .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proof-testimonials-grid .author-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.proof-testimonials-grid .author-name {
    font-weight: 600;
    font-size: 14px;
}

/* Proof CTA */
.proof-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
}

.proof-cta h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.proof-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    z-index: 1;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-primary);
    transform: scale(1.2);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 30px rgba(139, 92, 246, 0.5);
}

.lightbox-prev-btn {
    left: 20px;
}

.lightbox-next-btn {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lightbox-prev-btn {
        left: 10px;
    }
    
    .lightbox-next-btn {
        right: 10px;
    }
    
    .lightbox-content {
        max-width: 90%;
    }
    
    .lightbox-close {
        top: -45px;
        font-size: 32px;
    }
}

/* FAQ */
.yt-faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-question i {
    color: var(--accent-primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Final CTA */
.yt-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
}


.yt-final-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.yt-final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.yt-final-cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
}

.yt-final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-trust i {
    color: var(--accent-tertiary);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 10px 15px;
    z-index: 998;
}

.mobile-sticky-cta .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
}

.sticky-btn.packages {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.sticky-btn.whatsapp {
    background: #25D366;
    color: white;
}

/* Exit Popup */
.exit-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.exit-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.popup-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 25px;
}

.popup-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-content > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 15px;
}

.popup-content .btn {
    margin-bottom: 15px;
}

.popup-skip {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

.popup-skip:hover {
    color: var(--text-secondary);
}

/* ========================================
   YOUTUBE OTOMASYON RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .proof-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .yt-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .yt-hero-text {
        max-width: 100%;
    }
    
    .yt-hero-buttons {
        justify-content: center;
    }
    
    .yt-trust-badges {
        justify-content: center;
    }
    
    .yt-hero-video {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        gap: 10px;
    }
    
    .floating-whatsapp {
        bottom: 90px;
    }
    
    .yt-hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .yt-hero-title {
        font-size: 32px;
    }
    
    .yt-hero-subtitle {
        font-size: 16px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .after-options {
        grid-template-columns: 1fr;
    }
    
    /* Proof Section Mobile */
    .gallery-slide {
        min-width: calc(100% - 20px);
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .gallery-image img {
        height: 280px;
        object-fit: contain;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .proof-stat {
        padding: 20px 15px;
    }
    
    .proof-stat-number {
        font-size: 28px;
    }
    
    .proof-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .proof-testimonials-grid .testimonial-card {
        padding: 20px;
    }
    
    .proof-cta {
        padding: 35px 25px;
    }
    
    .proof-cta h3 {
        font-size: 22px;
    }
    
    .proof-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .result-box {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .yt-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .yt-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .yt-final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .yt-final-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .popup-content {
        padding: 40px 25px;
    }
}

/* ========================================
   LEGAL PAGES STYLES
   ======================================== */

.legal-page .page-header {
    padding: 150px 0 60px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--accent-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--accent-primary);
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box i {
    color: var(--accent-primary);
    margin-right: 10px;
}

/* ========================================
   YOUTUBE BAŞLANGIÇ KİTİ SAYFA STİLLERİ
   ======================================== */

/* Kit Landing General */
.kit-landing {
    padding-top: 80px;
}

/* Kit Hero */
.kit-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.kit-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kit-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.kit-hero .orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
}

.kit-hero .orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-tertiary);
    bottom: -150px;
    left: -100px;
}

.kit-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.kit-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
}

.kit-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kit-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Price Box */
.kit-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.kit-price {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kit-price .old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.kit-price .new-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kit-savings {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    color: white;
}

/* CTA Button */
.btn-xl {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.kit-cta {
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
    to { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3); }
}

/* Trust Badges */
.kit-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.kit-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
}

.kit-trust-badges .trust-badge i {
    color: var(--accent-primary);
}

/* Kit Contents Section */
.kit-contents {
    position: relative;
    padding: 100px 20px;
    background: var(--bg-secondary);
}

.kit-contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.kit-content-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.kit-content-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.kit-content-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

.kit-content-card .content-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.kit-content-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.kit-content-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.kit-content-card .content-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

/* Video Categories Section */
.kit-categories {
    position: relative;
    padding: 100px 20px;
    background: var(--bg-primary);
}

.categories-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.category-tag {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.category-tag:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: scale(1.05);
}

.category-tag.more {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
}

/* Bonus Section */
.kit-bonus {
    position: relative;
    padding: 100px 20px;
    background: var(--bg-secondary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.bonus-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.bonus-card .bonus-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 20px;
    color: white;
}

.bonus-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.bonus-card .bonus-value {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

.bonus-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(16, 185, 129, 0.5);
    border-radius: var(--radius-lg);
}

.bonus-total span {
    color: var(--text-secondary);
}

.bonus-total strong {
    font-size: 1.5rem;
    color: #10b981;
}

/* How To Section */
.kit-howto {
    position: relative;
    padding: 60px 20px 100px;
    background: var(--bg-primary);
}

.kit-howto .container {
    position: relative;
    z-index: 2;
}

.howto-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* 4 adımlı versiyon için */
.howto-steps-4 {
    gap: 15px;
}

.howto-steps-4 .howto-step {
    min-width: 180px;
    max-width: 220px;
}

.howto-steps-4 .step-arrow {
    display: flex;
    align-items: center;
}

/* ========================================
   AI OTOMASYON MODÜLLERİ SAYFA STİLLERİ
   ======================================== */

/* AI Hero */
.ai-landing {
    padding-top: 80px;
}

.ai-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
}

.ai-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ai-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.ai-hero .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -150px;
    right: -100px;
}

.ai-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-tertiary);
    bottom: -100px;
    left: -100px;
}

.ai-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ai-hero-content .hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.ai-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.ai-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Products Section */
.ai-products {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    position: relative;
}

.ai-products .container {
    position: relative;
    z-index: 2;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--accent-primary);
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 60px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: #10b981;
    margin-right: 10px;
    width: 16px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 14px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.video-link:hover {
    color: var(--accent-secondary);
}

.video-link i {
    font-size: 18px;
}

.product-price {
    margin-bottom: 20px;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 18px;
    margin-right: 10px;
}

.product-price .current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Bundle Section */
.bundle-section {
    margin-top: 60px;
}

.bundle-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.bundle-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bundle-info {
    flex: 1;
}

.bundle-info h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.bundle-info > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bundle-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bundle-includes span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.bundle-includes span i {
    color: #10b981;
}

.bundle-pricing {
    text-align: center;
    min-width: 280px;
}

.bundle-price {
    margin-bottom: 20px;
}

.bundle-price .old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 20px;
    margin-bottom: 5px;
}

.bundle-price .current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.savings {
    margin-top: 16px;
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
}

.savings i {
    margin-right: 8px;
}

/* AI Features */
.ai-features {
    padding: 100px 0;
    position: relative;
}

.ai-features .container {
    position: relative;
    z-index: 2;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(139, 92, 246, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* AI Final CTA */
.ai-final-cta {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.ai-final-cta .container {
    position: relative;
    z-index: 2;
}


.final-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.final-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* AI Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bundle-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bundle-includes {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-card {
        padding: 30px 20px;
    }
    
    .bundle-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 20px;
    }
}

.howto-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.howto-step:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent-primary);
}

.howto-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.howto-step p {
    font-size: 14px;
    color: var(--text-secondary);
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--accent-primary);
    margin-top: 50px;
}

@media (max-width: 900px) {
    .step-arrow {
        display: none;
    }
}

/* FAQ Section */
.kit-faq {
    position: relative;
    padding: 100px 20px;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(139, 92, 246, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question i {
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.kit-final-cta {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    text-align: center;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.final-cta-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.final-price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.final-price-box .old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.final-price-box .new-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    opacity: 0.7;
}

.payment-badges i {
    font-size: 32px;
    color: var(--text-secondary);
}

.payment-badges img {
    height: 20px;
    border-radius: 2px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.guarantee-text i {
    color: #10b981;
    margin-right: 6px;
}

/* Kit Responsive */
@media (max-width: 768px) {
    .kit-hero {
        min-height: auto;
        padding: 80px 20px;
    }
    
    .kit-price .new-price {
        font-size: 2.5rem;
    }
    
    .kit-trust-badges {
        gap: 10px;
    }
    
    .kit-trust-badges .trust-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .kit-contents-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .howto-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .howto-step {
        max-width: 100%;
    }
    
    .final-price-box .new-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ========================================
   YOUTUBE KANAL SATIŞI SAYFA STİLLERİ
   ======================================== */

/* Hero */
.kanal-satis-page { padding-top: 80px; }

.kanal-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.kanal-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.kanal-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: kanalOrbFloat 8s ease-in-out infinite;
}

.kanal-hero .orb-1 {
    width: 500px;
    height: 500px;
    background: #ff0000;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}

.kanal-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    bottom: -80px;
    left: -80px;
    animation-delay: -3s;
}

.kanal-hero .orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff0000, #ff6b35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation-delay: -5s;
}

@keyframes kanalOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.kanal-hero .orb-3 {
    animation-name: kanalOrbPulse;
}

@keyframes kanalOrbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.25; }
}

.kanal-hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.kanal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.kanal-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.25);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}

.kanal-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.kanal-hero-title .gradient-text {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b35 50%, #ff0000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kanalGradientShift 4s ease-in-out infinite;
}

@keyframes kanalGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.kanal-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.kanal-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.kanal-hero-btn.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    gap: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.kanal-hero-btn.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border: none;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.kanal-hero-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.kanal-hero-btn.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.kanal-hero-btn.btn-outline:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    color: #25d366;
    transform: translateY(-2px);
}

.kanal-hero-btn.btn-outline .fab.fa-whatsapp {
    color: #25d366;
}

.kanal-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kanal-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.kanal-trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

/* Kanallar Section */
.kanallar-section {
    padding: 80px 0 60px;
    position: relative;
}

.kanallar-section .container {
    position: relative;
    z-index: 2;
}


.kanallar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Kanal Card */
.kanal-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kanal-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.1);
}

.kanal-card.sold,
.kanal-card.reserved {
    cursor: default;
}

.kanal-card.sold:hover,
.kanal-card.reserved:hover {
    transform: none;
    box-shadow: none;
}

.kanal-card.featured {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

/* Sold/Reserved Overlay */
.sold-overlay, .reserved-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.sold-overlay .sold-badge {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
}

.reserved-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sold-badge, .reserved-badge {
    background: #dc3545;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 8px;
    transform: rotate(-15deg);
    letter-spacing: 2px;
}

.reserved-badge {
    background: #ffc107;
    color: #000;
}

.kanal-card.sold .kanal-content,
.kanal-card.reserved .kanal-content {
    opacity: 0.5;
}

.kanal-card.sold .kanal-footer {
    opacity: 1;
}

/* Kanal Thumbnail */
.kanal-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.kanal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ff0000;
    opacity: 0.3;
}

.pk-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #10b981;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Kanal Content */
.kanal-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kanal-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kanal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    margin-bottom: 15px;
}

.kanal-stats .stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kanal-stats .stat:nth-child(3) {
    grid-column: 1 / -1; /* Aylık gelir tam genişlik */
}

.kanal-stats .stat i {
    color: var(--accent-primary);
    font-size: 12px;
}

.kanal-category {
    font-size: 12px;
    color: var(--text-muted);
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kanal-category i {
    margin-right: 6px;
}

.kanal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.kanal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

.kanal-price.sold {
    color: #dc3545;
    font-size: 1.5rem;
}

.view-details {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent-primary);
    font-weight: 500;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 13px;
}

/* No Kanallar */
.no-kanallar {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.no-kanallar i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-kanallar h3 {
    margin-bottom: 10px;
}

.no-kanallar p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Kanal Howto */
.kanal-howto {
    padding: 60px 0 100px;
    position: relative;
}

.kanal-howto .container {
    position: relative;
    z-index: 2;
}


.howto-steps-3 {
    justify-content: center;
    align-items: stretch;
    gap: 32px;
}

.howto-steps-3 .howto-step {
    min-width: 220px;
    max-width: 280px;
    flex: 0 1 280px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.howto-steps-3 .step-arrow {
    align-self: center;
    font-size: 20px;
    opacity: 0.5;
}

/* Kanal Features */
.kanal-features {
    padding: 100px 0;
    position: relative;
}

.kanal-features .container {
    position: relative;
    z-index: 2;
}


/* Kanal FAQ */
.kanal-faq {
    padding: 100px 0;
    position: relative;
}

.kanal-faq .container {
    position: relative;
    z-index: 2;
}


/* Kanal Final CTA */
.kanal-final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.kanal-final-cta .container {
    position: relative;
    z-index: 2;
}


/* ========================================
   KANAL MODAL
   ======================================== */
.kanal-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.kanal-modal.active {
    opacity: 1;
    visibility: visible;
}

.kanal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.kanal-modal-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 950px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.kanal-modal.active .kanal-modal-container {
    transform: scale(1);
}

.kanal-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.kanal-modal-close:hover {
    background: var(--accent-primary);
    color: white;
}

.kanal-modal-content {
    padding: 30px;
}

.modal-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.modal-loading i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.modal-error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
}

/* Modal Content */
.modal-kanal-detail {
    width: 100%;
}

/* KANAL MODAL GALLERY - ÖZEL STİLLER (YouTube Otomasyon sayfasını etkilemez) */
.kanal-gallery-section {
    margin-bottom: 30px;
    width: 100%;
}

.kanal-gallery-section h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.kanal-gallery-section h3 i {
    color: var(--accent-primary);
}

.kanal-gallery-slider {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    width: 100%;
}

.kanal-gallery-slides {
    position: relative;
    width: 100%;
}

.kanal-gallery-slide {
    display: none;
    width: 100%;
}

.kanal-gallery-slide.active {
    display: block;
    width: 100%;
}

.kanal-gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

.kanal-gallery-slide img:hover {
    opacity: 0.95;
}

.kanal-gallery-prev,
.kanal-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.kanal-gallery-prev:hover,
.kanal-gallery-next:hover {
    background: var(--accent-primary);
}

.kanal-gallery-prev { left: 10px; }
.kanal-gallery-next { right: 10px; }

.kanal-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
}

.kanal-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.kanal-gallery-dot.active {
    background: var(--accent-primary);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title i {
    color: #ff0000;
}

/* Gallery Section - YouTube Otomasyon Sayfası İçin (DOKUNMA!) */
.gallery-section {
    margin-bottom: 30px;
}

.gallery-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.gallery-section h3 i {
    color: var(--accent-primary);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--accent-primary);
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--accent-primary);
}

/* Info Section */
.info-section {
    margin-bottom: 30px;
}

.info-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-section h3 i {
    color: var(--accent-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-tertiary);
}

.info-item.highlight {
    background: rgba(139, 92, 246, 0.1);
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-label i {
    width: 16px;
    color: var(--accent-primary);
}

.info-value {
    font-weight: 600;
    font-size: 13px;
}

.info-value.status-tertemiz {
    color: #10b981;
}

.info-value.pk-acik {
    color: #10b981;
}

.info-value.pk-kapali {
    color: #dc3545;
}

.info-value.income {
    color: #10b981;
}

/* Description */
.description-section {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.description-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.description-section h3 i {
    color: var(--accent-primary);
}

.description-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Price Section */
.price-section {
    padding: 25px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    text-align: center;
}

.modal-price {
    margin-bottom: 20px;
}

.modal-price .price-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.modal-price .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .kanallar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kanal-hero {
        min-height: auto;
        padding: 100px 16px 60px;
    }

    .kanal-hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .kanal-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .kanal-hero-btn.btn-lg {
        width: 100%;
        justify-content: center;
    }

    .kanal-trust-badges {
        gap: 8px;
    }

    .kanal-trust-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .kanallar-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .kanal-modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .kanal-modal-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-price .price-value {
        font-size: 2rem;
    }
}

/* ========================================
   GALLERY LIGHTBOX
   ======================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox .lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.gallery-lightbox .lightbox-close:hover {
    background: var(--accent-primary);
}

.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.gallery-lightbox .lightbox-prev:hover,
.gallery-lightbox .lightbox-next:hover {
    background: var(--accent-primary);
}

.gallery-lightbox .lightbox-prev {
    left: 30px;
}

.gallery-lightbox .lightbox-next {
    right: 30px;
}

.gallery-lightbox .lightbox-content {
    position: relative;
    z-index: 5;
    max-width: 90vw;
    max-height: 85vh;
}

.gallery-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-lightbox .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    z-index: 10;
}

@media (max-width: 768px) {
    .gallery-lightbox .lightbox-prev,
    .gallery-lightbox .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .gallery-lightbox .lightbox-prev {
        left: 10px;
    }
    
    .gallery-lightbox .lightbox-next {
        right: 10px;
    }
}

/* ========================================
   HAKKIMIZDA SAYFA STİLLERİ
   ======================================== */

.hakkimizda-page {
    padding-top: 80px;
}

/* Hero Section */
.hakkimizda-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hakkimizda-hero .hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hakkimizda-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hakkimizda-hero .orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -150px;
}

.hakkimizda-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: -100px;
    left: -100px;
}

.hakkimizda-hero .orb-3 {
    width: 300px;
    height: 300px;
    background: #f59e0b;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hakkimizda-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hakkimizda-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hakkimizda-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hakkimizda-hero .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hikaye Section */
.hakkimizda-hikaye {
    padding: 100px 0;
}

.hikaye-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hikaye-content .section-badge {
    margin-bottom: 16px;
}

.hikaye-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.hikaye-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.hikaye-text p {
    margin-bottom: 20px;
}

.hikaye-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Misyon & Vizyon */
.hakkimizda-misyon-vizyon {
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.mv-card.misyon {
    border-top: 3px solid var(--accent-primary);
}

.mv-card.vizyon {
    border-top: 3px solid #10b981;
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.mv-card.misyon .mv-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-primary);
}

.mv-card.vizyon .mv-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* İstatistikler */
.hakkimizda-stats {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(139, 92, 246, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--accent-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Değerler */
.hakkimizda-degerler {
    padding: 100px 0;
}

.degerler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.deger-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.deger-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(139, 92, 246, 0.08);
}

.deger-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--accent-primary);
}

.deger-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.deger-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Ekip */
.hakkimizda-ekip {
    padding: 100px 0;
}

.ekip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ekip-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.ekip-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.ekip-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.ekip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekip-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--text-muted);
}

.ekip-info {
    padding: 30px;
}

.ekip-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.ekip-role {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.ekip-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ekip-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.ekip-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.ekip-social a:hover {
    background: var(--accent-primary);
    color: white;
}

/* Müşteri Yorumları */
.hakkimizda-yorumlar {
    padding: 100px 0;
}

.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.yorum-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.yorum-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.yorum-stars {
    margin-bottom: 16px;
}

.yorum-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.yorum-content {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

.yorum-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yorum-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.yorum-info strong {
    display: block;
    font-size: 15px;
}

.yorum-info span {
    color: var(--text-muted);
    font-size: 13px;
}

/* Final CTA */
.hakkimizda-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .degerler-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hikaye-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hikaye-content .section-title {
        text-align: center;
    }
    
    .hikaye-content .section-badge {
        display: block;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .degerler-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .yorumlar-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hakkimizda-hero .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hakkimizda-hero .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   Blog Page Styles
   ======================================== */
.blog-page {
    background: transparent;
}

/* Blog Hero */
.blog-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.blog-hero .orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -100px;
    right: -50px;
}

.blog-hero .orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-tertiary);
    bottom: -50px;
    left: -50px;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero .page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 20px 0;
}

.blog-hero .page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.blog-card-no-image {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder {
    font-size: 48px;
    color: var(--accent-primary);
    opacity: 0.5;
}

/* Blog Card Content */
.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-primary);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-card-meta i {
    margin-right: 6px;
    color: var(--accent-primary);
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.blog-card:hover .blog-card-cta {
    gap: 12px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination li a,
.blog-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.blog-pagination li a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.blog-pagination li span.current {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* No Posts */
.blog-no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts-icon {
    width: 100px;
    height: 100px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--accent-primary);
}

.blog-no-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-no-posts p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Newsletter Box */
.blog-newsletter {
    padding: 0 0 80px;
}

.newsletter-box {
    background: rgba(139, 92, 246, 0.06);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.newsletter-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
    }
}

/* ========================================
   Comments Section Styles
   ======================================== */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.comment .children {
    list-style: none;
    padding-left: 30px;
    margin-top: 20px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--text-primary);
}

.comment-metadata {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.comment-metadata a {
    color: var(--text-muted);
}

.comment-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.comment-reply-link:hover {
    background: var(--accent-primary);
    color: white;
}

/* Comment Form */
.comment-respond {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.comment-reply-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.comment-reply-title small {
    font-size: 14px;
    margin-left: 10px;
}

.comment-reply-title small a {
    color: var(--accent-primary);
}

.logged-in-as {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.logged-in-as a {
    color: var(--accent-primary);
}

.comment-form-comment label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.comment-form-comment textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    transition: var(--transition);
    resize: vertical;
}

.comment-form-comment textarea {
    min-height: 150px;
}

.comment-form-comment textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
}

.form-submit {
    margin-top: 20px;
}

.form-submit .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

/* Post Navigation */
.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
    border-color: var(--accent-primary);
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }
    
    .post-navigation .nav-next {
        text-align: left;
    }
    
    .comment {
        padding: 20px;
    }
    
    .comment .children {
        padding-left: 15px;
    }
    
    .comment-respond {
        padding: 20px;
    }
}

/* ========================================
   Niş Bulucu Hediye Page Styles
   ======================================== */
.hediye-page {
    background: transparent;
}

/* NBH Hero */
.hediye-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
}

.hediye-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hediye-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hediye-hero .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -150px;
    right: -100px;
}

.hediye-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-tertiary);
    bottom: -100px;
    left: -100px;
}

.hediye-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hediye-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
}

.hediye-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hediye-subtitle {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hediye-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hediye-download-btn {
    font-size: 18px;
    padding: 18px 48px;
    margin-bottom: 32px;
}

.hediye-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hediye-trust-badges span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* NBH Features */
.hediye-features {
    padding: 100px 0;
}

.hediye-features .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}

.hediye-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hediye-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.hediye-feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.hediye-feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.hediye-feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.hediye-feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* NBH Products */
.hediye-products {
    padding: 100px 0;
}

.hediye-products-header {
    text-align: center;
    margin-bottom: 60px;
}

.hediye-products-header .section-title {
    margin-bottom: 16px;
}

.hediye-products-header .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.hediye-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hediye-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hediye-product-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.hediye-product-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.hediye-product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.hediye-product-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.hediye-product-card .btn {
    width: 100%;
    max-width: 200px;
}

/* NBH Why */
.hediye-why {
    padding: 100px 0;
    text-align: center;
}

.hediye-why .section-title {
    margin-bottom: 16px;
}

.hediye-why .section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

.hediye-why-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hediye-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hediye-why-icon {
    font-size: 48px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hediye-why-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* NBH CTA */
.hediye-cta {
    padding: 100px 0;
}

.hediye-cta-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.25) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.hediye-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.hediye-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hediye-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* NBH Responsive */
@media (max-width: 1024px) {
    .hediye-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hediye-hero {
        padding: 120px 0 80px;
    }
    
    .hediye-features-grid {
        grid-template-columns: 1fr;
    }
    
    .hediye-products-grid {
        grid-template-columns: 1fr;
    }
    
    .hediye-why-grid {
        gap: 30px;
    }
    
    .hediye-cta-box {
        padding: 40px 20px;
    }
    
    .hediye-trust-badges {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   PASSWORD PROTECTED PAGE
   ======================================== */
.password-protected-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-hero {
    position: relative;
    padding: 150px 0 100px;
    width: 100%;
}

.password-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.password-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.password-bg .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -150px;
    right: -100px;
}

.password-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
}

.password-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}

.password-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--accent-primary);
}

.password-content h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.password-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* WordPress Password Form */
.post-password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-password-form p {
    margin: 0;
}

.post-password-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.post-password-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.post-password-form input[type="password"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.post-password-form input[type="submit"] {
    width: 100%;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.post-password-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 576px) {
    .password-content {
        padding: 40px 24px;
        margin: 0 16px;
    }
    
    .password-content h1 {
        font-size: 1.5rem;
    }
}

/* Password Page Hint */
.password-hint {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.password-hint i {
    color: #E1306C;
    font-size: 16px;
}

/* Instagram Button */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 28px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

.instagram-btn i {
    font-size: 20px;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
    color: white;
}

/* Hediye Page - Hero with Image */
.hediye-hero-content.has-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hediye-hero-content.has-image .hediye-hero-text {
    text-align: left;
}

.hediye-hero-image {
    position: relative;
}

.hediye-hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hediye-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hediye-hero-content.has-image .hediye-buttons {
    justify-content: flex-start;
}

@media (max-width: 968px) {
    .hediye-hero-content.has-image {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hediye-hero-content.has-image .hediye-hero-text {
        text-align: center;
    }
    
    .hediye-hero-content.has-image .hediye-buttons {
        justify-content: center;
    }
    
    .hediye-hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   HEDIYE UPSELL SERVICES
   ======================================== */
.hediye-upsell-services {
    padding: 100px 0;
}

.hediye-upsell-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hediye-upsell-services .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hediye-upsell-services .section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hediye-upsell-services .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Upsell Grid */
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.upsell-grid .service-card-link {
    text-decoration: none;
}

.upsell-grid .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.upsell-grid .service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.upsell-grid .service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.upsell-grid .badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.upsell-grid .badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.upsell-grid .badge-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.upsell-grid .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.upsell-grid .service-icon i {
    font-size: 28px;
    color: var(--accent-primary);
}

.upsell-grid .service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.upsell-grid .service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.upsell-grid .service-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.upsell-grid .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.upsell-grid .service-features li i {
    color: #10b981;
    font-size: 12px;
    margin-top: 4px;
}

.upsell-grid .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.upsell-grid .service-cta-highlight {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.upsell-grid .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: auto;
}

.upsell-grid .service-card:hover .service-cta {
    gap: 12px;
}

/* All Services Button */
.upsell-all-services {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hediye-upsell-services {
        padding: 60px 0;
    }
    
    .hediye-upsell-services .section-title {
        font-size: 1.75rem;
    }
    
    .upsell-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HEDIYE UPSELL HİZMETLER
   ======================================== */
.hediye-upsell-services {
    padding: 100px 0;
}

.hediye-upsell-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hediye-upsell-services .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hediye-upsell-services .section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hediye-upsell-services .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Upsell Grid - Hizmetler sayfasıyla aynı stil */
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.upsell-grid .service-card-link {
    text-decoration: none;
    display: block;
}

.upsell-grid .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.upsell-grid .service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.upsell-grid .service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.upsell-grid .badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.upsell-grid .badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.upsell-grid .badge-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.upsell-grid .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.upsell-grid .service-icon i {
    font-size: 28px;
    color: var(--accent-primary);
}

.upsell-grid .service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.upsell-grid .service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.upsell-grid .service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.upsell-grid .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.upsell-grid .service-features li:last-child {
    border-bottom: none;
}

.upsell-grid .service-features li i {
    color: #10b981;
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

.upsell-grid .service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.upsell-grid .service-cta-highlight {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.upsell-grid .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    transition: var(--transition);
}

.upsell-grid .service-card:hover .service-cta {
    gap: 12px;
}

.upsell-grid .service-cta i {
    transition: var(--transition);
}

.upsell-grid .service-card:hover .service-cta i {
    transform: translateX(4px);
}

/* Tüm Hizmetleri Gör Butonu */
.upsell-all-services {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hediye-upsell-services {
        padding: 60px 0;
    }
    
    .hediye-upsell-services .section-title {
        font-size: 1.75rem;
    }
    
    .upsell-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .upsell-grid .service-card {
        padding: 24px;
    }
}

/* ========================================
   SINGLE POST HERO
   ======================================== */
.single-post-page {
    background: transparent;
    width: 100%;
    max-width: 100%;
}

.single-post-hero {
    position: relative;
    padding: 180px 0 80px;
    width: 100%;
}

.single-hero-bg {
    display: none;
}

.single-hero-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.single-hero-bg .orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
}

.single-hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
}

.single-post-hero .container {
    position: relative;
    z-index: 1;
}

.single-post-hero .post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.single-post-hero .post-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-post-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.single-post-hero .post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.single-post-hero .post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post-hero .post-meta i {
    color: var(--accent-primary);
}

/* Single Post Content */
.single-post {
    padding: 60px 0 100px;
    width: 100%;
    background: transparent;
}

.single-post > .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.single-post .post-thumbnail {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post .post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    background: transparent;
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4 {
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-post .post-content p {
    margin-bottom: 24px;
}

.single-post .post-content a {
    color: var(--accent-primary);
}

.single-post .post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.single-post .post-tags {
    color: var(--text-secondary);
}

.single-post .post-tags a {
    color: var(--accent-primary);
    margin-left: 4px;
}

.single-post .post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.single-post .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: var(--transition);
}

.single-post .social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Post Navigation */
.post-navigation {
    max-width: 800px;
    margin: 60px auto;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
    border-color: var(--accent-primary);
}

.post-navigation a {
    text-decoration: none;
}

.post-navigation .nav-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.post-navigation .nav-title {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .single-post-hero {
        padding: 140px 0 60px;
    }
    
    .single-post-hero h1 {
        font-size: 1.75rem;
    }
    
    .single-post-hero .post-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   404 ERROR PAGE
   ======================================== */
.error-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-hero {
    position: relative;
    width: 100%;
    padding: 150px 0 100px;
}

.error-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.error-hero-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.error-hero-bg .orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
}

.error-hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: #ef4444;
    bottom: -100px;
    left: -100px;
}

.error-hero .container {
    position: relative;
    z-index: 1;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
}

.error-icon i {
    font-size: 42px;
    color: #ef4444;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.error-links {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.error-links p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.error-links ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.error-links a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.error-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}

/* ========================================
   HEDIYE PAGE SECTIONS - RELATIVE POSITION
   ======================================== */
.hediye-hero,
.hediye-features,
.hediye-upsell-services,
.hediye-why,
.hediye-cta {
    position: relative;
}

.hediye-hero .container,
.hediye-features .container,
.hediye-upsell-services .container,
.hediye-why .container,
.hediye-cta .container {
    position: relative;
    z-index: 1;
}

/* Blog sections relative */
.blog-hero,
.blog-section {
    position: relative;
}

.blog-hero .container,
.blog-section .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   HAKKIMIZDA SAYFASI LAYOUT DESTEĞİ
   ======================================== */
.hakkimizda-hikaye,
.hakkimizda-misyon-vizyon,
.hakkimizda-stats,
.hakkimizda-degerler,
.hakkimizda-ekip,
.hakkimizda-yorumlar,
.hakkimizda-cta {
    position: relative;
}

.hakkimizda-hikaye .container,
.hakkimizda-misyon-vizyon .container,
.hakkimizda-stats .container,
.hakkimizda-degerler .container,
.hakkimizda-ekip .container,
.hakkimizda-yorumlar .container,
.hakkimizda-cta .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   GLOBAL ARKA PLAN SİSTEMİ v2.0
   Tüm site tek arka plan kullanır
   ======================================== */

/* TÜM ANA SECTION'LAR TRANSPARENT */
.hero,
.about,
.services,
.cta,
.services-hero,
.services-grid-section,
.services-cta-section,
.yt-hero,
.yt-problem,
.yt-solution,
.yt-process,
.yt-tech,
.yt-pricing,
.yt-after,
.yt-proof,
.yt-testimonials,
.yt-faq,
.yt-final-cta,
.ai-hero,
.ai-products,
.kit-howto,
.ai-features,
.kit-faq,
.ai-final-cta,
.kanallar-section,
.kanal-hero,
.kanal-howto,
.kanal-features,
.kanal-faq,
.kanal-final-cta,
.hakkimizda-hero,
.hakkimizda-hikaye,
.hakkimizda-misyon-vizyon,
.hakkimizda-stats,
.hakkimizda-degerler,
.hakkimizda-ekip,
.hakkimizda-yorumlar,
.hakkimizda-cta,
.hediyeler-hero,
.hediye-features,
.hediye-upsell,
.hediye-why,
.hediye-cta,
.hediye-faq,
.futia-pricing-section,
.futia-faq-section,
.kit-hero,
.kit-features,
.kit-products,
.kit-bundle,
.kit-final-cta,
.blog-section,
.single-post,
.single-post-page,
.single-post-hero,
.page-content,
.error-404,
.footer,
section,
main,
article {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Section Overlay'ları Kaldır */
.section-overlay {
    display: none !important;
}

/* WordPress Gutenberg Blokları - Transparent */
.wp-block-group,
.wp-block-column,
.wp-block-columns,
.wp-block-cover,
.wp-block-image,
.wp-block-media-text,
.entry-content,
.post-content,
.has-background,
.is-layout-flow,
.is-layout-constrained,
.wp-block-group__inner-container,
[class*="wp-block-"],
[class*="is-layout-"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Header da transparent */
.header {
    background: rgba(10, 10, 15, 0.8) !important;
    backdrop-filter: blur(10px);
}

/* Kartlar ve iç elementler kendi arka planlarını korur */
.service-card,
.product-card,
.pricing-card:not([class*="pricing-"]):not(.featured),
.kanal-card,
.feature-card,
.step-card,
.testimonial-card,
.faq-item,
.stat-card,
.team-card,
.bundle-card,
.product-item,
.hediye-card,
.upsell-card,
.blog-card,
.howto-step,
.tech-card,
.value-card {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* Form ve input alanları */
input, textarea, select {
    background: var(--bg-tertiary) !important;
}

/* ========================================
   HEDİYE KARTLARI - ÇOKLU HEDİYE SİSTEMİ (v2)
   ======================================== */

/* Hero Yeni */
.hediye-hero-new {
    position: relative;
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hediye-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.hediye-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hediye-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Hediye Kartları Grid */
.hediye-kartlar-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hediye-kartlar-grid.hediye-count-1 { grid-template-columns: 1fr; max-width: 500px; }
.hediye-kartlar-grid.hediye-count-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
.hediye-kartlar-grid.hediye-count-3 { grid-template-columns: repeat(3, 1fr); }
.hediye-kartlar-grid.hediye-count-4 { grid-template-columns: repeat(2, 1fr); }
.hediye-kartlar-grid.hediye-count-5 { grid-template-columns: repeat(3, 1fr); }

/* Hediye Kart */
.hediye-kart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hediye-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hediye-kart:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(167, 139, 250, 0.15);
}

.hediye-kart:hover::before {
    opacity: 1;
}

.hediye-kart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.hediye-kart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.hediye-kart-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hediye-kart-deger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.hediye-kart-deger .deger-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hediye-kart-deger .deger-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: line-through;
    opacity: 0.8;
}

/* Parola Formu */
.hediye-parola-form {
    margin-top: 20px;
}

.parola-input-group {
    display: flex;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
}

.parola-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.parola-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}

.parola-input.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.parola-btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.parola-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(167, 139, 250, 0.4);
}

.parola-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* İndirme Alanı */
.hediye-download-area {
    margin-top: 20px;
}

.hediye-download-area.show {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-hediye-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.download-success {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 500;
}

/* Hediye Empty State */
.hediye-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hediye-kartlar-grid.hediye-count-3,
    .hediye-kartlar-grid.hediye-count-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hediye-hero-new {
        padding: 100px 0 60px;
    }
    
    .hediye-kartlar-grid.hediye-count-2,
    .hediye-kartlar-grid.hediye-count-3,
    .hediye-kartlar-grid.hediye-count-4,
    .hediye-kartlar-grid.hediye-count-5 {
        grid-template-columns: 1fr;
    }
    
    .hediye-kart {
        padding: 30px 20px;
    }
    
    .hediye-kart-icon {
        font-size: 3rem;
    }
    
    .hediye-kart-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   OTOMASYON ÜRETİM TANITIM SAYFASI
   ======================================== */

/* ========================================
   AI SHOWCASE — Ana Sayfa Tanıtım
   ======================================== */

.ai-showcase {
    padding: 100px 0;
    background:
        radial-gradient(ellipse 50% 50% at 10% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

/* 4 Adım Grid */
.ai-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.ai-showcase-step {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ai-showcase-step:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.12),
        0 0 60px rgba(139, 92, 246, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Step Icon */
.ai-step-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.ai-step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: rgba(6, 182, 212, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.ai-showcase-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ai-showcase-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Feature Badges */
.ai-showcase-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.ai-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.06);
}

.ai-feature i {
    font-size: 16px;
    color: var(--accent-primary);
}

/* CTA Butonlar */
.ai-showcase-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .ai-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .ai-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .ai-showcase-step {
        padding: 30px 20px;
    }

    .ai-showcase-features {
        gap: 10px;
    }

    .ai-feature {
        padding: 10px 18px;
        font-size: 13px;
    }

    .ai-showcase-cta {
        flex-direction: column;
        align-items: center;
    }

    .ai-showcase-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Otomasyon Landing Page Wrapper */
.otomasyon-landing {
    padding-top: 80px;
}

/* Hero */
.otomasyon-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 85% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}

.otomasyon-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.otomasyon-hero .hero-title {
    font-size: clamp(36px, 5vw, 64px);
}

/* Trust Badges */
.otomasyon-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.otomasyon-trust .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    font-size: 14px;
    color: var(--text-secondary);
}

.otomasyon-trust .trust-badge i {
    color: var(--accent-tertiary);
}

/* Howto Section */
.otomasyon-howto {
    padding: 100px 0;
    position: relative;
    background:
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
}

.otomasyon-howto .container {
    position: relative;
    z-index: 1;
}

/* Features Section */
.otomasyon-features {
    padding: 100px 0;
    position: relative;
    background:
        radial-gradient(ellipse 40% 35% at 15% 55%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

.otomasyon-features .container {
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.otomasyon-pricing {
    padding: 100px 0;
    position: relative;
    background:
        radial-gradient(ellipse 50% 40% at 50% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.otomasyon-pricing .container {
    position: relative;
    z-index: 1;
}

.otomasyon-pricing .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Icon */
.pricing-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
}

/* Pricing fiyat-altı bilgi */
.price-detail {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Pricing Unavailable Fallback */
.pricing-unavailable {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.otomasyon-faq {
    padding: 100px 0;
    position: relative;
}

.otomasyon-faq .container {
    position: relative;
    z-index: 1;
}

/* Final CTA */
.otomasyon-final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
}

.otomasyon-final-cta .container {
    position: relative;
    z-index: 1;
}

/* Otomasyon Responsive */
@media (max-width: 992px) {
    .otomasyon-pricing .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .otomasyon-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .otomasyon-trust {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   FRONT PAGE — PRICING SECTION
   ======================================== */

.futia-pricing-section {
    padding: 100px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 50% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}

.futia-pricing-section .container {
    position: relative;
    z-index: 1;
}

/* 4-kart pricing grid */
.futia-pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto 40px;
}

.futia-pricing-cards .pricing-card {
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.futia-pricing-cards .pricing-features {
    flex-grow: 1;
}

.futia-pricing-cards .pricing-card .btn-block {
    margin-top: auto;
}

.futia-pricing-cards .pricing-icon {
    margin: 0 auto 16px;
}

.futia-pricing-cards .pricing-header {
    text-align: center;
}

.futia-pricing-cards .pricing-header h4 {
    font-size: 20px;
}

.futia-pricing-cards .pricing-price {
    text-align: center;
}

.futia-pricing-cards .new-price {
    font-size: 36px;
}

.futia-pricing-cards .pricing-features {
    text-align: left;
    flex-grow: 1;
}

.futia-pricing-cards .btn-block {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Bonus Badge */
.futia-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.futia-bonus-badge i {
    color: #6ee7b7;
}

.futia-bonus-premium {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fcd34d;
}

.futia-bonus-premium i {
    color: #fcd34d;
}

/* Pricing Info */
.futia-pricing-info {
    text-align: center;
    margin-bottom: 50px;
}

.futia-pricing-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.futia-pricing-info i {
    color: var(--accent-tertiary);
    margin-right: 6px;
}

/* Video Costs Grid */
.futia-video-costs {
    max-width: 800px;
    margin: 0 auto;
}

.futia-costs-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.futia-costs-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.futia-cost-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}

.futia-cost-item:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.futia-cost-duration {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.futia-cost-credits {
    display: block;
    font-size: 14px;
    color: var(--accent-tertiary);
    font-weight: 500;
}

/* ========================================
   FRONT PAGE — FAQ SECTION
   ======================================== */

.futia-faq-section {
    padding: 100px 0;
    position: relative;
}

.futia-faq-section .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   FRONT PAGE — RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .futia-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
    }
}

@media (max-width: 576px) {
    .futia-pricing-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .futia-costs-grid {
        gap: 10px;
    }

    .futia-cost-item {
        min-width: 100px;
        padding: 12px 16px;
    }

    .futia-cost-duration {
        font-size: 18px;
    }
}
