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

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

:root {
    /* ReglFit Flutter App Color Palette - Birebir yansıtıldı */
    --primary-red: #E53935; /* Ana kırmızı - Flutter app'teki red */
    --primary-red-dark: #9E3A53; /* Koyu kırmızı */
    --primary-red-light: #FF6B9D; /* Açık kırmızı */
    
    /* Eski renkler (geriye dönük uyumluluk için) */
    --primary-50: #FFF1F6;
    --primary-100: #FFE4EC;
    --primary-500: #E53935; /* Flutter app'teki ana kırmızı */
    --primary-600: #9E3A53; /* Koyu kırmızı */
    --primary-900: #8B0A3D;
    
    /* Flutter app accent colors */
    --accent-purple: #853073; /* Flutter app'teki purple */
    --accent-purple-light: #AD539B; /* Flutter app'teki purple2 */
    --accent-purple-lighter: #FFEAF9; /* Flutter app'teki purpleLight */
    --accent-teal: #01B191; /* Flutter app'teki green */
    --accent-teal-light: #E8F7F4; /* Flutter app'teki green2 */
    --accent-gold: #FFD700;
    --accent-orange: #F56800; /* Flutter app'teki orange */
    
    /* Flutter app blue colors */
    --accent-blue-1: #4F73C7;
    --accent-blue-2: #197a8b;
    --accent-blue-3: #DBF6FF;
    --accent-blue-4: #01859E;
    --accent-blue-5: #3EBFD0;
    --accent-blue-6: #158ADF;
    --accent-blue-7: #1877F2;
    
    --neutral-950: #000000;
    --neutral-900: #0A0A0A;
    --neutral-800: #121212;
    --neutral-700: #1A1A1A;
    --neutral-600: #2A2A2A;
    --neutral-400: #6B6B6B;
    --neutral-300: #9B9B9B;
    --neutral-200: #B0B0B0;
    --neutral-100: #E0E0E0;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow-pink: 0 0 24px rgba(255, 107, 157, 0.2);
    --shadow-glow-purple: 0 0 24px rgba(199, 125, 255, 0.2);
    
    /* Hover: mouse üzerine gelince anında tepki */
    --hover-duration: 0.01s;
    --hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hover-lift: 4px;
    --hover-lift-sm: 2px;
    --hover-scale: 1.01;
    --hover-shadow: 0 10px 24px rgba(255, 107, 157, 0.12);
    --hover-shadow-strong: 0 8px 20px rgba(255, 107, 157, 0.18);
    --hover-glow: 0 0 28px rgba(255, 107, 157, 0.22);
    --hover-shadow-with-glow: 0 10px 24px rgba(255, 107, 157, 0.12), 0 0 28px rgba(255, 107, 157, 0.22);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--neutral-950);
    color: var(--neutral-100);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    animation: grid-pulse 10s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(255, 107, 157, 0.08), transparent),
        radial-gradient(ellipse 600px 800px at 80% 70%, rgba(199, 125, 255, 0.08), transparent),
        radial-gradient(ellipse 700px 500px at 50% 50%, rgba(6, 255, 165, 0.05), transparent);
    z-index: 0;
    pointer-events: none;
    animation: background-shift 15s ease-in-out infinite alternate;
}

@keyframes background-shift {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.cursor-follower {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2), rgba(199, 125, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity var(--hover-duration) ease;
    z-index: 1;
    opacity: 0;
    mix-blend-mode: screen;
    will-change: left, top;
}

@media (hover: hover) {
    .cursor-follower {
        opacity: 1;
    }
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-500), transparent 70%);
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
    bottom: 10%;
    left: 0%;
    animation-delay: 7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-teal), transparent 70%);
    top: 45%;
    left: 45%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translate(40px, -40px) scale(1.15);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-30px, 30px) scale(0.85);
        opacity: 0.35;
    }
    75% { 
        transform: translate(50px, 15px) scale(1.1);
        opacity: 0.45;
    }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-particles .particle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 4px solid rgba(255, 255, 255, 0.95);
    transform-origin: center;
    transform: rotate(35deg);
    animation: particle-float 15s infinite ease-in-out, star-twinkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.floating-particles .particle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -2px;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 4px solid rgba(255, 255, 255, 0.95);
    transform: rotate(-70deg);
}

.floating-particles .particle::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -2px;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 4px solid rgba(255, 255, 255, 0.95);
    transform: rotate(70deg);
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 0.4;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 4px rgba(255, 107, 157, 0.3));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 1)) drop-shadow(0 0 8px rgba(255, 107, 157, 0.7)) drop-shadow(0 0 12px rgba(199, 125, 255, 0.5));
    }
}

.floating-particles .particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.floating-particles .particle:nth-child(1),
.floating-particles .particle:nth-child(1)::before,
.floating-particles .particle:nth-child(1)::after {
    border-bottom-color: rgba(255, 255, 255, 0.85);
    transform-origin: center;
}

.floating-particles .particle:nth-child(1) {
    animation: particle-float-1 18s infinite ease-in-out, star-twinkle 2s ease-in-out infinite;
}

.floating-particles .particle:nth-child(2) {
    top: 30%;
    left: 80%;
    animation: particle-float-2 20s infinite ease-in-out 2s, star-twinkle 2.2s ease-in-out infinite;
}

.floating-particles .particle:nth-child(2)::before,
.floating-particles .particle:nth-child(2)::after {
    border-bottom-color: rgba(255, 107, 157, 0.9);
}

.floating-particles .particle:nth-child(3) {
    top: 50%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 16s;
    animation: particle-float-3 16s infinite ease-in-out 4s, star-twinkle 1.8s ease-in-out infinite;
}

.floating-particles .particle:nth-child(3)::before,
.floating-particles .particle:nth-child(3)::after {
    border-bottom-color: rgba(199, 125, 255, 0.9);
}

.floating-particles .particle:nth-child(4) {
    top: 70%;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 22s;
    animation: particle-float-4 22s infinite ease-in-out 6s, star-twinkle 2.3s ease-in-out infinite;
}

.floating-particles .particle:nth-child(4)::before,
.floating-particles .particle:nth-child(4)::after {
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

.floating-particles .particle:nth-child(5) {
    top: 20%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 19s;
    animation: particle-float-5 19s infinite ease-in-out 8s, star-twinkle 1.5s ease-in-out infinite;
}

.floating-particles .particle:nth-child(5)::before,
.floating-particles .particle:nth-child(5)::after {
    border-bottom-color: rgba(255, 255, 255, 0.75);
}

.floating-particles .particle:nth-child(6) {
    top: 80%;
    left: 30%;
    animation-delay: 10s;
    animation-duration: 17s;
    animation: particle-float-6 17s infinite ease-in-out 10s, star-twinkle 2.1s ease-in-out infinite;
}

.floating-particles .particle:nth-child(6)::before,
.floating-particles .particle:nth-child(6)::after {
    border-bottom-color: rgba(6, 255, 165, 0.85);
}

.floating-particles .particle:nth-child(7) {
    top: 40%;
    left: 90%;
    animation-delay: 12s;
    animation-duration: 21s;
    animation: particle-float-7 21s infinite ease-in-out 12s, star-twinkle 1.9s ease-in-out infinite;
}

.floating-particles .particle:nth-child(7)::before,
.floating-particles .particle:nth-child(7)::after {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.floating-particles .particle:nth-child(8) {
    top: 60%;
    left: 15%;
    animation-delay: 14s;
    animation-duration: 18s;
    transform: rotate(35deg) scale(1.15);
}

.floating-particles .particle:nth-child(8)::before,
.floating-particles .particle:nth-child(8)::after {
    border-bottom-color: rgba(199, 125, 255, 0.95);
}

.floating-particles .particle:nth-child(9) {
    top: 15%;
    left: 70%;
    animation-delay: 16s;
    animation-duration: 20s;
    animation: particle-float-9 20s infinite ease-in-out 16s, star-twinkle 2.0s ease-in-out infinite;
}

.floating-particles .particle:nth-child(9)::before,
.floating-particles .particle:nth-child(9)::after {
    border-bottom-color: rgba(255, 107, 157, 0.85);
}

.floating-particles .particle:nth-child(10) {
    top: 85%;
    left: 85%;
    animation-delay: 18s;
    animation-duration: 19s;
    animation: particle-float-10 19s infinite ease-in-out 18s, star-twinkle 2.2s ease-in-out infinite;
}

.floating-particles .particle:nth-child(10)::before,
.floating-particles .particle:nth-child(10)::after {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

.floating-particles .particle:nth-child(11) {
    top: 25%;
    left: 45%;
    animation: particle-float-11 17s infinite ease-in-out 1s, star-twinkle 1.7s ease-in-out infinite;
}

.floating-particles .particle:nth-child(11)::before,
.floating-particles .particle:nth-child(11)::after {
    border-bottom-color: rgba(255, 107, 157, 0.8);
}

.floating-particles .particle:nth-child(12) {
    top: 55%;
    left: 75%;
    animation: particle-float-12 21s infinite ease-in-out 3s, star-twinkle 2.5s ease-in-out infinite;
}

.floating-particles .particle:nth-child(12)::before,
.floating-particles .particle:nth-child(12)::after {
    border-bottom-color: rgba(199, 125, 255, 0.85);
}

.floating-particles .particle:nth-child(13) {
    top: 35%;
    left: 25%;
    animation: particle-float-13 19s infinite ease-in-out 5s, star-twinkle 1.6s ease-in-out infinite;
}

.floating-particles .particle:nth-child(13)::before,
.floating-particles .particle:nth-child(13)::after {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.floating-particles .particle:nth-child(14) {
    top: 65%;
    left: 55%;
    animation: particle-float-14 18s infinite ease-in-out 7s, star-twinkle 2.3s ease-in-out infinite;
}

.floating-particles .particle:nth-child(14)::before,
.floating-particles .particle:nth-child(14)::after {
    border-bottom-color: rgba(6, 255, 165, 0.8);
}

.floating-particles .particle:nth-child(15) {
    top: 45%;
    left: 5%;
    animation: particle-float-15 20s infinite ease-in-out 9s, star-twinkle 1.9s ease-in-out infinite;
}

.floating-particles .particle:nth-child(15)::before,
.floating-particles .particle:nth-child(15)::after {
    border-bottom-color: rgba(255, 255, 255, 0.75);
}

.floating-particles .particle:nth-child(16) {
    top: 75%;
    left: 95%;
    animation: particle-float-16 16s infinite ease-in-out 11s, star-twinkle 2.1s ease-in-out infinite;
}

.floating-particles .particle:nth-child(16)::before,
.floating-particles .particle:nth-child(16)::after {
    border-bottom-color: rgba(255, 107, 157, 0.9);
}

.floating-particles .particle:nth-child(17) {
    top: 5%;
    left: 60%;
    animation: particle-float-17 22s infinite ease-in-out 13s, star-twinkle 2.4s ease-in-out infinite;
}

.floating-particles .particle:nth-child(17)::before,
.floating-particles .particle:nth-child(17)::after {
    border-bottom-color: rgba(199, 125, 255, 0.9);
}

.floating-particles .particle:nth-child(18) {
    top: 90%;
    left: 40%;
    animation: particle-float-18 17s infinite ease-in-out 15s, star-twinkle 1.8s ease-in-out infinite;
}

.floating-particles .particle:nth-child(18)::before,
.floating-particles .particle:nth-child(18)::after {
    border-bottom-color: rgba(255, 255, 255, 0.85);
}

.floating-particles .particle:nth-child(19) {
    top: 12%;
    left: 35%;
    animation: particle-float-19 19s infinite ease-in-out 17s, star-twinkle 2.0s ease-in-out infinite;
}

.floating-particles .particle:nth-child(19)::before,
.floating-particles .particle:nth-child(19)::after {
    border-bottom-color: rgba(6, 255, 165, 0.9);
}

.floating-particles .particle:nth-child(20) {
    top: 95%;
    left: 65%;
    animation: particle-float-20 18s infinite ease-in-out 19s, star-twinkle 2.2s ease-in-out infinite;
}

.floating-particles .particle:nth-child(20)::before,
.floating-particles .particle:nth-child(20)::after {
    border-bottom-color: rgba(255, 107, 157, 0.85);
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) rotate(35deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg);
        opacity: 0;
    }
}

@keyframes particle-float-1 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.4);
        opacity: 0;
    }
}

@keyframes particle-float-2 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.65);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.55);
        opacity: 0;
    }
}

@keyframes particle-float-3 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.35);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.45);
        opacity: 0;
    }
}

@keyframes particle-float-4 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.2);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.8);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.6);
        opacity: 0;
    }
}

@keyframes particle-float-5 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.05);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.35);
        opacity: 0;
    }
}

@keyframes particle-float-6 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes particle-float-7 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.85);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.275);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.425);
        opacity: 0;
    }
}

@keyframes particle-float-8 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.15);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.725);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.575);
        opacity: 0;
    }
}

@keyframes particle-float-9 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.95);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.425);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.475);
        opacity: 0;
    }
}

@keyframes particle-float-10 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.05);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.575);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.525);
        opacity: 0;
    }
}

@keyframes particle-float-11 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.88);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.32);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.44);
        opacity: 0;
    }
}

@keyframes particle-float-12 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.08);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.62);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.54);
        opacity: 0;
    }
}

@keyframes particle-float-13 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.92);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.38);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.46);
        opacity: 0;
    }
}

@keyframes particle-float-14 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.98);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.47);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.49);
        opacity: 0;
    }
}

@keyframes particle-float-15 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.86);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.29);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.43);
        opacity: 0;
    }
}

@keyframes particle-float-16 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.12);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.68);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.56);
        opacity: 0;
    }
}

@keyframes particle-float-17 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.18);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.77);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.59);
        opacity: 0;
    }
}

@keyframes particle-float-18 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.94);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.41);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.47);
        opacity: 0;
    }
}

@keyframes particle-float-19 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1.03);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.545);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.515);
        opacity: 0;
    }
}

@keyframes particle-float-20 {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(0.96);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -200px) rotate(35deg) scale(1.44);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(50px, -400px) rotate(35deg) scale(0.48);
        opacity: 0;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--hover-duration) var(--hover-ease);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 28px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    height: 24px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(199, 125, 255, 0.2));
    border: 1px solid var(--primary-500);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-beta 3s ease-in-out infinite;
}

@keyframes pulse-beta {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.25);
    }
    50% { 
        box-shadow: 0 0 14px 3px rgba(255, 107, 157, 0.15);
    }
}

.community-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    margin-left: 6px;
    background: linear-gradient(135deg, var(--accent-teal), #06FFA5);
    border-radius: 6px;
    font-size: 9px;
    font-weight: 800;
    color: var(--neutral-950);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-new 2s ease-in-out infinite;
}

@keyframes pulse-new {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 255, 165, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 12px 2px rgba(6, 255, 165, 0.2);
        transform: scale(1.02);
    }
}

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

.nav-link {
    color: var(--neutral-200);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--hover-duration) var(--hover-ease);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-purple));
    transition: width var(--hover-duration) var(--hover-ease);
}

.nav-link:hover {
    color: var(--neutral-100);
}

.nav-link.active {
    color: var(--primary-500);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--neutral-100);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.lang-switch:hover {
    background: var(--glass-hover);
    border-color: var(--primary-500);
    box-shadow: var(--hover-glow);
    transform: translateY(var(--hover-lift-sm));
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease;
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
}

/* Header: sabit buton boyutu – dil değişince sadece yazı değişsin, buton küçülüp büyümesin */
.navbar .nav-actions .btn-primary.nav-cta {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}
.navbar .nav-actions .lang-switch {
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-100);
    border-radius: 2px;
    transition: all var(--hover-duration) var(--hover-ease);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions .lang-switch {
        display: none;
    }

    /* Download butonu mobilde hamburger menünün içine taşındı */
    .nav-actions .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ── Mobil Menü Overlay ─────────────────────────────────── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.mobile-menu-inner {
    width: 280px;
    height: 100%;
    background: rgba(14, 14, 22, 0.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    padding: 24px 20px 40px;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

.mobile-menu-close {
    align-self: flex-end;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--neutral-200);
    font-size: 18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: background var(--hover-duration) ease, color var(--hover-duration) ease;
}

.mobile-menu-close:hover {
    background: var(--glass-hover);
    color: var(--primary-500);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-nav-link {
    color: var(--neutral-200);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background var(--hover-duration) ease, color var(--hover-duration) ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-link:hover {
    background: var(--glass-bg);
    color: var(--neutral-100);
}

.mobile-nav-cta {
    margin-top: auto;
    margin-top: 24px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}


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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 1200px 800px at 30% 40%, rgba(255, 107, 157, 0.15), transparent),
        radial-gradient(ellipse 900px 600px at 70% 60%, rgba(199, 125, 255, 0.12), transparent);
    z-index: 0;
    pointer-events: none;
    animation: hero-glow 10s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.65;
        transform: scale(1.03);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-100);
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease 0.1s both;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        gap: 6px;
        white-space: normal;
        text-align: center;
    }
    
    .hero-badge span {
        display: inline-block;
        word-wrap: break-word;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.5s ease 0.1s both;
}

.title-line:nth-child(1) {
    animation-delay: 0.15s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-200);
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeInUp 0.5s ease 0.3s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.9s both;
    justify-content: flex-start;
}

@media (max-width: 968px) {
    .hero-cta {
        justify-content: center;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-hero-primary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

.btn-hero-primary:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: var(--neutral-100);
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease, background var(--hover-duration) ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

.btn-hero-secondary:hover {
    background: var(--glass-hover);
    border-color: var(--accent-purple);
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-glow);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.5s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--neutral-200);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeIn 0.6s ease 0.2s both;
    max-width: 350px;
    margin: 0 auto;
}

.hero-mockup-container {
    position: relative;
    max-width: 420px;
    width: 100%;
    animation: float-mockup 6s ease-in-out infinite;
}

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

.hero-mockup {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(255, 107, 157, 0.25), transparent 60%);
    filter: blur(50px);
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.phone-mockup {
    position: relative;
    width: 310px;
    height: 640px;
    max-width: 100%;
    margin: 0 auto;
    animation: float-phone 6s ease-in-out infinite;
}

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

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 42px;
    padding: 8px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.9),
        inset 0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #000;
    border-radius: 50%;
    z-index: 10;
    border: 2px solid #1a1a1a;
    box-shadow: 
        0 0 8px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #1a3a5a 0%, #0a1a2a 100%);
    border-radius: 50%;
    opacity: 0.6;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

/* Mockup Carousel Styles */
.mockup-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 36px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.app-header {
    padding: 35px 16px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.app-time {
    font-weight: 600;
}

.app-icons {
    display: flex;
    gap: 3px;
    align-items: center;
}

.signal-icon,
.wifi-icon,
.battery-icon {
    width: 14px;
    height: 10px;
    background: var(--neutral-100);
    border-radius: 2px;
}

.app-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.calendar-widget {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-header h3 {
    font-size: 14px;
    font-weight: 600;
}

.cycle-day {
    font-size: 11px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.calendar-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.cycle-ring {
    width: 100%;
    height: 100%;
}

.cycle-info {
    position: absolute;
    text-align: center;
}

.cycle-phase {
    font-size: 11px;
    color: var(--neutral-200);
}

.cycle-emoji {
    font-size: 28px;
    margin-top: 3px;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 10px;
    color: var(--neutral-300);
    margin-bottom: 3px;
}

.stat-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-500);
}

.symptom-tracker {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
}

.symptom-tracker h4 {
    font-size: 13px;
    margin-bottom: 10px;
}

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

.symptom-icon {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.symptom-icon.active {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    border-color: transparent;
    transform: scale(1.02);
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    opacity: 0.5;
    transition: opacity var(--hover-duration) var(--hover-ease);
}

.nav-item.active {
    opacity: 1;
}

.nav-icon {
    font-size: 20px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 720px;
    background: radial-gradient(ellipse, rgba(255, 107, 157, 0.35), rgba(199, 125, 255, 0.2) 40%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.03); }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation: float-badge 3s ease-in-out infinite;
    z-index: 10;
}

.badge-1 {
    top: 12%;
    right: -15px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 18%;
    left: -20px;
    animation-delay: 1.5s;
}

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

@media (max-width: 968px) {
    .floating-badge {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .badge-1 {
        right: -10px;
        top: 10%;
    }
    
    .badge-2 {
        left: -10px;
        bottom: 15%;
    }
}

@media (max-width: 768px) {
    .floating-badge {
        display: none;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--neutral-300);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.5s ease 0.45s both;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--neutral-400);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neutral-400);
    border-radius: 2px;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 10px); opacity: 0.3; }
}

@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 270px;
        height: 560px;
    }
    
    .hero-visual {
        max-width: 290px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

.stats-bar {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5), transparent);
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-300);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
}

@media (max-width: 968px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .stat-item {
        padding: 16px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .stat-label {
        font-size: 12px;
    }
}

section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-200);
    max-width: 700px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .section-description {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 28px;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.bento-card * {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(199, 125, 255, 0.08));
    opacity: 0;
    transition: opacity var(--hover-duration) ease;
}

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

.bento-card:hover {
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-with-glow);
}

.bento-card-coming-soon {
    position: relative;
    opacity: 0.92;
}

.bento-card-coming-soon:hover {
    opacity: 1;
}

.bento-card-coming-soon .beta-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-icon,
.card-icon-large {
    margin-bottom: 20px;
    color: var(--primary-500);
}

.card-icon-large {
    width: 64px;
    height: 64px;
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bento-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--neutral-200);
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
}

.card-visual {
    margin-top: auto;
    opacity: 0.6;
}

.prediction-chart {
    position: relative;
    height: 60px;
    margin-top: 20px;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-purple));
    border-radius: 2px;
}

.chart-dot {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--neutral-600);
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chart-dot.active {
    width: 16px;
    height: 16px;
    background: var(--primary-500);
    box-shadow: var(--shadow-glow-pink);
}

.symptom-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.symptom-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
}

@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .bento-card {
        min-height: 200px;
        padding: 24px;
    }
    
    .bento-card h3 {
        font-size: 18px;
    }
    
    .bento-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bento-card {
        padding: 20px;
        min-height: 180px;
    }
    
    .bento-card h3 {
        font-size: 17px;
    }
    
    .bento-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .card-icon,
    .card-icon-large {
        transform: scale(0.85);
        margin-bottom: 12px;
    }
}

.security-visual {
    max-width: 1100px;
    margin: 0 auto;
}

.encryption-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.flow-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) ease;
}

.flow-step:hover {
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-with-glow);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    border-radius: 16px;
    color: var(--primary-500);
}

.flow-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.flow-step p {
    font-size: 14px;
    color: var(--neutral-200);
    line-height: 1.6;
}

.flow-arrow {
    position: relative;
    flex-shrink: 0;
}

.encryption-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: particle-flow 2s ease-in-out infinite;
}

.particle:nth-child(1) {
    animation-delay: 0s;
    top: 20%;
}

.particle:nth-child(2) {
    animation-delay: 0.7s;
    top: 50%;
}

.particle:nth-child(3) {
    animation-delay: 1.4s;
    top: 80%;
}

@keyframes particle-flow {
    0% {
        left: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    width: 160px;
    min-width: 160px;
    box-sizing: border-box;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.security-badge span {
    white-space: nowrap;
}

.security-badge:hover {
    transform: translateY(calc(-1 * var(--hover-lift-sm)));
    border-color: var(--primary-500);
    box-shadow: var(--hover-glow);
}

@media (max-width: 968px) {
    .encryption-flow {
        flex-direction: column;
        gap: 32px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .security-badges {
        flex-wrap: wrap;
        gap: 16px;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(255, 107, 157, 0.2);
}

.step-icon {
    margin: 20px auto 24px;
    color: var(--primary-500);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neutral-200);
}

@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.technical-security {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 157, 0.02), transparent);
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.tech-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) ease, background var(--hover-duration) ease;
}

.tech-card:hover {
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-with-glow);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.04), rgba(199, 125, 255, 0.04));
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.tech-icon {
    color: var(--primary-500);
    flex-shrink: 0;
}

.tech-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-100);
    line-height: 1.3;
}

.tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-list li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--neutral-200);
    padding-left: 20px;
    position: relative;
}

.tech-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.tech-list li strong {
    color: var(--neutral-100);
    font-weight: 600;
}

.tech-footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(199, 125, 255, 0.08));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-align: center;
}

.tech-footer-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-100);
}

.tech-footer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-200);
    margin-bottom: 24px;
}

.tech-footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-100);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease, color var(--hover-duration) ease;
}

.tech-link:hover {
    transform: translateY(var(--hover-lift-sm));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
    color: var(--primary-500);
}

@media (max-width: 968px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
        padding: 24px;
    }
    
    .tech-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tech-footer {
        padding: 32px 24px;
    }
    
    .tech-footer-links {
        flex-direction: column;
    }
    
    .tech-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .technical-security {
        padding: 80px 0;
    }
    
    .tech-card {
        padding: 20px;
    }
    
    .tech-header h3 {
        font-size: 18px;
    }
    
    .tech-list li {
        font-size: 13px;
    }
}

@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card * {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 24px 20px;
    }
}

.testimonial-card:hover {
    transform: translateY(calc(-1 * var(--hover-lift))) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-with-glow);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-100);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
}

.author-role {
    font-size: 13px;
    color: var(--neutral-300);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
}

.faq-item:hover {
    border-color: var(--primary-500);
    box-shadow: var(--hover-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--neutral-100);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--hover-duration) var(--hover-ease);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--hover-duration) var(--hover-ease);
}

.faq-item.active .faq-icon {
    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: 500px;
    padding: 0 28px 24px;
}

@media (max-width: 768px) {
    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }
}

@media (max-width: 480px) {
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-200);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
    }
}

.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.15), transparent 60%);
    z-index: 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(199, 125, 255, 0.08));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-200);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--neutral-900);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.store-button:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
}

.store-button .apple-logo-icon,
.store-button.google-play .google-play-icon {
    flex-shrink: 0;
    object-fit: contain;
}
.store-button .apple-logo-icon {
    /* Wikimedia Apple logo siyah; koyu butonda beyaz göstermek için */
    filter: brightness(0) invert(1);
}

.store-button.coming-soon {
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
    pointer-events: none;
}

.store-button.coming-soon:hover {
    transform: none;
    border-color: var(--glass-border);
    box-shadow: none;
}

.store-button.coming-soon::after {
    content: var(--coming-soon-text, 'Yakında');
    position: absolute;
    top: -12px;
    right: -11px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
    white-space: nowrap;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 11px;
    color: var(--neutral-300);
    text-transform: uppercase;
}

.store-name {
    font-size: 16px;
    font-weight: 700;
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--neutral-200);
}

/* İndirme bölümü – 2 çapraz telefon mockup (hero ile aynı tasarım) */
.cta-visual {
    flex-shrink: 0;
    text-align: center;
}

.cta-phones {
    position: relative;
    width: 320px;
    height: 380px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone-mockup {
    position: absolute;
    width: 200px;
    height: 410px;
    animation: cta-phone-float 5s ease-in-out infinite;
}

.cta-phone-mockup .phone-frame {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    padding: 6px;
}

.cta-phone-mockup .phone-notch {
    width: 22px;
    height: 22px;
    top: 10px;
}

.cta-phone-mockup .phone-notch::after {
    width: 10px;
    height: 10px;
}

.cta-phone-mockup .phone-screen {
    border-radius: 28px;
}

.cta-phone-mockup .phone-screen > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* Sol üst – hafif sola yatık */
.cta-phone-1 {
    left: 50%;
    top: 50%;
    transform: translate(-65%, -50%) rotate(-18deg);
    z-index: 2;
    animation-delay: 0s;
}

/* Sağ alt – hafif sağa yatık */
.cta-phone-2 {
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%) rotate(14deg);
    z-index: 1;
    animation-delay: -2.5s;
}

@keyframes cta-phone-float {
    0%, 100% { transform: translate(-65%, -50%) rotate(-18deg) translateY(0); }
    50% { transform: translate(-65%, -50%) rotate(-18deg) translateY(-8px); }
}

.cta-phone-2 {
    animation-name: cta-phone-float-2;
}

@keyframes cta-phone-float-2 {
    0%, 100% { transform: translate(-35%, -50%) rotate(14deg) translateY(0); }
    50% { transform: translate(-35%, -50%) rotate(14deg) translateY(-8px); }
}


@media (max-width: 968px) {
    .cta-container {
        flex-direction: column;
        padding: 60px 32px;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .store-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-phones {
        width: 280px;
        height: 340px;
    }
    .cta-phone-mockup {
        width: 170px;
        height: 348px;
    }
}

@media (max-width: 480px) {
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-feature {
        font-size: 13px;
    }
    
    .cta-phones {
        width: 260px;
        height: 320px;
    }
    .cta-phone-mockup {
        width: 155px;
        height: 318px;
    }
}

.footer {
    background: var(--neutral-900);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 32px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.footer-brand {
    flex-shrink: 0;
    min-width: 200px;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    margin-top: -2px;
    transition: opacity var(--hover-duration) ease;
}

.footer-logo-wrap:hover {
    opacity: 0.9;
}

/* Footer logo: 50px ikon, 35px yazı */
.footer-brand .footer-logo-icon,
.footer-logo-wrap .footer-logo-icon {
    height: 50px !important;
    max-height: 50px !important;
    width: 50px !important;
    display: block !important;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-brand .footer-logo-text,
.footer-logo-wrap .footer-logo-text {
    height: 35px !important;
    max-height: 35px !important;
    max-width: 220px !important;
    width: auto !important;
    display: block !important;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-tagline {
    font-size: 15px;
    color: var(--neutral-300);
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 500;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--neutral-200);
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease, color var(--hover-duration) ease;
}

.social-link:hover {
    background: var(--glass-hover);
    border-color: var(--primary-500);
    color: var(--primary-500);
    transform: translateY(var(--hover-lift-sm));
    box-shadow: var(--hover-glow);
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    flex-shrink: 0;
    min-width: max-content;
    margin-left: auto;
}

.footer-column h4,
.footer-link-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--neutral-100);
}

.footer-column a,
.footer-link {
    display: block;
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color var(--hover-duration) var(--hover-ease);
}

.footer-column a:hover,
.footer-link:hover {
    color: var(--primary-500);
}

.footer-column,
.footer-link-group {
    flex-shrink: 0;
    min-width: 110px;
    max-width: 180px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin: 0 0 12px 0;
}

.footer-link-list li:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    font-size: 14px;
    color: var(--neutral-300);
}

.footer-company-link {
    color: var(--primary-500);
    text-decoration: none;
    transition: color var(--hover-duration) ease;
}

.footer-company-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.footer-copyright-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-trademarks {
    font-size: 12px;
    color: var(--neutral-400);
    margin: 0;
}

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

.footer-badge {
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 12px;
}

@media (max-width: 968px) {
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-main {
        gap: 24px;
    }
    
    .footer-links {
        gap: 24px;
    }
    
    .footer-column,
    .footer-link-group {
        min-width: 100px;
    }
}

@media (max-width: 600px) {
    .footer-links {
        gap: 20px;
    }
    
    .footer-column,
    .footer-link-group {
        min-width: 90px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-column h4 {
        font-size: 14px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    
    .footer-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(18, 18, 18, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2000;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    color: var(--neutral-100);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo {
    height: 28px;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--neutral-100);
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.mobile-menu-close:hover {
    background: var(--glass-hover);
    border-color: var(--primary-500);
    box-shadow: var(--hover-glow);
    transform: translateY(var(--hover-lift-sm));
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: var(--neutral-100);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: background var(--hover-duration) var(--hover-ease), color var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
}

.mobile-nav-link:hover {
    background: var(--glass-bg);
    color: var(--primary-500);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 157, 0.2);
}

.mobile-cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

@media (min-width: 969px) {
    .mobile-menu {
        display: none;
    }
}

/* ===================================
   Legal Pages Styles
   =================================== */

.legal-page {
    padding: 40px 0 100px;
    position: relative;
    z-index: 2;
}

.legal-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-200);
    max-width: 700px;
    margin: 0 auto;
}

.legal-header-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.legal-header-actions .lang-content {
    display: none;
}

.legal-header-actions .lang-content.active {
    display: inline-block;
}

.legal-header-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: var(--neutral-200);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.legal-header-actions a:hover {
    background: var(--glass-hover);
    border-color: var(--primary-500);
    color: var(--neutral-100);
    transform: translateY(-2px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 24px;
    padding: 24px;
}

.legal-lang-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.legal-lang-toggle button {
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--neutral-200);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--hover-duration) ease, border-color var(--hover-duration) ease, color var(--hover-duration) ease;
}

.legal-lang-toggle button:hover {
    border-color: var(--primary-500);
    color: var(--neutral-100);
}

.legal-lang-toggle button.active {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: var(--neutral-900);
}

.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

.legal-section {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 32px;
    position: relative;
    transition: border-color var(--hover-duration) ease, box-shadow var(--hover-duration) ease;
}

.legal-section:hover {
    border-color: var(--primary-500);
    box-shadow: var(--hover-shadow-with-glow);
}

.section-number {
    position: absolute;
    top: -20px;
    left: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(255, 107, 157, 0.2);
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--neutral-100);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--neutral-100);
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--neutral-100);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-200);
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0 24px 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-200);
    margin-bottom: 12px;
}

.legal-section li strong {
    color: var(--neutral-100);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-500);
    text-decoration: none;
    transition: color var(--hover-duration) var(--hover-ease);
}

.legal-section a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.legal-section a.btn-primary,
.legal-section a.btn-primary:hover {
    color: #ffffff !important;
    text-decoration: none;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    border: 1px solid var(--primary-500);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.highlight-box p {
    margin: 0;
    color: var(--neutral-100);
}

.highlight-box.success {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(6, 255, 165, 0.05));
    border-color: var(--accent-teal);
}

.highlight-box.warning {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(232, 90, 127, 0.1));
    border-color: var(--primary-600);
}

.info-box {
    background: rgba(199, 125, 255, 0.08);
    border: 1px solid var(--accent-purple);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.info-box h4 {
    color: var(--accent-purple);
    margin-top: 0;
    margin-bottom: 16px;
}

.info-box ul {
    margin: 12px 0 12px 20px;
}

.info-box li {
    font-size: 15px;
    margin-bottom: 8px;
}

.tech-box {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.tech-box h4 {
    color: var(--accent-teal);
    margin-top: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-box ul {
    margin: 12px 0 12px 20px;
}

.tech-box li {
    font-size: 15px;
    margin-bottom: 10px;
}

.note {
    font-size: 14px;
    color: var(--neutral-300);
    font-style: italic;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-purple);
    border-radius: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, border-color var(--hover-duration) ease;
}

.contact-card:hover {
    border-color: var(--primary-500);
    transform: translateY(calc(-1 * var(--hover-lift-sm)));
    box-shadow: var(--hover-shadow-with-glow);
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--neutral-100);
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--hover-duration) var(--hover-ease);
}

.contact-card a:hover {
    color: var(--accent-purple);
}

.legal-footer-note {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(199, 125, 255, 0.08));
    border: 1px solid var(--primary-500);
    border-radius: 24px;
    padding: 40px;
    margin-top: 48px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.note-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.legal-footer-note h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neutral-100);
}

.legal-footer-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-200);
    margin: 0;
}

.legal-footer-note a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 600;
}

.legal-footer-note a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 968px) {
    .legal-section {
        padding: 36px 28px;
    }
    
    .section-number {
        left: 28px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-footer-note {
        padding: 32px 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .note-icon {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 20px 0 60px;
    }
    
    .legal-header {
        margin-bottom: 48px;
    }
    
    .legal-section {
        padding: 28px 20px;
        margin-bottom: 24px;
    }
    
    .section-number {
        left: 20px;
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: -18px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .legal-section h3 {
        font-size: 17px;
        margin: 24px 0 12px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .highlight-box,
    .info-box,
    .tech-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .legal-footer-note {
        padding: 24px 20px;
    }
    
    .note-icon {
        font-size: 32px;
    }
    
    .legal-footer-note h3 {
        font-size: 18px;
    }
    
    .legal-footer-note p {
        font-size: 14px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.98)) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid var(--glass-border) !important;
    padding: 24px 40px !important;
    z-index: 999999 !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6) !important;
    transform: translateY(100%) !important;
    opacity: 0 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease !important;
    visibility: hidden !important;
    display: block !important;
    margin: 0 !important;
}

.cookie-consent-banner.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    color: var(--neutral-200);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-text strong {
    color: var(--neutral-100);
    font-weight: 600;
}

.cookie-policy-link {
    color: var(--primary-500);
    text-decoration: underline;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
    transition: color var(--hover-duration) var(--hover-ease);
}

.cookie-policy-link:hover {
    color: var(--primary-red-light);
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) ease, background var(--hover-duration) ease, border-color var(--hover-duration) ease, color var(--hover-duration) ease;
    border: none;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #c62828, #6a1b5c);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.btn-cookie-accept:hover {
    transform: translateY(var(--hover-lift-sm)) scale(var(--hover-scale));
    box-shadow: var(--hover-shadow-strong), var(--hover-glow);
    color: #ffffff;
}

.btn-cookie-reject {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--neutral-200);
}

.btn-cookie-reject:hover {
    background: var(--glass-hover);
    border-color: var(--neutral-400);
    color: var(--neutral-100);
    transform: translateY(var(--hover-lift-sm));
    box-shadow: var(--hover-glow);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
    
    .cookie-consent-text p {
        font-size: 13px;
    }
}

/* Ensure banner is visible and on top */
.cookie-consent-banner {
    display: block !important;
    visibility: visible !important;
}

.cookie-consent-banner:not(.show) {
    display: block !important;
    pointer-events: none;
    opacity: 0 !important;
}

.cookie-consent-banner.show {
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 16px;
    }
    
    .cookie-consent-text p {
        font-size: 12px;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Data Deletion Form (efxweb uyumlu) */
.deletion-warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}
.deletion-warning-box p { margin: 0; color: var(--neutral-100); line-height: 1.6; }
.deletion-warning-box strong { color: #FFC107; }
.deletion-warning-box { background: rgba(26, 26, 26, 0.9); }

.deletion-form {
    max-width: 800px;
    margin: 40px 0;
    padding: 0;
    background: transparent;
    border: none;
}
.form-section {
    margin-bottom: 40px;
    padding: 35px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(225, 57, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.form-section:hover {
    border-color: rgba(225, 57, 53, 0.35);
    background: rgba(30, 30, 30, 0.95);
}
.form-section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(225, 57, 53, 0.1);
}
.form-section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 57, 53, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--primary-500);
}
.form-section-icon svg { width: 24px; height: 24px; }
.form-section-title-group { flex: 1; }
.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-100);
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}
.form-section-subtitle {
    font-size: 14px;
    color: var(--neutral-300);
    margin: 0;
    line-height: 1.5;
}
.form-section-content { padding-top: 10px; }
.form-group { margin-bottom: 25px; }
.form-label {
    display: block;
    color: var(--neutral-100);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-label svg { width: 16px; height: 16px; color: var(--primary-500); flex-shrink: 0; }
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--neutral-100);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23E53935' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
    background-color: rgba(26, 26, 26, 0.95);
}
/* Açılan select listesindeki seçenekler okunaklı olsun */
select.form-input option,
.form-input option,
.legal-content select option {
    background: var(--neutral-800);
    color: var(--neutral-100);
    padding: 10px 14px;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(225, 57, 53, 0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--neutral-400); opacity: 0.6; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { margin-top: 6px; font-size: 12px; color: var(--neutral-400); font-style: italic; }
.checkbox-group { margin: 25px 0; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--neutral-100);
    line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-500);
    flex-shrink: 0;
}
.checkbox-text { flex: 1; font-size: 14px; }
.deletion-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #c62828, #6a1b5c);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.deletion-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(225, 57, 53, 0.35); color: #ffffff; }
.deletion-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message { padding: 20px; border-radius: 8px; margin: 25px 0; line-height: 1.6; }
.form-success { background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.3); color: #81C784; }
.form-error { background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.3); color: #EF5350; }
.form-message a { color: var(--primary-500); text-decoration: underline; }
.alternative-contact {
    margin-top: 50px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(225, 57, 53, 0.2);
    border-radius: 8px;
}
.alternative-contact h4 { color: var(--primary-500); font-size: 18px; margin-bottom: 15px; }
.alternative-contact p { margin-bottom: 15px; color: var(--neutral-300); }
.alternative-contact ul { margin: 15px 0; padding-left: 25px; }
.alternative-contact li { margin-bottom: 10px; color: var(--neutral-300); line-height: 1.6; }
.alternative-contact strong { color: var(--neutral-100); }
.alternative-contact a { color: var(--primary-500); text-decoration: none; }
.alternative-contact a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .form-section { padding: 25px 20px; margin-bottom: 30px; }
    .form-section-header { flex-direction: column; gap: 15px; }
    .form-section-icon { width: 40px; height: 40px; }
    .form-section-icon svg { width: 20px; height: 20px; }
    .form-section-title { font-size: 18px; }
    .form-section-subtitle { font-size: 13px; }
    .deletion-submit-btn { padding: 14px 24px; font-size: 14px; }
    .alternative-contact { padding: 20px; }
}

