:root {
    --primary-blue: #3273dc;
    --gradient: linear-gradient(135deg, #3273dc 0%, #2366d1 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

nav, footer {
    .a,i {
        color: #3273dc;
        transition: color 0.3s ease;
    }
    .a,i:hover {
        color: #3d3d3d;
    }
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero-gradient {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-blue);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-visual {
    text-align: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.integration-logo {
    height: 40px;
    margin: 10px 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.integration-logo:hover {
    opacity: 1;
}

.bento-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.footer-link {
    color: #3273dc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #363636;
}

.social-btn.tag:not(body) {
    background-color: transparent;
}

/* Articles Styles */
.article-card {
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #3273dc;
}

.article-card .card-image img {
    object-fit: scale-down;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-blue);
}