:root {
    /* React Bits / Premium Dark Mode Colors */
    --bg-dark: #050505;
    --bg-surface: rgba(20, 20, 22, 0.6);
    --bg-surface-hover: rgba(30, 30, 34, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    
    /* Neon Accents */
    --accent-glow: rgba(139, 92, 246, 0.5); /* Purple glow */
    --accent-primary: #8b5cf6; /* Violet */
    --accent-secondary: #ec4899; /* Pink */
    --accent-tertiary: #06b6d4; /* Cyan */
    
    /* Gradients */
    --gradient-text: linear-gradient(to right, #8b5cf6, #ec4899, #06b6d4);
    --gradient-border: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(6, 182, 212, 0.4));
    
    /* Structure */
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Gradient Mesh Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #050505;
}

.mesh-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-secondary);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 400px;
    height: 400px;
    background: var(--accent-tertiary);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.logo-emblem {
    height: 40px;
    width: 40px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
}

.logo-box {
    background: var(--gradient-text);
    color: white;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

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

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

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

/* Glowing Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-text);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Glassmorphism Metrics */
.metrics-mini {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.metric {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    padding: 16px 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.metric-val {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Consolas', monospace;
}

.metric-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Modern App Mockup */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 100px rgba(139, 92, 246, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius-lg) - 1px);
    display: block;
    background: #111;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 24px;
    /* Modüle özel renk: --ic ile flat tint (yoksa tema gradyanı). */
    background: var(--ic, var(--gradient-text));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 14px var(--ic, rgba(139, 92, 246, 0.4)));
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Gallery — hero gorseliyle ayni premium cerceve */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 44px 36px;
    margin-top: 20px;
}

.shot {
    margin: 0;
}

.shot .frame {
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 70px rgba(139, 92, 246, 0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
}

.shot:hover .frame {
    transform: translateY(-8px);
    box-shadow: 0 40px 75px rgba(0,0,0,0.65), 0 0 95px rgba(139, 92, 246, 0.22);
}

.shot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius-lg) - 1px);
    background: #0a0a0e;
}

.shot figcaption {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Download Section */
.download {
    padding: 100px 0 150px;
}

.download-box {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.1);
}

.download-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
}

.dl-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.dl-card {
    background: rgba(0,0,0,0.4);
    border: var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius-md);
    width: 250px;
    text-align: left;
    transition: all 0.3s ease;
}

.dl-card:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(20,20,20,0.6);
}

.dl-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.dl-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Intersection Observer Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Pricing ===== */
.pricing { padding: 100px 0; position: relative; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--bg-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.35s ease, box-shadow 0.35s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

/* Featured (Advanced) */
.price-featured {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        var(--gradient-text) border-box;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.18);
    transform: translateY(-10px) scale(1.015);
}
.price-featured:hover { transform: translateY(-16px) scale(1.015); box-shadow: 0 30px 70px rgba(139,92,246,0.28); }

.price-ribbon {
    position: absolute;
    top: 16px; right: -34px;
    background: var(--gradient-text);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.price-head { margin-bottom: 18px; }
.price-name { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.price-tag { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

.price-amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px; min-height: 52px; }
.price-old {
    width: 100%;
    color: #7c7c86;
    text-decoration: line-through;
    text-decoration-color: var(--accent-secondary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: -2px;
}
.price-cur { font-size: 22px; font-weight: 700; color: #fff; align-self: flex-start; margin-top: 6px; }
.price-num { font-size: 46px; font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1; }
.price-per { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.price-note { font-size: 12.5px; color: var(--text-secondary); margin: 6px 0 18px; }

.btn-block { width: 100%; }
.price-cta { margin-bottom: 8px; }
.price-buy {
    display: block; text-align: center;
    font-size: 13px; font-weight: 600;
    color: #a78bfa; text-decoration: none;
    margin-bottom: 16px; cursor: pointer;
    transition: color 0.2s ease;
}
.price-buy:hover { color: #c4b5fd; }

.price-feats { list-style: none; margin-top: 8px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-feats li {
    position: relative;
    padding-left: 26px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.price-feats li::before {
    content: '✓';
    position: absolute; left: 0; top: 0;
    color: var(--accent-tertiary);
    font-weight: 800;
}
.price-feats li strong { color: #fff; }
.price-feats li em { color: #8a8a93; font-style: normal; font-size: 12px; }

.pricing-foot { text-align: center; margin-top: 40px; color: var(--text-secondary); font-size: 14px; }
.link-accent { color: #a78bfa; cursor: pointer; text-decoration: none; }
.link-accent:hover { color: #c4b5fd; }

/* ===== Modal ===== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(3, 3, 5, 0.72);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; animation: modalFade 0.25s ease; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
    position: relative;
    width: 100%; max-width: 460px;
    max-height: 92vh; overflow-y: auto;
    background: #0c0c10;
    border: 1px solid transparent;
    background:
        linear-gradient(#0c0c10, #0c0c10) padding-box,
        var(--gradient-border) border-box;
    border-radius: var(--border-radius-lg);
    padding: 34px 30px 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(139,92,246,0.15);
    animation: modalRise 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalRise { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: var(--text-secondary);
    font-size: 26px; line-height: 1; cursor: pointer; transition: color 0.2s ease;
}
.modal-close:hover { color: #fff; }

.modal-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.5px; }
.modal-sub { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 22px; line-height: 1.5; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 7px; }
.form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    padding: 11px 14px;
    color: #fff; font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-input:focus { outline: none; border-color: var(--accent-primary); background: rgba(139,92,246,0.06); }
.form-input::placeholder { color: #5a5a63; }

.seg { display: flex; gap: 10px; }
.seg label {
    flex: 1; text-transform: none; letter-spacing: 0; margin: 0;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-sm);
    font-size: 14px; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: all 0.2s ease;
}
.seg input { display: none; }
.seg input:checked + span { color: #fff; }
.seg label:has(input:checked) { border-color: var(--accent-primary); background: rgba(139,92,246,0.12); color: #fff; }

.form-error { color: var(--accent-secondary); font-size: 12.5px; margin-top: -8px; margin-bottom: 12px; min-height: 16px; }
.form-ok { text-align: center; padding: 14px 0; }
.form-ok .ok-icon { font-size: 40px; }
.form-ok p { color: var(--text-secondary); font-size: 14px; margin-top: 8px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }
    .nav-links { display: none; }
    .hero-cta { flex-direction: column; }
    .metrics-mini { gap: 12px; }
    .metric { padding: 12px 20px; }
    .dl-options { flex-direction: column; align-items: center; }
    .price-featured { transform: none; }
    .price-featured:hover { transform: translateY(-8px); }
}

/* deploy 1781463150 */
/* deploy 1781463430 */
/* deploy 1781463693 */
/* deploy 1781463893 */
/* deploy 1781464546 */

/* ===== Footer iyzico rozeti + düzen ===== */
.footer-flex { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; text-align: left; }
.footer-flex .foot-left { min-width: 240px; }
.iyzico-badge { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.iyz-pill { background: #fff; border-radius: 9px; padding: 6px 12px; box-shadow: 0 0 14px rgba(30,100,255,.25); display: inline-flex; }
.iyz-word { color: #1e64ff; font-weight: 800; font-size: 19px; letter-spacing: -.6px; line-height: 1; font-family: 'Inter', sans-serif; }
.iyz-sub { color: var(--text-secondary); font-size: 12px; white-space: nowrap; }
@media (max-width: 600px) { .footer-flex { justify-content: center; text-align: center; } }

/* ===== Dil seçici (TR / EN) ===== */
.lang-switch { display: inline-flex; align-items: center; gap: 8px; margin-left: 8px; }
.lang-switch .lang-opt { background: transparent; border: 0; padding: 0; cursor: pointer; line-height: 0; opacity: 0.4; transition: opacity .15s; }
.lang-switch .lang-opt img { display: block; width: 24px; height: 16px; border-radius: 2px; }
.lang-switch .lang-opt:hover { opacity: 0.8; }
.lang-switch .lang-opt.active { opacity: 1; }
