/* Features Page */
.features-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.features-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.features-hero p {
    color: #666;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.features-section {
    padding: 80px 0;
}

.features-section.alt-bg {
    background: var(--white);
}

.features-section .section-tag { display: inline-block; margin-bottom: 16px; }
.features-section .section-title { margin-bottom: 12px; }
.features-section .section-subtitle { margin-bottom: 48px; }

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

.feature-item {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.alt-bg .feature-item {
    background: var(--cream);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Integrations List */
.integrations-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.integration-category h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.int-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.06);
}

.alt-bg .int-item {
    background: var(--cream);
}

.int-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.int-dot.green { background: #10B981; }
.int-dot.pink { background: #E4405F; }
.int-dot.blue { background: #3B82F6; }
.int-dot.cyan { background: #06B6D4; }
.int-dot.red { background: #EF4444; }
.int-dot.purple { background: #8B5CF6; }
.int-dot.orange { background: #FF5400; }
.int-dot.yellow { background: #F59E0B; }

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

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