:root {
    --brand-primary: #0e4c5e;
    --brand-primary-dark: #093542;
    --brand-accent: #e3b04b;
    --text-main: #1f2933;
    --surface-soft: #f5f8fb;
    --shadow-soft: 0 12px 30px rgba(14, 76, 94, 0.12);
}

html,
body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-main);
    background-color: #fff;
}

a {
    color: var(--brand-primary);
}

a:hover,
a:focus-visible {
    color: var(--brand-primary-dark);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.nav-link {
    font-weight: 500;
}

.nav-link.active {
    color: var(--brand-primary) !important;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 1200;
    background: #fff;
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 2px solid #000;
}

.hero-section {
    background: linear-gradient(130deg, #f5fbfd 0%, #ffffff 55%, #ecf7fa 100%);
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-primary);
}

.feature-panel,
.service-card {
    background: #fff;
    border: 1px solid #e5ebf1;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.check-list {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.check-list li {
    margin-bottom: 0.5rem;
}

.page-header {
    background: var(--surface-soft);
}

.site-footer {
    background: #fbfcfd;
}

.site-footer h2 {
    color: #0f3d4b;
}

.legal-page h1,
.legal-page h2 {
    color: #103a48;
}

.legal-content {
    max-width: 960px;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid #d8e0e8;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    z-index: 1050;
}

.cookie-dialog-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 33, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1080;
}

.cookie-dialog {
    width: min(100%, 640px);
    border: 0;
    border-radius: 0.9rem;
}

.footer-cookie-link {
    color: #516272;
    text-decoration: underline;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
    color: var(--brand-primary);
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}

.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

:focus-visible {
    outline: 3px solid #0a66ff;
    outline-offset: 2px;
}

main:focus {
    outline: none;
}

@media (max-width: 991.98px) {
    .navbar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .feature-panel,
    .service-card {
        padding: 1.25rem;
    }
}
