/* ==========================================================
   Grundlayout / Variablen
   ========================================================== */

:root {
    --bg-frame: #4b4f63;
    --bg-page: #ffffff;

    --accent: #fd1d26;       /* neues FLK Rot */
    --accent-dark: #c9151e;  /* etwas dunkler für Hover */

    --teal: #4db6ac;
    --grey-card: #eeeeee;

    --text-main: #333333;
    --text-muted: #666666;

    --nav-bg: #ffffff;
    --nav-text: #333333;

    --shadow-soft: 0 10px 25px rgba(0,0,0,0.12);
    --radius: 4px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-frame);
    color: var(--text-main);
}

body.nav-open {
    overflow: hidden;
}

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

a:link,
a:visited {
    color: var(--accent-dark);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #000;
    text-decoration: underline;
}

a.btn,
a.btn:visited,
a.btn:hover,
a.btn:focus {
    color: #fff;
    text-decoration: none;
}

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

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-page);
    min-height: 100vh;
    box-shadow: var(--shadow-soft);
}

.container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================================
   Header / Topbar
   ========================================================== */

.site-header {
    background: var(--nav-bg);
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.site-header .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    min-height: 96px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: #fff;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin-left: 20px;
}

.breadcrumb {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 26px;

    color: var(--text-muted);
    font-size: 13px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-toggle {
    flex: 0 0 auto;
    margin-left: auto;

    position: relative;
    z-index: 1100;

    border: 0;
    background: transparent;
    cursor: pointer;

    padding: 14px 18px;

    color: var(--nav-text);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;

    white-space: nowrap;
}

.menu-toggle:hover {
    opacity: 0.7;
}


/* ==========================================================
   Main Navigation
   ========================================================== */

.main-nav {
    display: block;
}

.main-nav ul,
.nav-main ul,
.main-nav .nav-main__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(16px, 2.2vw, 30px);

    margin: 0;
    padding: 0;
    list-style: none;

    flex-wrap: nowrap;
    min-width: 0;
}

.main-nav li,
.nav-main li,
.main-nav .nav-main__item {
    margin: 0 !important;
    padding: 0;
}

.main-nav a,
.nav-main a,
.main-nav .nav-main__link {
    display: inline-block;
    padding: 16px 6px;
    white-space: nowrap;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-main__link.is-active {
    color: var(--accent-dark);
    font-weight: 700;
    opacity: 0.85;
}


/* ==========================================================
   Offcanvas Sitemap
   ========================================================== */

.nav-sitemap {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

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

.nav-sitemap__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0,0,0,.55);
}

.nav-sitemap__inner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;

    width: min(560px, 92vw);
    height: 100%;

    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,.12);

    display: flex;
    flex-direction: column;
}

.nav-sitemap__head {
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid rgba(0,0,0,.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-sitemap__title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.nav-sitemap__close {
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

.nav-sitemap__grid {
    padding: 1.5rem 1.6rem 2rem;
    overflow: auto;
    display: block;
}

.nav-sitemap__group {
    margin-bottom: 2rem;
}

.nav-sitemap__h {
    margin: 0 0 .5rem 0;
    padding-bottom: .4rem;

    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;

    color: #666;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-sitemap__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-sitemap__item {
    margin: .25rem 0;
}

.nav-sitemap__link {
    display: block;
    padding: .35rem .45rem;

    border-radius: .35rem;
    color: inherit;
    font-size: .95rem;
    text-decoration: none;

    transition: opacity .15s ease, background .15s ease;
}

.nav-sitemap__link:hover {
    background: rgba(0,0,0,.05);
    opacity: .75;
}

.nav-sitemap__link.is-active {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: .35em;
}

.nav-sitemap__group.is-active-group .nav-sitemap__h {
    color: #333;
    border-bottom-color: rgba(0,0,0,.18);
}

.nav-sitemap__item:empty,
.nav-sitemap__link:empty,
.nav-sitemap__link[href="#"] {
    display: none;
}


/* ==========================================================
   Hero Standard
   ========================================================== */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 520px;

    display: flex;
    align-items: center;
}

.hero .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.55;
}

.hero .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero .hero-content,
.hero-content {
    max-width: 520px;
    color: #fff;
}

.hero-eyebrow {
    margin-bottom: 8px;

    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    opacity: 0.85;
}

/* Hero-Titel: visuell wie H1, semantisch aber kein echtes H1 */
.hero-title {
    margin: 0 0 14px 0;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
}

/* Fallback für alte Seiten, solange noch nicht alles umgebaut ist */


.hero-kicker {
    margin: 0 0 20px 0;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.hero-sub {
    margin: 0 0 20px 0;

    font-size: 16px;
    line-height: 1.6;

    opacity: 0.95;
}

.hero-meta {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.85;
}


/* ==========================================================
   Buttons / Actions
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;

    cursor: pointer;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    transition: background .2s ease, box-shadow .2s ease, transform .05s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,.25);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,.35);
}

.btn-primary span {
    margin-left: 8px;
    font-size: 18px;
    line-height: 1;
}

.epx-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.epx-actions .btn,
.epx-actions .btn:link,
.epx-actions .btn:visited,
.epx-actions .btn:hover,
.epx-actions .btn:active {
    color: #fff;
    text-decoration: none;
}


/* ==========================================================
   Rechte Icon-Navigation
   ========================================================== */

.flk-side-icons {
    position: absolute;
    right: 3px;
    top: 25%;
    transform: translateY(-50%);
    z-index: 50;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flk-side-icons__item {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: auto;
}

.flk-side-icons__item img {
    width: 38px;
    height: 38px;
    display: block;
}

.flk-side-icons__item:hover {
    transform: translateX(-6px);
}


/* ==========================================================
   FLK Signatur im Hero
   ========================================================== */

.hero-flk {
    position: absolute;
    right: clamp(16px, 2.5vw, 40px);
    bottom: clamp(16px, 2.5vw, 32px);
    z-index: 3;

    width: clamp(150px, 19vw, 260px);

    opacity: 0.88;
    pointer-events: none;
    user-select: none;
}

.hero-flk img {
    width: 100%;
    height: auto;
    display: block;

    filter:
        drop-shadow(0 4px 18px rgba(0,0,0,.45))
        contrast(1.05)
        saturate(1.05);
}


/* ==========================================================
   Main Content / Artikel
   ========================================================== */

.section-maintext {
    background-color: #ffffff;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.epx-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.2rem;

    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.epx-article section[id] {
    scroll-margin-top: 90px;
}

.epx-article section:target {
    background: #f6f6f6;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 12px;
}

.section-maintext .epx-article h1 {
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    padding-bottom: 0.4rem;

    color: #222;
    border-bottom: 3px solid #f28c28;
}

.section-maintext .epx-article h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem 0;
    padding-left: 0.8rem;

    color: #1f1f1f;
    border-left: 4px solid #f28c28;
}

.section-maintext .epx-article h3 {
    font-size: 1.15rem;
    margin: 1.3rem 0 0.6rem;
}

.section-maintext .epx-article p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
    color: #222;
}

.section-maintext .epx-article ul {
    margin: 0.6rem 0 1.4rem 1.2rem;
}

.section-maintext .epx-article li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}


/* ==========================================================
   Lower Section: Problem-Kacheln
   ========================================================== */

.section-problems {
    padding: 40px 0 20px;
    background: #f5f5f5;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.card-problem {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid var(--teal);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 160px;
}

.card-problem--grey,
.card-problem--yellow {
    background: #ffffff;
    color: var(--text-main);
    border-top-color: var(--teal);
    grid-row: auto;
}

.card-problem h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.card-problem p,
.card-problem--yellow p {
    font-size: 13px;
    margin: 0 0 10px;
    color: var(--text-muted);
}

.card-problem .btn {
    align-self: flex-start;
}

.card-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.card-tagline {
    color: var(--text-muted);
}


/* ==========================================================
   USPs
   ========================================================== */

.section-usps {
    padding: 35px 0;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

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

.usp-item {
    text-align: center;
    padding: 10px 10px 0;
}

.usp-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffebee;
    color: #e53935;
    font-size: 20px;
}

.usp-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.usp-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ==========================================================
   Erfahrung / Slider
   ========================================================== */

.section-experience {
    padding: 40px 0 50px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.section-experience h2 {
    font-size: 22px;
    margin: 0 0 12px;
    text-align: center;
}

.section-experience p.intro {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 26px;
    text-align: center;
    line-height: 1.6;
}

.slider-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
}

.slider-caption {
    padding: 10px 14px;
    font-size: 13px;
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    color: var(--text-muted);
}


/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    background: #3f4354;
    color: #d0d0d0;
    font-size: 12px;
    padding: 26px 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 13px;
}

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

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #d0d0d0;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
    text-align: center;
    font-size: 11px;
    color: #b0b0b0;
}


/* ==========================================================
   Responsive gesammelt
   ========================================================== */

@media (max-width: 1024px) {
    .hero-flk {
        width: clamp(160px, 35vw, 260px);
        opacity: 0.85;
    }
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-problem--yellow {
        grid-row: auto;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .site-header {
        border-bottom: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .site-header .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        height: 56px;
        min-height: 56px;
        padding: 0 14px;

        z-index: 10000;

        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,.12);
    }

    .logo-img {
        height: 34px;
        margin-left: 0;
    }

    .breadcrumb {
        display: none;
    }

    .menu-toggle {
        padding: 10px 12px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 420px;
    }

    .flk-side-icons {
        position: fixed;
        top: auto !important;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 62px;

        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;

        padding: 0;
        margin: 0;

        background: #242630;
        box-shadow: 0 -4px 12px rgba(0,0,0,.25);

        z-index: 9999;

        transform: none;
    }

    .flk-side-icons__item {
        width: 25%;
        height: 62px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
        margin: 0;
    }

    .flk-side-icons__item img {
        width: 32px;
        height: 32px;
    }

    .flk-side-icons__item:hover {
        transform: none;
    }

    .flk-side-icons__item:active {
        transform: scale(.9);
    }

    .section-maintext {
        padding: 2rem 0;
    }

    .epx-article {
        padding: 1.5rem 1.4rem;
    }

    .section-maintext .epx-article h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {
    .hero-flk {
        width: clamp(140px, 55vw, 220px);
        right: 18px;
        bottom: 18px;
        opacity: 0.80;
    }

   .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .epx-article {
        padding: 1.3rem 1.1rem;
    }

    .epx-article p,
    .epx-article li {
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .hero-flk {
        display: none;
    }
}

@media (max-width: 414px) {
    .hero-content {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}
/* =========================
   SUBPAGE BASE
   ========================= */

.epx-subpage {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    line-height: 1.6;
}

.epx-subpage h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.epx-subpage h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.epx-subpage p {
    margin-bottom: 16px;
}


/* =========================
   INTRO
   ========================= */

.epx-intro {
    margin-bottom: 40px;
}

.epx-lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}


/* =========================
   GRID (2 Spalten)
   ========================= */

.epx-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.epx-grid-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 800px) {
    .epx-grid-2 {
        grid-template-columns: 1fr;
    }
}


/* =========================
   BOXEN
   ========================= */

.epx-box {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 6px;
}

.epx-box--soft {
    background: #f2f4f6;
    margin-bottom: 40px;
}

.epx-box--highlight {
    background: #eef5fb;
    margin-bottom: 40px;
}


/* =========================
   TEXTBLOCK
   ========================= */

.epx-textblock {
    margin-bottom: 40px;
}


/* =========================
   PROCESS / STEPS
   ========================= */

.epx-process {
    margin-bottom: 40px;
}

.epx-steps {
    padding-left: 20px;
}

.epx-steps li {
    margin-bottom: 12px;
}


/* =========================
   NOTE
   ========================= */

.epx-note {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.85;
}


/* =========================
   CTA
   ========================= */

.epx-cta {
    text-align: center;
    margin-top: 50px;
}

.epx-cta p {
    margin-bottom: 15px;
}


/* =========================
   LISTEN FEINSCHLIFF
   ========================= */

.epx-subpage ul {
    padding-left: 18px;
}

.epx-subpage li {
    margin-bottom: 6px;
}
/* =========================
   FEINSCHLIFF TYPO & RHYTHMUS
   ========================= */

/* ruhigere Lesestrecken */
.epx-subpage {
    line-height: 1.65;
}

/* bessere Hierarchie */
.epx-subpage h1 {
    letter-spacing: -0.01em;
}

.epx-subpage h2 {
    margin-top: 10px;
    font-weight: 600;
}

/* Lead wirkt luftiger */
.epx-lead {
    max-width: 780px;
}

/* Textblöcke nicht zu breit */
.epx-intro p,
.epx-textblock p,
.epx-box p {
    max-width: 800px;
}


/* =========================
   BOXEN – mehr Ruhe
   ========================= */

.epx-box {
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

.epx-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


/* =========================
   LISTEN – cleaner
   ========================= */

.epx-subpage ul {
    list-style: none;
    padding-left: 0;
}

.epx-subpage ul li {
    position: relative;
    padding-left: 18px;
}

.epx-subpage ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    opacity: 0.5;
}


/* =========================
   STEPS – klarer Ablauf
   ========================= */

.epx-steps {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.epx-steps li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
}

.epx-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   CTA – mehr Fokus
   ========================= */

.epx-cta {
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.epx-cta p:first-child {
    font-size: 1.1rem;
    font-weight: 500;
}
/* =========================
   H1 RESPONSIVE FEINSCHLIFF
   ========================= */
@media (max-width: 1100px) {
    .epx-subpage h1 {
        font-size: 2rem;
    }
}

@media (max-width: 798px) {
    .epx-subpage h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }
}
@media (max-width: 798px) {
    .epx-subpage h1 {
        font-size: 1.7rem;
        line-height: 1.25;
    }
}
/* =========================
   H2 FEINSCHLIFF
   ========================= */

.epx-subpage h2 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}


/* erster Block soll nicht "zu weit unten" starten */
.epx-intro + section h2 {
    margin-top: 10px;
}


/* visuelle Trennung – aber sehr subtil */
.epx-subpage h2 {
    position: relative;
    padding-top: 10px;
}

.epx-subpage h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.08);
}
@media (max-width: 798px) {
    .epx-subpage h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }
}
.epx-hero .hero-content,
.epx-hero .epx-hero-content {
    max-width: 650px;
}
.epx-hero .hero-title,
.epx-hero h1 {
    max-width: 700px;
    text-wrap: balance;
}
.epx-hero .btn {
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.epx-hero {
    margin-bottom: 30px;
}
.epx-subpage {
    margin-top: -20px;
}
.epx-grid-2 .epx-box {
    height: 100%;
}
/* =========================
   HERO ÜBERGANG FEINSCHLIFF
   ========================= */

.epx-hero {
    margin-bottom: 20px;
}

.epx-subpage {
    margin-top: -10px;
}
.epx-cta {
    padding-top: 35px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.epx-cta .btn {
    min-width: 260px;
}
.flk-cookie {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    z-index: 9999;
}

.flk-cookie__box {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.25rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.flk-cookie__box h2 {
    margin-top: 0;
}

.flk-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.flk-cookie__note {
    font-size: .9rem;
    opacity: .75;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .flk-cookie {
        inset: auto .75rem .75rem .75rem;
    }

    .flk-cookie__actions .btn {
        width: 100%;
        justify-content: center;
    }
}



