:root {
    --primary: #2563eb;
    --dark: #0f172a;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.fw-800 { font-weight: 800; }
.py-10 { padding: 100px 0; }
.max-w-800 { max-width: 800px; }

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, #fff 100%);
}

.rotate-3 { transform: rotate(3deg); }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.item-large { grid-column: span 2; }
.item-medium { grid-column: span 1; }
.item-small { grid-column: span 1; }

@media (max-width: 991px) {
    .bento-grid { grid-template-columns: 1fr; }
    .item-large, .item-medium, .item-small { grid-column: span 1; }
    .display-1 { font-size: 3rem; }
}

/* Process Timeline */
.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Grayscale Hover */
.grayscale i {
    transition: 0.3s ease;
    cursor: pointer;
}
.grayscale i:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--primary);
}

/* Accordion Custom */
.accordion-button:not(.collapsed) {
    color: var(--primary);
    box-shadow: none;
}