/* DiskMentor AI Additional Styles */

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

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

.tech-item {
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    text-align: center;
}

.tech-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.tech-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

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

.pricing-intro {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    position: relative;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.pricing-card-highlight {
    border: 2px solid rgba(45, 212, 191, 0.4);
    box-shadow: 0 18px 40px rgba(45, 212, 191, 0.16);
}

.pricing-card-free {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-bg-alt);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-bg-alt);
}

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

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.pricing-note {
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.pricing-section .btn-large {
    display: flex;
    width: fit-content;
    margin: 2rem auto 0;
}

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

.download-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.download-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-requirements {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem;
    }

    .pricing-badge {
        top: 12px;
        right: 12px;
    }
}
