/* Craft AI Apps Service Integration */
.craft-services-section {
    padding: 80px 0;
    /* background-color: #ffffff; */
    border-top: 1px solid #f1f5f9;
}

.craft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.craft-header {
    margin-bottom: 60px;
}

.craft-label {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f0f9ff;
    color: #0284c7;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid #e0f2fe;
}

.craft-title {
    font-size: 2.25rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 16px;
}

.craft-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.craft-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.craft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.craft-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: background 0.3s ease, color 0.3s ease;
}

.craft-card:hover .craft-icon {
    background: #2563eb;
    color: #ffffff;
}

.craft-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 12px;
}

.craft-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.craft-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.craft-link:hover {
    text-decoration: underline;
}

.craft-cta-container {
    margin-top: 40px;
}

.craft-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.craft-main-btn:hover {
    background-color: #334155;
    transform: translateY(-2px);
}