.services-sub { text-align: center; color: var(--text-dim); margin-bottom: 2rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; } .service-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; text-align: center; transition: all 0.3s; } .service-card:hover { border-color: var(--accent); transform: translateY(-4px); } .service-icon { font-size: 2.5rem; margin-bottom: 1rem; } .service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; } .service-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }
/* CTA */
.cta {
padding: 4rem 1.5rem;
text-align: center;
background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.cta h2 {
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 0.5rem;
}
.cta p {
color: var(--text-dim);
margin-bottom: 1.5rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
/* Footer */
.footer {
background: var(--surface);
border-top: 1px solid var(--border);
padding: 2rem 1.5rem;
text-align: center;
color: var(--text-dim);
font-size: 0.85rem;
}
.footer-brand {
font-size: 1.3rem;
font-weight: 800;
color: var(--text);
margin-bottom: 0.5rem;
}
/* Modal */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.8);
display: none;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 1rem;
backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 20px;
max-width: 500px;
width: 100%;
padding: 2rem;
position: relative;
animation: modalIn 0.3s ease;
}
@keyframes modalIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
.modal-close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
color