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

:root {
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #a78bfa;
    --accent: #c4b5fd;
    --success: #10b981;
    --warning: #f59e0b;
    --gold: #fbbf24;
    --bg-primary: #000000;
    --bg-secondary: #09090b;
    --bg-tertiary: #18181b;
    --bg-card: #0f0f11;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.5);
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-dark: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, transparent 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(167, 139, 250, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-plus {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    position: relative;
    z-index: 100;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info i {
    color: var(--primary);
}

.top-social a {
    color: var(--text-muted);
    font-size: 16px;
    transition: color 0.2s;
}

.top-social a:hover {
    color: var(--primary);
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 16px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 0 rgba(139, 92, 246, 0);
    transition: box-shadow 0.25s, transform 0.25s;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-hover);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.stat h3 {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 600;
    transition: border-color 0.2s, transform 0.25s;
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 420px;
}

.visual-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 160px;
    height: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.visual-card i {
    font-size: 36px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-1 { top: 0; left: 10%; animation-delay: 0s; }
.card-2 { top: 40%; right: 0; animation-delay: 1.5s; }
.card-3 { bottom: 0; left: 25%; animation-delay: 3s; }
.card-3 i { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; }

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

/* ===== Page Header (alt sayfalar) ===== */
.page-header {
    padding: 72px 0 56px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--gradient-dark);
}

.page-header .section-badge {
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Comparison Table ===== */
.compare-section {
    padding: 80px 0 40px;
}

.compare-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--bg-card);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table .feature-col {
    text-align: left;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-table td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}

.plan-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.plan-col i {
    font-size: 20px;
    color: var(--accent);
}

.plan-col-featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

.compare-table .yes {
    color: var(--success);
    font-size: 16px;
}

.compare-table .no {
    color: var(--text-muted);
    font-size: 16px;
}

/* ===== Commands Page ===== */
.commands-section {
    padding: 72px 0 100px;
}

.commands-category {
    margin-bottom: 56px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.category-title i {
    font-size: 20px;
    color: var(--primary);
}

.category-title h2 {
    font-size: 20px;
    font-weight: 700;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.command-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.25s, transform 0.25s;
}

.command-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.command-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}

.command-top code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
}

.command-card p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* ===== Legal Pages ===== */
.legal-section {
    padding: 56px 0 110px;
}

.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-meta i {
    color: var(--primary);
}

.legal-content h2 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 40px 0 12px;
}

.legal-content > h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 0 0 14px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 4px;
    padding-left: 18px;
    position: relative;
}

.legal-content ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-link {
    color: var(--accent);
    font-weight: 500;
}

.legal-link:hover {
    text-decoration: underline;
}

.legal-footer-note {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-hover);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===== Services / Plans ===== */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.service-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: border-color 0.25s, transform 0.25s;
}

.service-box:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.service-box.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.06) 0%, var(--bg-card) 40%);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--gradient-gold);
    color: #1a1300;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.service-box.featured .service-icon {
    background: var(--gradient-gold);
    color: #1a1300;
}

.service-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.plan-free,
.plan-paid {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.plan-free {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.plan-paid {
    background: rgba(251, 191, 36, 0.12);
    color: var(--gold);
}

.service-box p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--success);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 12px;
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s;
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.price-card.price-lifetime {
    border-color: var(--gold);
}

.discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.price-card .featured-badge {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.price-header {
    margin-bottom: 18px;
    padding-top: 6px;
}

.price-period {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.price-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-old {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-features {
    flex: 1;
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
}

.price-features i {
    color: var(--success);
    font-size: 12px;
}

.btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
}

.btn-price:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-price-featured {
    background: var(--gradient-primary);
    border-color: transparent;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 36px;
}

.pricing-note i {
    color: var(--primary);
    margin-right: 6px;
}

/* ===== FAQ / About ===== */
.about {
    padding: 100px 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section ul li {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-section ul li i {
    color: var(--primary);
    margin-right: 8px;
    width: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.97);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 20px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }
    .nav-menu a {
        display: block;
        padding: 14px 0;
    }
    .nav-menu a.active::after {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .commands-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .commands-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-stats {
        gap: 24px;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .top-info span:nth-child(2) {
        display: none;
    }
}

@media (max-width: 420px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
