/* assets/style.css - Main stylesheet for plugin pages */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Header */
.header {
    background: rgba(42, 42, 42, 0.1);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    position: relative;
}

.logo-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.logo-dot {
    width: 4px;
    height: 4px;
    background: #00d4aa;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 10px;
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00d4aa;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4aa;
    border-color: rgba(0, 212, 170, 0.5);
}

.btn-primary {
    background: #00d4aa;
    color: white;
    border: 1px solid #00d4aa;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #00b89a;
    border-color: #00b89a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 40px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.4;
    z-index: 0;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
    margin-top: 100px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-text .subtitle {
    font-size: 22px;
    color: #00d4aa;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.4;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.btn-hero-primary {
    background: #00d4aa;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px 0 rgba(0, 212, 170, 0.25);
}

.btn-hero-primary:hover {
    background: #00b89a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(0, 212, 170, 0.35);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.version-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.screenshot-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.feature p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Detail Sections */
.detail-section {
    padding: 120px 0;
}

.detail-section:nth-child(even) {
    background: #f9fafb;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.detail-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
    letter-spacing: -0.025em;
}

.detail-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

.detail-image {
    position: relative;
}

.detail-screenshot {
    width: 100%;
    height: 360px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.detail-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Stats Section */
.stats {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 8px;
}

.stat p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #f9fafb;
}

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

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #00d4aa;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

.price-suffix {
    color: #6b7280;
    font-size: 16px;
}

.original-price {
    margin-bottom: 16px;
}

.original-price .crossed {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 14px;
    margin-right: 8px;
}

.original-price .current {
    color: #00d4aa;
    font-weight: 600;
    font-size: 18px;
}

.plan-note {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 24px;
}

.features-list {
    text-align: left;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    margin-bottom: 12px;
    color: #374151;
    list-style: none;
    position: relative;
    padding-left: 24px;
    font-size: 15px;
}

.features-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
    position: absolute;
    left: 0;
}

.btn-large {
    background: #2a2a2a;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 14px 0 rgba(42, 42, 42, 0.25);
    margin-bottom: 16px;
}

.btn-large:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(42, 42, 42, 0.35);
}

.btn-large.featured {
    background: #00d4aa;
}

.btn-large.featured:hover {
    background: #00b89a;
}

.promo-note {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    margin-top: 12px;
}

.trust-indicators {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6b7280;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00d4aa;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Additional styles for plugins listing */
.plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.plugin-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.plugin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #00d4aa;
    text-decoration: none;
    color: inherit;
}

.plugin-image {
    width: 100%;
    height: 200px;
    background: #f3f4f6;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    border: 1px solid #e5e7eb;
}

.plugin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.plugin-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.plugin-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.plugin-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.plugin-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6b7280;
}

.plugin-price {
    font-weight: 600;
    color: #00d4aa;
    font-size: 16px;
}

.plugin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plugin-tag {
    background: #f0f9ff;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e0f2fe;
}

.plugin-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-small {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.btn-primary-small {
    background: #00d4aa;
    color: white;
    border: 1px solid #00d4aa;
}

.btn-primary-small:hover {
    background: #00b89a;
    border-color: #00b89a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
