/* CSS Variables */
:root {
    --primary: #0073aa;
    --primary-dark: #005a87;
    --primary-light: #e5f3ff;
    --secondary: #1e1e1e;
    --accent: #9b59b6;
    --success: #46b450;
    --text: #1e1e1e;
    --text-light: #646970;
    --text-muted: #8c8f94;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline.btn-pro {
    border-color: #f59e0b;
    color: #d97706;
}

.btn-outline.btn-pro:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Browser Mockup */
.hero-visual {
    position: relative;
    z-index: 1;
}

.browser-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #28ca42; }

.browser-url {
    flex: 1;
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.browser-content {
    padding: 24px;
}

.wp-row {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
}

.wp-title {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.wp-actions {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.wp-actions span {
    color: var(--text-muted);
}

.wp-actions .highlight {
    color: var(--primary);
    font-weight: 500;
}

.wp-row.duplicated {
    background: var(--primary-light);
    border-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.5s ease;
}

.wp-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    z-index: 0;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Features */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}


/* How It Works */
.how-it-works {
    background: white;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    font-size: 15px;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 48px;
    color: var(--border);
    font-size: 1.5rem;
}

/* Pricing */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-header p {
    color: var(--text-light);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.pricing-features li i {
    color: var(--success);
    font-size: 14px;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.stars {
    color: #fbbf24;
    margin-bottom: 16px;
}

.stars i {
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo i {
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-bg {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        width: 100%;
    }
}

/* Mobile Navigation */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.nav-cta.active {
    display: block;
    position: absolute;
    top: calc(100% + 150px);
    left: 0;
    right: 0;
    background: white;
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border);
}


/* ==================== */
/* Pro Page Styles      */
/* ==================== */

/* Pro Hero */
.pro-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.pro-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.pro-hero-content .hero-subtitle {
    margin: 0 auto 32px;
    max-width: 550px;
}

.pro-hero-content .hero-cta {
    justify-content: center;
}

.pro-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Pro Feature Blocks */
.pro-features {
    background: var(--bg-light);
}

.pro-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.pro-feature-block:last-child {
    border-bottom: none;
}

.pro-feature-block.reverse {
    direction: rtl;
}

.pro-feature-block.reverse > * {
    direction: ltr;
}

.pro-feature-content {
    padding: 20px 0;
}

.pro-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pro-feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.pro-feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pro-feature-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
}

.feature-benefits li i {
    color: var(--success);
    font-size: 14px;
}

.feature-benefits li code {
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--primary);
}

/* Feature Mockups */
.pro-feature-visual {
    display: flex;
    justify-content: center;
}

.feature-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border);
}

.mockup-header {
    padding: 16px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
}

/* Preset Mockup */
.preset-list {
    padding: 16px;
}

.preset-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.2s;
}

.preset-item:hover {
    background: var(--primary-light);
}

.preset-item.active {
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

.preset-item i {
    color: var(--primary);
}

.preset-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.preset-badge {
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

/* Bulk Progress Mockup */
.bulk-progress {
    padding: 24px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.progress-bar {
    height: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    transition: width 0.3s;
}

.progress-eta {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Cross-Type Mockup */
.cross-type-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px 24px;
}

.cross-type-from,
.cross-type-to {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.cross-type-from i,
.cross-type-to i {
    font-size: 2rem;
    color: var(--primary);
}

.cross-type-to {
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

.cross-type-arrow i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Multisite Mockup */
.multisite-demo {
    padding: 30px;
    text-align: center;
}

.site-node {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.site-node i {
    font-size: 1.5rem;
    color: var(--primary);
}

.site-node.main {
    background: var(--primary);
    color: white;
    margin-bottom: 20px;
}

.site-node.main i {
    color: white;
}

.site-connections {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.site-node.sub {
    font-size: 12px;
    padding: 12px 16px;
}

/* Permissions Mockup */
.permissions-demo {
    padding: 16px;
}

.permission-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.permission-row:last-child {
    border-bottom: none;
}

.permission-row span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.permission-row i {
    color: var(--text-muted);
}

.perm-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.perm-badge.allowed {
    background: #dcfce7;
    color: #166534;
}

.perm-badge.limited {
    background: #fef3c7;
    color: #92400e;
}

/* Terminal Mockup */
.feature-mockup.terminal {
    background: #1e1e1e;
}

.terminal-header {
    background: #2d2d2d;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
}

.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #ffbd2e; }
.terminal-dot:nth-child(3) { background: #28ca42; }

.terminal-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
}

.terminal-line {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.terminal-prompt {
    color: #4ade80;
    margin-right: 8px;
}

.terminal-cmd {
    color: #60a5fa;
}

.terminal-line.output {
    color: #a0a0a0;
    padding-left: 16px;
}

/* More Features Grid */
.more-features {
    background: white;
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.more-feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.more-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.more-feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.more-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.more-feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* Comparison Table */
.comparison {
    background: var(--bg-light);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comparison-header {
    background: var(--secondary);
    color: white;
    font-weight: 600;
}

.comparison-header > div,
.comparison-row > div {
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

.comparison-free,
.comparison-pro {
    justify-content: center;
    text-align: center;
}

.comparison-header .comparison-pro {
    background: var(--primary);
}

.comparison-row {
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.highlight {
    background: var(--primary-light);
}

.comparison-row .fa-check {
    color: var(--success);
    font-size: 1.1rem;
}

.comparison-row .fa-times {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buy Pro Section */
.buy-pro {
    background: linear-gradient(135deg, var(--primary-light), white);
    padding: 100px 0;
}

.buy-pro-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.buy-pro-content {
    padding: 48px 40px;
    text-align: center;
}

.buy-pro-content h2 {
    font-size: 1.75rem;
    margin: 16px 0 8px;
}

.buy-pro-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.buy-pro-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.buy-pro-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.buy-pro-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.buy-pro-includes li i {
    color: var(--success);
}

.buy-pro-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Pro FAQ */
.pro-faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Pro Page Responsive */
@media (max-width: 1024px) {
    .pro-feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pro-feature-block.reverse {
        direction: ltr;
    }
    
    .pro-feature-content {
        text-align: center;
    }
    
    .pro-feature-icon {
        margin: 0 auto 24px;
    }
    
    .feature-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .more-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pro-hero {
        padding: 120px 0 60px;
    }
    
    .pro-hero h1 {
        font-size: 2rem;
    }
    
    .more-features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 12px 16px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .buy-pro-content {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .cross-type-demo {
        flex-direction: column;
    }
    
    .cross-type-arrow i {
        transform: rotate(90deg);
    }
    
    .site-connections {
        flex-direction: column;
    }
}
