:root {
    --bg: #0c0c0f;
    --bg-secondary: #111114;
    --bg-tertiary: #18181c;
    --text: #f4f4f5;
    --text-light: #a1a1aa;
    --text-muted: #52525b;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --accent: #f97316;
    --accent-light: #fb923c;
    --teal: #14b8a6;
    --border: #27272a;
    --border-light: #3f3f46;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 14px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-center a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-center a i {
    font-size: 14px;
    opacity: 0.7;
}

.nav-center a:hover {
    color: var(--text);
    background: var(--bg-tertiary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: var(--text);
    background: var(--bg-tertiary);
    border-color: var(--border);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav-mobile-toggle:hover {
    background: var(--bg-tertiary);
}

.nav-mobile {
    display: none;
    padding: 16px 24px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-mobile a:hover {
    background: var(--bg-tertiary);
    color: var(--text);
}

.nav-mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-light);
    background: var(--bg-secondary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px dashed var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-visual-placeholder:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), var(--bg-tertiary));
}

.hero-visual-placeholder i {
    font-size: 64px;
    color: var(--primary);
    opacity: 0.5;
}

.hero-visual-placeholder span {
    font-size: 18px;
    color: var(--text-light);
}

.hero-visual-placeholder p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 8px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-badge-banana {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.15));
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
    font-size: 14px;
    animation: bananaGlow 3s ease-in-out infinite;
}

.hero-badge-banana strong {
    color: #ff9800;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

@keyframes bananaGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

.hero-badge-banana .badge-dot {
    background: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

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

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta-note i {
    color: var(--teal);
    font-size: 12px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s;
}

.benefit-item:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-item span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

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

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Plans Showcase Section */
.plans-showcase {
    padding: 80px 0;
    background: var(--bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.plans-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-showcase {
    background: var(--bg-tertiary);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.plan-showcase:hover {
    transform: translateY(-4px);
}

.pro-showcase {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.15) 0%, var(--bg-tertiary) 50%);
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.15);
}

.team-showcase {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.15) 0%, var(--bg-tertiary) 50%);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.15);
}

.free-showcase {
    border-color: var(--teal);
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, var(--bg-tertiary) 50%);
}

.free-showcase .plan-showcase-badge {
    background: linear-gradient(135deg, var(--teal), #2dd4bf);
    color: white;
}

.plan-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pro-showcase .plan-showcase-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.team-showcase .plan-showcase-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
}

.plan-showcase h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.plan-showcase-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
}

.plan-showcase-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-showcase-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.plan-showcase-features li:last-child {
    border-bottom: none;
}

.plan-showcase-features li i {
    color: var(--teal);
    width: 18px;
}

.plan-showcase-features li i.fa-star {
    color: var(--accent);
}

.plan-showcase-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
}

.plan-cost-note,
.plan-value-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.plan-value-note i.fa-clock {
    color: var(--accent);
}

.plan-cost-note i {
    color: var(--teal);
}

.plan-value-note i {
    color: var(--accent);
}

.featured-plan {
    border-width: 3px;
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.2);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin: 40px auto;
    max-width: 800px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border);
}

.comparison-col-header {
    padding: 16px 20px;
    text-align: center;
}

.comparison-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

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

.comparison-logo-competitor i {
    color: var(--text-muted);
}

.comparison-row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.comparison-row:hover {
    background: rgba(59, 130, 246, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text-light);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.comparison-value {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}

.comparison-value i {
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.comparison-win {
    background: rgba(20, 184, 166, 0.1);
    border-left: 3px solid var(--teal);
}

.comparison-win i {
    color: var(--teal);
}

.comparison-lose {
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid rgba(239, 68, 68, 0.3);
}

.comparison-lose i {
    color: var(--text-muted);
}

.comparison-cta {
    text-align: center;
    margin-top: 32px;
}

.comparison-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.comparison-cta strong {
    color: var(--text);
    font-weight: 700;
}

/* Product-Style Pricing Sections */
.pricing-product {
    padding: 100px 0;
}

.plan-product-section {
    margin-bottom: 120px;
}

.plan-product-section:last-child {
    margin-bottom: 0;
}

.plan-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.plan-product-section:nth-child(even) .plan-product-content {
    direction: rtl;
}

.plan-product-section:nth-child(even) .plan-product-info,
.plan-product-section:nth-child(even) .plan-product-visual {
    direction: ltr;
}

.plan-product-info {
    padding: 40px;
}

.plan-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-light);
}

.pro-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
}

.team-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
}

.plan-product-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.plan-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
}

.price-period {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-product-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

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

.plan-feature-item i {
    font-size: 24px;
    color: var(--primary);
    width: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.plan-feature-item span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.plan-product-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-light);
}

.plan-product-note i {
    color: var(--teal);
    font-size: 18px;
}

.pro-note i {
    color: var(--accent);
}

.plan-product-visual {
    position: relative;
}

.plan-visual-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.plan-visual-placeholder i {
    font-size: 64px;
    color: var(--primary);
    opacity: 0.5;
}

.pro-visual {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), var(--bg-tertiary));
    border-color: var(--primary);
}

.pro-visual i {
    color: var(--primary);
}

.team-visual {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), var(--bg-tertiary));
    border-color: var(--accent);
}

.team-visual i {
    color: var(--accent);
}

.plan-feature-gallery {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

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

.gallery-thumbnail.active {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.gallery-thumbnail i {
    font-size: 24px;
}

.gallery-thumbnail span {
    font-size: 11px;
    font-weight: 600;
}

.featured-plan-product {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    padding: 60px 0;
    border-radius: 32px;
    margin: 60px 0;
}

.featured-plan-product .plan-product-content {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
        padding: 0 24px;
    }
    
    .plans-grid-3 {
        gap: 24px;
    }
}

@media (max-width: 968px) {
    .plans-grid-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .plan-showcase {
        padding: 32px 24px;
    }
    
    
    .features-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .comparison-table {
        max-width: 100%;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 100px 1fr 1fr;
    }
    
    .comparison-label {
        font-size: 13px;
        padding: 12px 10px;
    }
    
    .comparison-value {
        font-size: 13px;
        padding: 12px 14px;
    }
    
    .comparison-logo {
        font-size: 14px;
    }
    
    .comparison-logo i {
        font-size: 18px;
    }
    
    .plan-product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plan-product-section:nth-child(even) .plan-product-content {
        direction: ltr;
    }
    
    .plan-product-features-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-product-title {
        font-size: 32px;
    }
    
    .price-amount {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-showcase {
        padding: 32px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-item:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

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

@media (max-width: 968px) {
    .features-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

.feature-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(249, 115, 22, 0.05));
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 22px;
}

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

.feature-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.feature-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.feature-image-placeholder {
    width: 100%;
    height: 140px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.feature-image-placeholder i {
    font-size: 32px;
    opacity: 0.5;
}

/* Video Showcase Section */
.video-showcase {
    padding: 120px 0;
    background: var(--bg);
}

.videos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

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

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

.video-main {
    grid-row: span 2;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(249, 115, 22, 0.1));
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.video-placeholder:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.video-placeholder i {
    font-size: 48px;
}

.video-main .video-placeholder {
    aspect-ratio: 16/10;
}

.video-main .video-placeholder i {
    font-size: 64px;
}

.video-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

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

.video-main h4 {
    font-size: 20px;
}

.video-main p {
    font-size: 14px;
}

@media (max-width: 968px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-main {
        grid-row: span 1;
    }
}

/* Comparison Section */
.comparison {
    padding: 120px 0;
    background: var(--bg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);
}

.comparison-card.old-way {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, var(--bg-tertiary) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.new-way {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1) 0%, var(--bg-tertiary) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.1);
}

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

.comparison-header i {
    font-size: 24px;
}

.old-way .comparison-header i {
    color: #ef4444;
}

.new-way .comparison-header i {
    color: #22c55e;
}

.comparison-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.comparison-list {
    list-style: none;
    margin-bottom: 24px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.comparison-list li i {
    margin-top: 2px;
    flex-shrink: 0;
}

.old-way .comparison-list li i {
    color: #ef4444;
    opacity: 0.7;
}

.new-way .comparison-list li i {
    color: #22c55e;
}

.comparison-time {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
}

.old-way .comparison-time {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
}

.new-way .comparison-time {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    font-size: 18px;
}

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

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.step {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

.step-arrow {
    font-size: 24px;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, var(--bg-tertiary) 100%);
}

.pricing-card.team {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.1) 0%, var(--bg-tertiary) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.plan-badge.team-badge {
    background: linear-gradient(135deg, var(--accent), var(--teal));
}

.plan-header {
    text-align: center;
    margin-bottom: 28px;
    padding-top: 8px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--text-light);
}

.pricing-card.featured .plan-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: white;
}

.pricing-card.team .plan-icon {
    background: linear-gradient(135deg, var(--accent), var(--teal));
    border: none;
    color: white;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: var(--teal);
    font-weight: 600;
}

.plan-features .check.highlight {
    color: var(--accent);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--teal);
}

.btn-team {
    border-color: var(--accent);
}

.btn-team:hover {
    border-color: var(--accent-light);
    background: rgba(249, 115, 22, 0.1);
}

.cta-free-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.cta-free-link:hover {
    color: var(--text-light);
}

.cta-upgrade {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.cta-divider {
    opacity: 0.5;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-text:hover {
    background: var(--bg-tertiary);
    color: var(--text);
}

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

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    gap: 32px;
    flex-wrap: wrap;
}

.footer-cta-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-cta-content h3 i {
    color: var(--primary-light);
}

.footer-cta-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-newsletter {
    display: flex;
    gap: 12px;
}

.footer-newsletter input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text);
    font-size: 14px;
    width: 280px;
    transition: all 0.2s;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.footer-newsletter input::placeholder {
    color: var(--text-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding: 64px 0;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h4 i {
    opacity: 0.6;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-column a i {
    font-size: 12px;
    opacity: 0.6;
    width: 16px;
}

.footer-column a:hover {
    color: var(--text);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    color: #22c55e;
    font-size: 8px;
    animation: pulse 2s infinite;
}

.footer-made i {
    color: #ef4444;
    font-size: 12px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    border: 1px solid var(--border);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.modal-header h2 span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.checkout-summary {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}

.checkout-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }

    .nav-right .btn-ghost {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

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

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 44px;
    }

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

    .feature-highlight {
        grid-column: span 1;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-arrow i {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter {
        flex-direction: column;
        width: 100%;
    }

    .footer-newsletter input {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-right {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 12px;
    }
}
