:root {
    --st-primary: #0066cc;
    --st-primary-dark: #004d99;
    --st-accent: #00b4d8;
    --st-dark: #0f172a;
    --st-gray: #64748b;
    --st-light: #f8fafc;
    --st-border: #e2e8f0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--st-dark);
    background: #fff;
}

.site-header {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--st-border);
}

.navbar-brand { font-size: 1.4rem; color: var(--st-dark) !important; }
.site-logo { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
.site-logo--footer { height: 28px; filter: brightness(0) invert(1); }
.brand-accent { color: var(--st-primary); }

.nav-link {
    color: var(--st-dark) !important;
    font-weight: 500;
    padding: .5rem 1rem !important;
}

.nav-link:hover { color: var(--st-primary) !important; }

.btn-primary {
    background: var(--st-primary);
    border-color: var(--st-primary);
}

.btn-primary:hover {
    background: var(--st-primary-dark);
    border-color: var(--st-primary-dark);
}

.btn-outline-primary {
    color: var(--st-primary);
    border-color: var(--st-primary);
}

.hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .btn {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,102,204,.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--st-gray);
    max-width: 540px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--st-primary);
}

.stat-label { color: var(--st-gray); font-size: .9rem; }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.section-subtitle { color: var(--st-gray); margin-bottom: 2.5rem; }

.service-card, .product-card, .case-card, .blog-card {
    position: relative;
    border: 1px solid var(--st-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
    background: #fff;
}

.service-card:hover, .product-card:hover, .case-card:hover, .blog-card:hover {
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,102,204,.1);
    color: var(--st-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.page-hero {
    background: var(--st-light);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--st-border);
}

.site-footer {
    background: var(--st-dark);
    color: #94a3b8;
}

.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: .4rem; }
.text-muted-small { font-size: .875rem; color: #94a3b8; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--st-border);
    padding: 1rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}

.client-logo {
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .2s;
}

.client-logo:hover { filter: none; opacity: 1; }

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--st-border);
}

.form-section {
    position: relative;
    z-index: 2;
    background: var(--st-light);
    border-radius: 12px;
    padding: 2rem;
}

.client-card {
    border: 1px solid var(--st-border);
    border-radius: 12px;
    background: #fff;
}

.client-logo-placeholder {
    height: 48px;
    width: 48px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0,102,204,.1);
    color: var(--st-primary);
    font-weight: 700;
    line-height: 48px;
}

.client-name {
    color: var(--st-gray);
    line-height: 1.3;
}

.badge-soft {
    background: rgba(0,102,204,.1);
    color: var(--st-primary);
}

.content-body img { max-width: 100%; height: auto; border-radius: 8px; }

@media (max-width: 768px) {
    .hero-section { padding: 3rem 0 2rem; }
}
