.features-main {
    padding-top: 80px;
}

.features-hero {
    padding: 4rem 0;
    background-color: rgb(255, 250, 235);
    text-align: center;
}

.features-hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.features-hero-content p {
    font-size: 1.25rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.core-features {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.core-features h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(31, 31, 31);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.feature-card p {
    color: rgb(31, 31, 31);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    padding: 0.25rem 0;
    color: rgb(31, 31, 31);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.feature-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(255, 87, 34);
    font-weight: bold;
}

.usage-advantages {
    padding: 6rem 0;
    background-color: rgb(248, 248, 248);
}

.usage-advantages h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(31, 31, 31);
}

.advantages-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.advantage-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(255, 87, 34);
    margin-bottom: 1rem;
}

.advantage-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.advantage-item p {
    color: rgb(31, 31, 31);
    opacity: 0.8;
    line-height: 1.6;
}

.integration-features {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

.integration-features h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(31, 31, 31);
}

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

.integration-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.integration-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgb(31, 31, 31);
    text-align: center;
}

.integration-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.integration-item {
    background: rgb(248, 248, 248);
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.875rem;
    color: rgb(31, 31, 31);
    font-weight: 500;
}

.nav-link.active {
    color: rgb(255, 87, 34);
    font-weight: 600;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-hero-content h1 {
        font-size: 2rem;
    }
}

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