/* Product Page Specific Styles */

/* Product Hero */
.product-hero {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.08), transparent 70%);
    text-align: center;
}

.product-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.product-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.product-hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.product-hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.product-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--color-text-main);
    border: 2px solid var(--color-primary-mid);
}

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

/* Value Proposition */
.value-proposition {
    padding: 5rem 0;
    background: white;
}

.section-title.centered {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text-main);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-block.reverse .feature-content {
    order: 2;
}

.feature-block.reverse .feature-visual {
    order: 1;
}

.feature-block.highlight {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.8), rgba(250, 245, 255, 0.8));
    border: 2px solid rgba(45, 212, 191, 0.3);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.05);
}

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

.feature-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-description {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-main);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary-mid);
    font-weight: 700;
}

.feature-visual {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Double image layout for Feature 8 */
.feature-visual-double {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.feature-visual-double .feature-image {
    width: 100%;
}

.feature-block.highlight .feature-visual {
    background: white;
    border: 2px solid rgba(45, 212, 191, 0.15);
}

.feature-placeholder {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

/* Target Users */
.target-users {
    padding: 5rem 0;
    background: white;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.user-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.user-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.user-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Positioning Statement */
.positioning-statement {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdfa, #faf5ff);
}

.statement-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.statement-text {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.statement-emphasis {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.pricing-section .section-title {
    color: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(30, 30, 50, 0.8);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.free {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-amount.free-price {
    background: linear-gradient(135deg, #10b981, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-pricing-free {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.pricing-feature.disabled h4 {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-feature.disabled p {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-feature.premium h4 {
    color: #f5a623;
}

.pricing-savings {
    text-align: center;
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-card {
    background: rgba(30, 30, 50, 0.8);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--color-primary-start);
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-start);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f5a623, #f7c94b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.pricing-best-value {
    text-align: center;
    color: #f5a623;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-feature {
    margin-bottom: 1.25rem;
}

.pricing-feature h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pricing-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-pricing-featured {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f5a623, #f7c94b);
    color: #1a1a2e;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-pricing-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.download-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.download-platform {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.download-version {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn-download {
    background: var(--gradient-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(45, 212, 191, 0.39);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.5);
}

.download-btn-icon {
    font-size: 1.25rem;
}

.download-size {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.download-notes {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary-mid);
}

.download-notes p {
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.download-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
}

.download-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary-mid);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 968px) {

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-block.reverse .feature-content {
        order: 1;
    }

    .feature-block.reverse .feature-visual {
        order: 2;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-card.featured {
        order: -1;
    }

    .product-hero-title {
        font-size: 2.25rem;
    }

    .product-hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {

    .value-grid,
    .users-grid,
    .download-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}