:root {
    --primary: #14324f;
    --primary-dark: #0f2335;
    --primary-light: #eef2f6;
    --accent: #e07a1f;
    --accent-dark: #c26212;
    --text: #25303c;
    --muted: #5a6670;
    --border: #dde3ea;
    --bg: #ffffff;
    --bg-soft: #f5f7fa;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 8px 30px rgba(15, 35, 53, 0.10);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1160px, 92%); margin-inline: auto; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1rem;
    z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.8rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}
.brand:hover { text-decoration: none; }
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.15rem; letter-spacing: 0.01em; }
.brand-text small { font-size: 0.72rem; color: #bcd0c0; }

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.25rem;
}
.primary-nav a {
    color: #dcebe0;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
}
.primary-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.primary-nav a.active { color: var(--primary-dark); background: var(--accent); font-weight: 700; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.5rem;
    cursor: pointer;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1d4a72 100%);
    color: var(--white);
    padding: 4rem 0 4.5rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}
.hero-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.2;
    margin: 0 0 1rem;
}
.hero p.lead {
    font-size: 1.1rem;
    color: #dcebe0;
    max-width: 54ch;
    margin: 0 0 1.5rem;
}
.hero .hero-meta { display: flex; gap: 1.25rem; margin-top: 1.75rem; font-size: 0.92rem; }
.hero .hero-meta strong { display: block; color: var(--accent); font-size: 1.25rem; }
.hero-media img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: #ec8a35; text-decoration: none; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--primary-dark); }
.btn-light { background: var(--white); color: var(--primary-dark); }
.btn-light:hover { background: #eef1ee; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-tight { padding: 2.5rem 0; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 0 0 0.4rem;
}
h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.25; margin: 0 0 1rem; color: var(--primary-dark); }
h3 { font-size: 1.12rem; margin: 0 0 0.5rem; color: var(--primary-dark); }
.section-intro { max-width: 72ch; margin-bottom: 2rem; color: var(--muted); }
.section-header { margin-bottom: 2rem; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.3rem; }
li { margin-bottom: 0.35rem; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.card-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ---------- Feature split ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Callout / info box ---------- */
.callout {
    background: var(--primary-light);
    border-left: 5px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.3rem 1.5rem;
    margin: 1.5rem 0;
}
.callout-accent {
    background: #fbf6e6;
    border-left-color: var(--accent);
}
.callout-accent strong { color: var(--accent-dark); }
.callout p:last-child { margin-bottom: 0; }

.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}
.fact {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.fact .fact-value { font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.fact .fact-label { color: var(--muted); font-size: 0.9rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--white);
}
th, td {
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}
th { background: var(--primary-dark); color: var(--white); font-weight: 600; }
tr:nth-child(even) td { background: var(--bg-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    margin-bottom: 0.85rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 1.1rem 1.3rem;
    font: inherit;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-dark);
    flex-shrink: 0;
}
.faq-item.is-open .faq-question::after { content: "–"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.3rem 1.1rem; color: var(--muted); }
.faq-item.is-open .faq-answer { max-height: 600px; }

/* ---------- CTA band ---------- */
.cta {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: var(--primary-dark);
    padding: 3rem 0;
    text-align: center;
}
.cta h2 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.cta p { max-width: 60ch; margin: 0 auto 1.5rem; }
.cta .btn { background: var(--primary-dark); color: var(--white); }
.cta .btn:hover { background: #0e2114; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
    counter-increment: step;
    position: relative;
    padding: 0 0 1.5rem 3.4rem;
    margin: 0;
}
.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.3rem;
    height: 2.3rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.steps h3 { margin-bottom: 0.25rem; }

/* ---------- Forms ---------- */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--primary-dark); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    background: var(--bg);
    color: var(--text);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: 3px solid rgba(20, 50, 79, 0.2);
    border-color: var(--primary);
}
.form-group input.is-error, .form-group textarea.is-error { border-color: #c0392b; }
.checkbox { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--muted); }
.checkbox input { margin-top: 0.25rem; }
.hint { font-size: 0.85rem; color: var(--muted); }
.form-success {
    background: #e8f5e9;
    border: 1px solid #81c784;
    color: #1b5e20;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}
.form-error {
    background: #fdecea;
    border: 1px solid #e57373;
    color: #7b241c;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact info ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 0.9rem 1.2rem; background: var(--white); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.7rem; }
.contact-list strong { color: var(--primary-dark); display: block; }

/* ---------- Legal pages ---------- */
.legal h2 { margin-top: 2.2rem; }
.legal h3 { margin-top: 1.5rem; }
.legal address { font-style: normal; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: #cfe0d3; margin-top: 0; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0 2rem;
}
.footer-title { color: var(--white); font-size: 1rem; margin: 0 0 0.9rem; }
.footer-col p { font-size: 0.9rem; }
.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: #cfe0d3; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 1.1rem 0; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: #a9c0ae; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    color: #e6f0e8;
    padding: 1rem 0;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
    z-index: 90;
    border-top: 3px solid var(--accent);
}
.cookie-banner-inner { display: flex; gap: 1.25rem; align-items: center; justify-content: space-between; }
.cookie-banner p { margin: 0; font-size: 0.92rem; max-width: 80ch; }
.cookie-banner a { color: var(--accent); }
.cookie-banner button {
    background: var(--accent);
    color: var(--primary-dark);
    border: 0;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

/* ---------- Misc ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none; }
.tag-list li {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.tag-list a { color: var(--primary-dark); }
.tag-list a:hover { text-decoration: underline; }
.media-caption { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid, .split { grid-template-columns: 1fr; }
    .facts { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0.6rem 0.9rem 1rem;
    }
    .primary-nav.is-open { display: block; }
    .primary-nav ul { flex-direction: column; }
    .primary-nav a { display: block; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
    .hero { padding: 2.5rem 0; }
    .section { padding: 2.5rem 0; }
}