/* Managed by Ansible — camouflage site stylesheet */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --bg: #f8fafc;
    --bg-white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 32px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 96px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 32px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn:hover {
    background: var(--primary-dark);
}

/* Services */
.services {
    padding: 80px 0;
}

.services h2,
.about h2,
.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about > .container > p {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-email {
    margin-top: 24px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary) !important;
}

/* Footer */
.footer {
    background: var(--text);
    color: var(--text-light);
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .nav a {
        margin-left: 16px;
        font-size: 0.85rem;
    }

    .stats {
        gap: 32px;
    }
}
