/* =============================================
   MASAÜSTÜ UYGULAMA SAYFASI STİLLERİ
   ============================================= */

.desktop-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1040 50%, #24243e 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    color: #fff;
}
.desktop-hero .hero-badge {
    display: inline-block;
    background: rgba(67,97,238,0.15);
    color: #818cf8;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(67,97,238,0.2);
}
.desktop-hero .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.desktop-hero .hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.desktop-hero .btn-hero-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #fff; padding: 14px 32px; border-radius: 12px;
    font-weight: 600; border: none; text-decoration: none; transition: all 0.3s ease;
}
.desktop-hero .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(67,97,238,0.4); color: #fff; }
.desktop-hero .btn-hero-outline {
    background: transparent; color: #fff; padding: 14px 32px; border-radius: 12px;
    font-weight: 600; border: 2px solid rgba(255,255,255,0.2); text-decoration: none; transition: all 0.3s ease;
}
.desktop-hero .btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.desktop-hero .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.text-gradient {
    background: linear-gradient(135deg, #4361ee, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-techs { display: flex; gap: 8px; flex-wrap: wrap; }
.tech-badge {
    background: rgba(67,97,238,0.12);
    color: #818cf8;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(67,97,238,0.15);
}

/* Code window */
.hero-visual { perspective: 1000px; }
.code-window {
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transform: rotateY(-5deg) rotateX(3deg);
    transition: transform 0.5s ease;
    max-width: 420px;
    margin: 0 auto;
}
.code-window:hover { transform: rotateY(0) rotateX(0); }
.window-header {
    background: #2d2d3f;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.window-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-left: 8px; }
.window-body { padding: 20px; font-family: 'Fira Code', monospace; font-size: 0.82rem; line-height: 1.8; }
.code-line { color: #cdd6f4; }
.kw { color: #cba6f7; }
.fn { color: #89b4fa; }
.st { color: #a6e3a1; }
.cm { color: #6c7086; }

/* Desktop service card */
.desktop-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}
.desktop-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: rgba(67,97,238,0.2);
}
.dsc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}
.desktop-service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.desktop-service-card p { color: #6b7280; font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }
.dsc-features { list-style: none; padding: 0; margin: 0; }
.dsc-features li {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 0; font-size: 0.8rem; color: #4b5563;
}
.dsc-features li i { color: #4361ee; font-size: 0.7rem; }

/* Tech grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.tech-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.tech-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: rgba(67,97,238,0.2); }
.tech-item i { font-size: 2rem; color: #4361ee; display: block; margin-bottom: 8px; }
.tech-item span { font-size: 0.85rem; font-weight: 600; color: #374151; }

/* Pricing */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border-color: #4361ee;
    box-shadow: 0 16px 48px rgba(67,97,238,0.15);
    transform: scale(1.03);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.plan-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.plan-price { margin-bottom: 12px; }
.plan-price .currency { font-size: 1.2rem; font-weight: 700; color: #4361ee; vertical-align: top; }
.plan-price .amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}
.plan-price .suffix { display: block; font-size: 0.8rem; color: #6b7280; margin-top: 4px; }
.plan-desc { color: #6b7280; font-size: 0.85rem; margin-bottom: 20px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; flex-grow: 1; }
.plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.88rem; color: #374151;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.plan-features li i { color: #4361ee; font-weight: 700; }
.btn-plan {
    display: block;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    color: #374151;
    transition: all 0.3s ease;
    background: transparent;
}
.btn-plan:hover { border-color: #4361ee; color: #4361ee; }
.btn-plan-primary {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: #fff !important;
    border-color: transparent;
}
.btn-plan-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(67,97,238,0.35); }

/* Section desc */
.section-desc { color: #6b7280; max-width: 500px; margin: 10px auto 0; }

/* Responsive */
@media (max-width: 991.98px) {
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-card.popular { transform: none; }
}
@media (max-width: 767.98px) {
    .desktop-hero { padding: 60px 0 50px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
