body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

.bg-grid-pattern {
    background-image: radial-gradient(#e0e3e6 1px, transparent 1px);
    background-size: 16px 16px;
}

::selection {
    background-color: #dbe1ff;
    color: #00174b;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.nav-open {
    animation: slideInLeft 0.3s ease-out forwards;
}

.nav-close {
    animation: slideOutLeft 0.3s ease-out forwards;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    ring: 2px;
    border-color: #0051d5;
    box-shadow: 0 0 0 2px rgba(0, 81, 213, 0.2);
}

.card-hover {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    border-color: #0051d5;
    box-shadow: 0 4px 12px rgba(0, 23, 75, 0.08);
}

.btn-primary {
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:active {
    transform: scale(0.97);
}

.process-line {
    position: relative;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background-color: #c5c6cf;
}

.process-line:last-child::after {
    display: none;
}

@media (max-width: 767px) {
    .process-line::after {
        display: none;
    }
}
