:root {
    --bg: #f8fafc;
    --bg-soft: #f1f5f9;
    --surface: #ffffff;
    --text: #101828;
    --muted: #667085;
    --brand: #0ea5e9;
    --brand-2: #06b6d4;
    --border: #d0d5dd;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background-color: var(--bg);
}

main {
    flex: 1;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.hero .lead,
.hero h1,
.hero .badge {
    color: var(--text);
}

.hero .text-muted {
    color: var(--muted) !important;
}

.glass-card,
.feature-card,
.map-panel,
.site-footer {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero {
    animation: fadeInUp 650ms ease-out both;
}

.feature-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.check-list {
    padding-left: 1rem;
    margin: 0;
}

.check-list li {
    margin-bottom: 0.6rem;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.site-footer {
    margin: 1rem;
    border-radius: 0.9rem;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.feature-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.layer-dot {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-carousel .carousel-inner {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .hero-carousel .carousel-item img {
        height: 220px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .site-footer {
        margin: 0.75rem;
    }
}
