/* GÜNCELLEMELER: Yeni Sayfalar, Logo ve Formlar İçin Eklenen Stiller */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

:root {
    --bg-dark: #0a0a0e;
    --text-main: #f5f5f7;
    --text-muted: #a1a1a6;
    --apple-green: #2ed573;
    --apple-green-glow: rgba(46, 213, 115, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection { background: var(--apple-green); color: #fff; }

.blob {
    position: absolute; filter: blur(140px); border-radius: 50%; z-index: -2;
    animation: moveOrbs 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}
.blob-1 { width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(106,17,203,0.4) 0%, rgba(37,117,252,0) 70%); top: -20vh; left: -10vw; }
.blob-2 { width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(46,213,115,0.2) 0%, rgba(16,172,132,0) 70%); bottom: -10vh; right: -10vw; animation-delay: -5s; }
.blob-3 { width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(255,71,87,0.2) 0%, rgba(255,107,129,0) 70%); top: 40vh; left: 30vw; animation-delay: -10s; }

@keyframes moveOrbs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10vw, 5vh) scale(1.1); }
    100% { transform: translate(-5vw, 15vh) scale(0.9); }
}

.particles { position: absolute; width: 100%; height: 100vh; top:0; left:0; z-index: -1; overflow: hidden; pointer-events: none;}
.particle { position: absolute; bottom: -10px; width: 4px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 50%; animation: floatUp linear infinite;}
@keyframes floatUp { 0% { transform: translateY(0) scale(1); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(-100vh) scale(2); opacity: 0; } }

.glass-panel { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 var(--glass-highlight); position: relative; overflow: hidden; }

.glass-nav { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(10, 10, 14, 0.5); backdrop-filter: blur(30px); border-bottom: 2px solid rgba(255,255,255,0.05); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 80px; }

/* LOGO CSS GÜNCELLEMESİ */
.logo { font-size: 1.6rem; font-weight: 900; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 45px; height: 45px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.logo span { color: var(--apple-green); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 1rem; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.nav-links a:hover { color: #fff; transform: translateY(-2px); }

.nav-btn { background: rgba(255,255,255,0.1); padding: 0.6rem 1.2rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); }
.nav-btn:hover { background: #fff; color: #000 !important; }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; padding-bottom: 4rem; }
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 4rem; width: 100%; }
.hero-text { flex: 1; max-width: 600px; position: relative; z-index: 10;}

.badge-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(46, 213, 115, 0.1); border: 1px solid rgba(46, 213, 115, 0.3); color: var(--apple-green); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; }
.pulse-dot { width: 8px; height: 8px; background: var(--apple-green); border-radius: 50%; animation: pulseGlow 1.5s infinite; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(46, 213, 115, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); } }

.gradient-text { background: linear-gradient(135deg, #fff 0%, #a1a1a6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h1.gradient-text { font-size: 5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 900; letter-spacing: -2px; padding-bottom: 10px; }
.hero-text p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 2.5rem; font-weight: 300; }

.cta-group { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 3rem; }
.btn-glow { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--apple-green); color: #000; padding: 1.2rem 2.5rem; border-radius: 100px; font-weight: 800; font-size: 1.1rem; text-decoration: none; overflow: hidden; box-shadow: 0 10px 30px var(--apple-green-glow); transition: 0.3s; }
.btn-glow:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--apple-green-glow); }
.btn-shine { position: absolute; top:0; left:-100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); animation: shine 3s infinite; }
@keyframes shine { 100% { left: 200%; } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; border-top: 1px solid var(--glass-border); padding-top: 2rem; }
.stat { display: flex; align-items: center; gap: 15px; }
.stat i { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.5); }
.stat h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.2rem; }
.stat span { color: var(--text-muted); font-size: 0.9rem; }

.hero-visuals { flex: 1; position: relative; height: 600px; display: flex; justify-content: center; align-items: center; }
.phones-wrapper { position: relative; width: 340px; height: 650px; perspective: 1200px; z-index: 5;}
.phone-3d { position: absolute; width: 100%; height: 100%; border-radius: 40px; padding: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 50px 100px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.1); transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.phone-3d img { width: 100%; height: 100%; border-radius: 30px; object-fit: cover; }
.back-phone { transform: rotateY(-20deg) rotateX(10deg) translateZ(-100px) translateX(60px); filter: brightness(0.6); z-index: 1;}
.front-phone { transform: rotateY(-10deg) rotateX(5deg) translateZ(50px) translateX(-30px); z-index: 2;}
.hero-visuals:hover .front-phone { transform: rotateY(0deg) rotateX(0deg) translateZ(100px) translateX(-50px) translateY(-20px); }
.hero-visuals:hover .back-phone { transform: rotateY(-10deg) rotateX(5deg) translateZ(-50px) translateX(80px); filter: brightness(0.8); }

.floating-card { position: absolute; padding: 15px 25px; display: flex; align-items: center; gap: 15px; z-index: 10; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-radius: 20px; animation: floatUpDown 4s infinite alternate ease-in-out; }
.floating-card strong { display: block; font-size: 1rem; color: #fff; }
.floating-card span { font-size: 0.9rem; font-weight: 700; }
.floating-card i { font-size: 1.5rem; padding: 12px; border-radius: 12px; background: rgba(255,255,255,0.1); }
.float-1 { top: 10%; right: -50px; animation-delay: 0s; }
.float-2 { bottom: 20%; left: -60px; animation-delay: 1s; }
.highlight-icon { color: #ffeb3b; text-shadow: 0 0 15px #ffeb3b; }
.highlight-icon-2 { color: #2ed573; text-shadow: 0 0 15px #2ed573; }
@keyframes floatUpDown { 0% { transform: translateY(0px) rotate(0deg); } 100% { transform: translateY(-20px) rotate(2deg); } }

.marquee-container { overflow: hidden; padding: 1.5rem 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); white-space: nowrap; position: relative; margin-bottom: 5rem; }
.marquee-content { display: inline-block; animation: scrollMarquee 30s linear infinite; }
.marquee-content span { display: inline-flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 600; color: var(--text-muted); margin: 0 2rem; }
.marquee-content span i { color: var(--apple-green); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { padding: 5rem 0; }
.section-heading { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; }
.section-heading h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: -1px; }
.section-heading p { font-size: 1.2rem; color: var(--text-muted); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-box { padding: 2.5rem; text-align: left; transition: 0.3s; }
.icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 20px; background: rgba(255,255,255,0.05); color: #fff; margin-bottom: 1.5rem; border: 1px solid var(--glass-border); }
.feature-box h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; color: #fff; }
.feature-box p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.cyber-footer { background: linear-gradient(to top, rgba(10,10,14, 1) 0%, rgba(0,0,0,0) 100%); padding-top: 5rem; border-top: 1px solid var(--glass-border); margin-top: 5rem;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-muted); margin: 1.5rem 0; font-size: 1.1rem; }
.footer-links-col h4, .footer-cta h4 { color: #fff; font-size: 1.2rem; margin-bottom: 1.5rem; font-weight: 700; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 0.8rem; }
.footer-links-col a { color: var(--text-muted); text-decoration: none; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px;}
.footer-links-col a:hover { color: var(--apple-green); transform: translateX(5px); }

.app-store-btn { display: inline-flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1rem 2rem; border-radius: 20px; color: #fff; text-decoration: none; transition: 0.3s; backdrop-filter: blur(10px); }
.app-store-btn:hover { background: #fff; color: #000; box-shadow: 0 10px 30px rgba(255,255,255,0.2); transform: translateY(-3px);}
.btn-texts { display: flex; flex-direction: column; }
.btn-texts small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: inherit; opacity: 0.8;}
.btn-texts strong { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.footer-bottom { text-align: center; padding: 2rem; border-top: 1px solid var(--glass-border); color: var(--text-muted); }

/* --- ALT SAYFALAR YENİ TASARIM (Destek & Metin Sayfaları) --- */
.page-header { position: relative; z-index: 10; min-height: 70vh;}
.text-document { padding: 4rem; }
.text-document h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.1; }
.text-document h3 { font-size: 1.6rem; margin-top: 2rem; margin-bottom: 1rem; color: #fff; }
.text-document p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.glass-hr { border: none; height: 1px; background: var(--glass-border); margin: 2rem 0; }

.custom-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.glass-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem; color: #fff; font-family: inherit; font-size: 1rem; transition: 0.3s; appearance: none; -webkit-appearance: none; }
.glass-input:focus { outline: none; border-color: var(--apple-green); background: rgba(46, 213, 115, 0.05); box-shadow: 0 0 15px rgba(46, 213, 115, 0.2); }

@media (max-width: 992px) {
    .nav-links { display: none; }
    .hero-content, .footer-grid { flex-direction: column; text-align: center; }
    h1.gradient-text { font-size: 3.5rem; }
    .hero-visuals { height: 500px; margin-top: 2rem; width: 100%; }
    .phones-wrapper { width: 280px; height: 550px; }
    .floating-card { display: none; }
    .cta-group { justify-content: center; flex-direction: column; }
    .hero-stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .text-document { padding: 2rem; }
}

/* Özel Görsel Vitrin */
.showcase-section { padding: 4rem 0; }
.showcase-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 8rem; }
.showcase-row:nth-child(even) { flex-direction: row-reverse; }
.showcase-text { flex: 1; }
.showcase-text h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; color: #fff; line-height: 1.2; }
.showcase-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.showcase-text ul { list-style: none; margin-top: 1.5rem; }
.showcase-text ul li { margin-bottom: 1rem; font-size: 1.05rem; display: flex; align-items: center; gap: 12px; color: #e1e1e6; }
.showcase-text ul li i { color: var(--apple-green); background: rgba(46, 213, 115, 0.1); padding: 8px; border-radius: 8px; }
.showcase-image { flex: 1; display: flex; justify-content: center; position: relative; }
.showcase-image img { max-width: 320px; border-radius: 40px; box-shadow: 0 40px 80px rgba(0,0,0,0.8); border: 1px solid var(--glass-border); transition: transform 0.4s ease; max-height: 500px; object-fit: contain; background: black; }
.showcase-image img:hover { transform: translateY(-10px) scale(1.02); }
.glow-behind { position: absolute; width: 300px; height: 100%; top: 0; background: var(--apple-green-glow); filter: blur(100px); z-index: -1; opacity: 0.3; }

@media (max-width: 992px) {
    .showcase-row, .showcase-row:nth-child(even) { flex-direction: column; gap: 2rem; margin-bottom: 5rem; text-align: center; }
    .showcase-text h3 { font-size: 2rem; }
    .showcase-text ul li { justify-content: center; text-align: left; }
}