:root {
    --ink: #12212b;
    --muted: #586b78;
    --line: #d7e1e5;
    --paper: #f4f8f8;
    --white: #ffffff;
    --primary: #08756f;
    --primary-dark: #075b57;
    --accent: #c9942e;
    --soft: #e8f3f2;
    --shadow: 0 22px 56px rgba(18, 33, 43, 0.13);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 76px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #1c9b8f);
    border-radius: 8px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 8px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: 82vh;
    padding: clamp(62px, 8vw, 118px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(115deg, rgba(9, 30, 39, 0.94) 0%, rgba(8, 67, 72, 0.86) 52%, rgba(8, 117, 111, 0.68) 100%),
        url('https://images.unsplash.com/photo-1576086213369-97a306d36557?auto=format&fit=crop&w=1800&q=82') center/cover;
    color: var(--white);
}

.hero h1 {
    max-width: 920px;
    margin: 12px 0 18px;
    font-size: clamp(38px, 5.7vw, 68px);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 1.5vw, 20px);
}

.eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-stats span {
    display: grid;
    min-width: 154px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
    color: var(--white);
    font-size: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
}

.button.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #1a958c);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button.secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.hero-panel div,
.service-card {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-panel div {
    padding: 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
}

.panel-kicker {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel strong,
.hero-panel span {
    display: block;
}

.hero-panel span {
    color: var(--muted);
}

.section,
.split-section,
.cta-band,
.content-wrap,
.site-footer {
    padding-right: clamp(18px, 5vw, 72px);
    padding-left: clamp(18px, 5vw, 72px);
}

.section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
}

.service-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--primary-dark);
    background: var(--soft);
    border-radius: 8px;
    font-weight: 800;
}

.service-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.service-card p,
.split-section p,
.detail-grid li,
.page-content p,
.post-card p {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    padding-top: 92px;
    padding-bottom: 92px;
    background: var(--white);
}

.check-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    margin: 12px 0;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--primary);
    font-weight: 800;
}

.detail-section {
    background: var(--paper);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.detail-grid article {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.detail-grid h3 {
    margin-top: 0;
}

.detail-grid ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.company-details {
    background: var(--white);
}

.details-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.details-list div {
    display: grid;
    grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.details-list dt {
    color: var(--ink);
    font-weight: 800;
}

.details-list dd {
    margin: 0;
    color: var(--muted);
}

a[href*="cookieadmin.net"],
a[href*="cookieadmin.net"] *,
.cky-footer-wrapper,
.cky-powered-by,
.cookieadmin-powered-by {
    display: none !important;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
    padding-top: 66px;
    padding-bottom: 66px;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(18, 33, 43, 0.96), rgba(8, 117, 111, 0.9)),
        url('https://images.unsplash.com/photo-1584893581825-a24d2a2b8e4a?auto=format&fit=crop&w=1500&q=80') center/cover;
}

.site-footer {
    padding-top: 46px;
    padding-bottom: 24px;
    background: #071619;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 800;
}

.site-footer p,
.footer-bottom {
    color: rgba(255, 255, 255, 0.72);
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li {
    margin: 7px 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-menu a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

.content-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 72px;
}

.page-content,
.post-card,
.empty-state {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.post-list {
    display: grid;
    gap: 18px;
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 18px;
        left: 18px;
        display: none;
        padding: 18px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-menu,
    .hero,
    .service-grid,
    .detail-grid,
    .split-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: grid;
        gap: 12px;
    }

    .hero {
        min-height: auto;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cta-band,
    .footer-bottom {
        display: grid;
    }

    .details-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
