/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    display: block;
}

.nav-logo i {
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo Image Color Variations */
.logo-blue {
    filter: brightness(0) saturate(100%) invert(44%) sepia(84%) saturate(4453%) hue-rotate(214deg) brightness(99%) contrast(93%);
}

.logo-purple {
    filter: brightness(0) saturate(100%) invert(35%) sepia(88%) saturate(2542%) hue-rotate(253deg) brightness(98%) contrast(93%);
}

.logo-cyan {
    filter: brightness(0) saturate(100%) invert(49%) sepia(84%) saturate(516%) hue-rotate(170deg) brightness(94%) contrast(93%);
}

.logo-gradient {
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sync-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.folder i {
    font-size: 4rem;
}

.folder span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.sync-arrows {
    color: var(--accent-color);
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin: 0 20px;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

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

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Detailed Features Section */
.detailed-features {
    padding: 100px 0;
    background: #f8fafc;
}

.detailed-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.detailed-feature-row.reverse {
    direction: rtl;
}

.detailed-feature-row.reverse .detailed-feature-content {
    direction: ltr;
}

.detailed-feature-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.detailed-feature-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.detailed-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-badge,
.network-badge,
.verification-badge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 2px rgba(0, 0, 0, 0.3);
}

.performance-chart {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    height: 200px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.chart-bar {
    width: 80px;
    background: #94a3b8;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    font-size: 0.8rem;
    color: #1e293b;
    font-weight: 600;
}

.chart-bar-highlight {
    background: var(--gradient-1);
    color: #ffffff;
}

.code-preview {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.code-header {
    background: var(--dark-bg);
    padding: 12px;
    display: flex;
    gap: 6px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.code-keyword {
    color: var(--primary-color);
    font-weight: 600;
}

.code-string {
    color: var(--success-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 2rem;
}

.cnet-review {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
    text-align: left;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1e293b;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-brand {
    padding-top: 24px;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    display: block;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-feature-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 12px 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    /* Order Page Responsive Styles */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .discount-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-title {
        font-size: 2rem;
    }

    .order-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Download Page Styles */
.download-section {
    padding: 100px 0;
    background: #f8fafc;
}

.download-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--primary-color);
    margin-bottom: 60px;
    box-shadow: var(--shadow-xl);
}

.download-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.download-logo i {
    font-size: 2rem;
}

.download-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.download-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon-large {
    font-size: 8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

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

.info-card {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.info-list li a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-list li a:hover {
    text-decoration: underline;
}

.features-reminder {
    padding: 100px 0;
    background: var(--dark-bg);
}

/* Comparison Page Styles */
.comparison-section {
    padding: 100px 0;
    background: #f8fafc;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
}

.comparison-table thead {
    background: var(--gradient-1);
}

.comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 700;
    color: white;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th.feature-column {
    width: 50%;
    text-align: left;
}

.comparison-table th.edition-column {
    text-align: center;
    width: 16.67%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--card-bg);
}

.comparison-table td {
    padding: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td.feature-name {
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table td.feature-value {
    text-align: center;
}

.comparison-table .fa-check {
    color: var(--success-color);
    font-size: 1.2rem;
}

.comparison-table .fa-times {
    color: var(--danger-color);
    font-size: 1.2rem;
}

.comparison-table tfoot {
    background: var(--card-bg);
}

.comparison-table tfoot td {
    padding: 24px 16px;
    text-align: center;
}

.comparison-table tfoot .feature-name {
    border: none;
}

.edition-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.edition-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.edition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.edition-card.pro {
    border-top: 4px solid var(--primary-color);
}

.edition-card.enterprise {
    border-top: 4px solid var(--secondary-color);
}

.edition-card.ultimate {
    border-top: 4px solid var(--accent-color);
}

.edition-header {
    text-align: center;
    margin-bottom: 32px;
}

.edition-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.edition-subtitle {
    color: var(--text-secondary);
}

.edition-features {
    margin-bottom: 32px;
}

.edition-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.edition-feature i {
    color: var(--success-color);
}

.comparison-icon-large {
    font-size: 8rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Content Styles */
.faq-content-section {
    padding: 120px 0 60px;
    background: #ffffff;
}

.faq-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-content-wrapper .normalLargeBold {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-content-wrapper .normalBoldGreen {
    font-size: 1.2rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-content-wrapper .normalBold {
    font-weight: 700;
    color: #1e293b;
}

.faq-content-wrapper p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-content-wrapper ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-content-wrapper li {
    color: #64748b;
    margin-bottom: 10px;
}

.faq-content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-content-wrapper a:hover {
    text-decoration: underline;
}

.faq-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Support Page Styles */
.support-section {
    padding: 60px 0;
    background: #f8fafc;
}

.support-grid {
    display: grid;
    gap: 30px;
}

.support-category {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.category-content {
    padding: 10px 0;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.support-link:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    color: #1e293b;
    transform: translateX(5px);
}

.support-link i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-section {
    padding: 60px 0;
    background: #f8fafc;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 20px;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--primary-light);
    transform: scale(1.05);
}

.contact-info {
    color: #64748b;
    font-size: 0.9rem;
}

.support-icon-large {
    font-size: 8rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-links-section {
    padding: 60px 0;
    background: #f8fafc;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: block;
}

.quick-link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    color: #1e293b;
}

.quick-link-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 16px;
}

.quick-link-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1e293b;
}

.quick-link-description {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Screenshots Page Styles */
.screenshot-icon-large {
    font-size: 8rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshots-nav {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.screenshots-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.screenshot-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.screenshot-tab.active {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    color: white;
}

.screenshot-tab i {
    font-size: 1.2rem;
}

.screenshots-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.screenshot-content {
    display: none;
}

.screenshot-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.screenshot-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.screenshot-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.screenshot-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.screenshot-description strong {
    color: var(--primary-color);
}

.screenshot-image {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.screenshot-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.screenshot-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--success-color);
}

.screenshot-demo {
    text-align: center;
    margin-top: 40px;
}

.features-overview {
    padding: 100px 0;
    background: #f8fafc;
}

/* Order Page Styles */
.order-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.order-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    color: #cbd5e1;
}

.order-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.license-options {
    padding: 80px 0;
    background: #ffffff;
}

.option-section {
    margin-bottom: 5rem;
}

.option-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.option-description {
    text-align: center;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

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

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: #ffffff;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.pricing-amount {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
    margin-left: 4px;
}

.renewal-price {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.one-time {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.save-badge {
    background: var(--success-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 12px 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--success-color);
}

.payment-section {
    padding: 80px 0;
    background: #f8fafc;
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.payment-methods {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.volume-discount {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.discount-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.discount-item {
    background: #f8fafc;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.discount-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.discount-range {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.discount-percent {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.volume-contact {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.volume-contact p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.enterprise-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.enterprise-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.enterprise-cta .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.enterprise-cta .btn-primary {
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.enterprise-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.enterprise-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.enterprise-cta .btn-primary:hover i {
    transform: translateX(5px);
}

/* Thanks for Downloading Page Styles */
.download-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
}

.download-hero .page-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.download-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.download-cta {
    margin-top: 3rem;
}

.download-cta .btn {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.manual-download {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.video-section {
    padding: 80px 0;
    background: #f8fafc;
}

.video-container {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.video-container video {
    width: 100%;
    border-radius: 12px;
}

.next-steps {
    padding: 80px 0;
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.step-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.license-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.license-cta .cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.license-cta .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.license-cta .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.license-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.license-cta .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.license-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Thanks Page Responsive Design */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .video-container {
        padding: 10px;
    }
}

/* Legal Page Styles */
.legal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content .emphasis {
    background: #f1f5f9;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.legal-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.legal-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-secondary);
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Uninstall Page Styles */
.hero.legal-page .hero-container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.uninstall-steps {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.uninstall-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f59e0b;
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box p {
    color: #78350f;
    line-height: 1.6;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Footer Active Link Style */
.footer-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Features Section - Index Page */
.main-features-section {
    padding: 80px 0;
    background: #ffffff;
}

.main-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.main-feature-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.main-feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.main-feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.main-feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.main-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Additional Features Section */
.additional-features-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.additional-feature-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.additional-feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.additional-feature-item i {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.additional-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.additional-feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Index Page */
@media (max-width: 1024px) {
    .main-features-grid {
        grid-template-columns: 1fr;
    }

    .additional-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-features-grid {
        grid-template-columns: 1fr;
    }

    .additional-features-grid {
        grid-template-columns: 1fr;
    }

    .main-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .main-feature-icon {
        margin: 0 auto;
    }
}

