:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #a855f7;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Sora', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

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

.logo-icon {
    height: 35px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Ultra Premium Hero Section */
.premium-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 10rem;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
}

.hero-bg-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(var(--primary), var(--secondary));
}

.blob-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; bottom: 100px; left: -100px; animation: float 10s infinite; }

.hero-badge-live {
    background: rgba(15, 23, 42, 0.03);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-badge-live span {
    background: #f43f5e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    animation: pulse 2s infinite;
}

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

.hero-title-dynamic {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
}

.text-animate-gradient {
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowGradient 5s linear infinite;
}

@keyframes flowGradient {
    to { background-position: 300% center; }
}

.text-glow {
    color: var(--dark);
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.handwriting {
    font-family: 'cursive';
    font-size: 1rem;
    color: #f43f5e;
    display: inline-block;
    transform: rotate(-15deg) translateY(-10px);
    margin-left: 8px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
    letter-spacing: -0.2px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 4rem;
}

.stat-capsule {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    flex-shrink: 0;
}

.stat-capsule:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-capsule i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.main-hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: 0.5s;
}

.hero-image-wrapper:hover .main-hero-img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255,255,255,0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-card i { color: #10b981; }

.card-1 { top: 10%; left: -20px; animation-delay: 0s; }
.card-2 { bottom: 15%; right: -20px; animation-delay: 1.5s; }

/* Shimmer Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 150%; }
}

/* Brands Marquee */
.brands {
    background: var(--dark);
    padding: 1.5rem 0;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.brands-track span {
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Header */
.section-header {
    text-align: center;
    padding: 5rem 2rem 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Premium Features (Image Style) */
.premium-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-header-left {
    margin-bottom: 4rem;
    max-width: 900px;
}

.premium-title {
    font-size: 2.2rem;
    color: #e57a3d; 
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.premium-subtitle {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.premium-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.premium-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.p-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.p-icon.gold { background: #d97706; }
.p-icon.teal { background: #0d9488; }
.p-icon.green { background: #16a34a; }
.p-icon.purple { background: #9333ea; }
.p-icon.red { background: #dc2626; }

.premium-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.premium-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
    background: var(--light-bg);
    padding: 8rem 2rem;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    color: var(--text-light);
    border-top: 0px solid #f1f5f9;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px;
    border-top-width: 1px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Download Section */
.download-section {
    padding: 8rem 2rem;
    background: var(--white);
}

.download-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    align-items: center;
    color: white;
    gap: 4rem;
    overflow: hidden;
    position: relative;
}

.download-text { flex: 1; position: relative; z-index: 5; }
.download-img { flex: 1; font-size: 15rem; color: rgba(255,255,255,0.05); text-align: center; }

.download-btns {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.download-btn:hover {
    background: rgba(255,255,255,0.2);
}

.download-btn i { font-size: 1.5rem; }
.download-btn span { font-weight: 600; display: flex; flex-direction: column; }
.download-btn small { font-weight: 400; font-size: 0.7rem; opacity: 0.7; }

/* Footer */
footer {
    background: #0a0f1c;
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p { margin-top: 1.5rem; color: rgba(255,255,255,0.6); }

.footer-links h4, .footer-social h4 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }

.social-icons { display: flex; gap: 1rem; }
.social-icons a { 
    background: rgba(255,255,255,0.05);
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: 0.3s;
}
.social-icons a:hover { background: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 6rem; }
    .hero-title-dynamic { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-buttons { justify-content: center; }
    .download-container { flex-direction: column; padding: 3rem 2rem; text-align: center; }
    .download-btns { flex-direction: column; }
    
    /* Mobil İstatistik Küçültme */
    .hero-stats {
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    .stat-capsule {
        padding: 0.4rem 0.6rem;
        gap: 0.5rem;
    }
    .stat-capsule i {
        font-size: 1rem;
    }
    .stat-num {
        font-size: 0.9rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
}

/* Free Banner */
.free-banner { padding: 30px 20px; background: linear-gradient(135deg, #0f0f1a, #1a1a2e); }
.free-banner-container { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
.free-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 16px; font-weight: 600; }
.free-item i { font-size: 22px; color: #a78bfa; }
.free-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }

/* Install Guide */
.install-guide { padding: 80px 20px; max-width: 900px; margin: 0 auto; }
.install-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.install-step { display: flex; align-items: flex-start; gap: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; }
.step-num { min-width: 44px; height: 44px; background: linear-gradient(135deg, #7c3aed, #a78bfa); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; }
.step-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.step-content p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; }
.step-content strong { color: #a78bfa; }

/* Error Grid */
.error-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.error-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; }
.error-icon { font-size: 28px; color: #f59e0b; margin-bottom: 12px; }
.error-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.error-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }
.error-card strong { color: #a78bfa; }

@media (max-width: 600px) {
  .free-divider { display: none; }
  .free-banner-container { gap: 14px; }
  .install-step { flex-direction: column; }
}

/* Install Guide Fix */
.install-guide { padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.install-step { display: flex; align-items: flex-start; gap: 20px; background: #1a1a2e; border: 1px solid rgba(167,139,250,0.3); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.step-num { min-width: 44px; height: 44px; background: linear-gradient(135deg, #7c3aed, #a78bfa); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.step-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: #ffffff !important; }
.step-content p { color: #cccccc !important; font-size: 14px; line-height: 1.6; }
.step-content strong { color: #a78bfa !important; }
.error-card h3 { color: #ffffff !important; }
.error-card p { color: #cccccc !important; }
.error-card strong { color: #a78bfa !important; }
