.hd-features-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', 'Inter', -apple-system, sans-serif;
    padding: 40px 20px;
}

.hd-features-header {
    margin-bottom: 48px;
    max-width: 800px;
    text-align: left;
}

.hd-features-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #2163E8;
}

.hd-features-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #1e2d4a;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.hd-features-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

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

.hd-feature-card {
    background-color: #ffffff;
    border: 1px solid #f0f3f8;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.hd-feature-card:hover {
    box-shadow: 0 12px 30px rgba(30, 45, 74, 0.05);
}

.hd-feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #f0f4ff;
    border-radius: 10px;
    color: #1e2d4a;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.hd-feature-icon-wrapper i {
    font-size: 18px;
}

.hd-feature-icon-wrapper svg {
    width: 18px;
    height: 18px;
    fill: #1e2d4a;
}

.hd-feature-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e2d4a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.hd-feature-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hd-features-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hd-features-grid {
        grid-template-columns: 1fr;
    }
    .hd-features-title {
        font-size: 30px;
    }
    .hd-features-desc {
        font-size: 16px;
    }
    .hd-feature-card {
        padding: 24px;
    }
}
