:root {
    --red: #E11010;
    --red-dark: #b90000;
    --dark: #08090b;
    --dark-2: #101114;
    --navy: #081830;
    --white: #ffffff;
    --muted: rgba(255,255,255,.68);
    --text: #101114;
    --gray: #555;
    --line: #dedede;
    --green: #18b45b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: var(--text);
}

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

.pa-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.pa-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 26px 0;
}

.pa-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pa-logo img {
    width: 54px;
    height: auto;
    display: block;
}

.pa-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.pa-nav a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pa-nav a:hover {
    color: var(--red);
}

.pa-menu-btn {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 34px;
    padding: 0;
    cursor: pointer;
}

.pa-menu-btn span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 8px 0;
}

.pa-mobile-menu {
    display: none;
    background: #101114;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 28px 24px;
}

.pa-mobile-menu a {
    display: block;
    color: #fff;
    padding: 14px 0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.assist-page {
    background:
        radial-gradient(circle at 82% 16%, rgba(225,16,16,.22), transparent 34%),
        radial-gradient(circle at 18% 68%, rgba(225,16,16,.10), transparent 30%),
        linear-gradient(180deg, #08090b 0%, #101114 47%, #ffffff 47%, #ffffff 100%);
    overflow: hidden;
}

.assist-hero {
    padding-top: 135px;
    padding-bottom: 64px;
    color: #fff;
}

.assist-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.assist-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
}

.assist-kicker span {
    width: 44px;
    height: 3px;
    background: var(--red);
    display: inline-block;
}

.assist-hero-title {
    font-family: Impact, Haettenschweiler, "Arial Black", Arial, sans-serif;
    font-size: clamp(52px, 6.5vw, 108px);
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    margin: 0 0 26px;
}

.assist-hero-title span {
    color: var(--red);
}

.assist-hero-text {
    max-width: 670px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.assist-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.assist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    background: var(--red);
    color: #fff;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 15px;
    transition: .2s ease;
}

.assist-btn:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-2px);
}

.assist-btn.outline {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
}

.assist-btn.outline:hover {
    background: #fff;
    color: var(--dark);
}

.assist-visual-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.assist-visual-card img {
    width: 100%;
    display: block;
}

.assist-marquee-wrap {
    background: var(--red);
    overflow: hidden;
    transform: rotate(-1deg) scale(1.04);
    transform-origin: center;
    margin-top: -12px;
    margin-bottom: -8px;
    position: relative;
    z-index: 3;
}

.assist-marquee {
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 24px 0 22px;
}

.assist-marquee-inner {
    display: inline-block;
    animation: assistMarquee 30s linear infinite;
    font-family: Impact, Haettenschweiler, "Arial Black", Arial, sans-serif;
    font-size: clamp(30px, 3.7vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .01em;
    word-spacing: 14px;
}

@keyframes assistMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.assist-map-intro {
    background: #fff;
    color: var(--text);
    padding: 86px 0 34px;
    position: relative;
    z-index: 2;
}

.assist-map-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: end;
}

.assist-map-label {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 15px;
}

.assist-section-title {
    color: var(--text);
    font-family: Impact, Haettenschweiler, "Arial Black", Arial, sans-serif;
    font-size: clamp(36px, 4vw, 62px);
    line-height: .95;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.assist-section-title span {
    color: var(--red);
}

.assist-section-text {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0;
}

.assist-map-section {
    background: #fff;
    padding-top: 24px;
    padding-bottom: 100px;
}

.assist-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 70px;
    align-items: start;
}

.map-holder {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.map-holder svg {
    width: 100%;
    height: auto;
    display: block;
}

svg path.kanton-inactive {
    fill: #d5d5d5;
    cursor: not-allowed;
    opacity: .75;
}

svg path.kanton-active {
    fill: #777;
    cursor: pointer;
}

svg path.kanton-active:hover {
    fill: var(--red) !important;
}

svg path.kanton-area {
    transition: .2s;
    stroke: rgba(255,255,255,.85);
    stroke-width: 1;
}

.tooltip-canton {
    position: absolute;
    background: var(--navy);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    display: none;
    z-index: 9999;
}

.assist-accordion {
    background: transparent;
}

.accordion-item {
    background: transparent;
    border-bottom: 1px solid var(--line);
}

.accordion-button {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 24px 0;
    font-size: 21px;
    font-weight: 900;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
    margin-left: 18px;
}

.accordion-item.is-open .accordion-icon {
    background: var(--red);
    color: #fff;
}

.accordion-body {
    display: none;
    padding: 0 0 24px;
}

.accordion-item.is-open .accordion-body {
    display: block;
}

.accordion-body ul,
.accordion-body li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pika-card {
    background: var(--dark-2);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 14px;
    box-shadow: 0 12px 34px rgba(0,0,0,.10);
}

.pika-card-mobile {
    background: linear-gradient(135deg, #101114 0%, #0d1d17 100%);
    box-shadow: inset 4px 0 0 var(--green), 0 12px 34px rgba(0,0,0,.10);
}

.pika-card h4 {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    word-break: break-word;
    font-weight: 900;
    margin: 0 0 12px;
}

.pika-type-badge {
    display: inline-flex;
    margin-bottom: 14px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 900;
}

.pika-card-mobile .pika-type-badge {
    background: rgba(24,180,91,.18);
}

.pika-meta {
    display: grid;
    gap: 9px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.55;
}

.pika-meta a {
    color: #fff;
    font-weight: 800;
}

.pika-meta a:hover {
    color: var(--red);
}

.pika-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff !important;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.nav-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.pika-mobile-info {
    color: #d8d8d8;
    background: rgba(24,180,91,.10);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    line-height: 1.55;
}

.pika-services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pika-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.07);
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
}

.check-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.pika-desc {
    margin-top: 16px;
    color: #a9a9a9;
    font-size: 15px;
    line-height: 1.7;
}

.pika-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.pika-btn {
    border: 0;
    background: var(--red);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 900;
    cursor: pointer;
    font-size: 14px;
}

.pika-btn:hover {
    background: var(--red-dark);
    color: #fff;
}

.pika-btn.outline {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
}

.flyer-btn.disabled {
    opacity: .45;
    cursor: not-allowed;
    background: rgba(255,255,255,.08);
    color: #aaa;
    pointer-events: none;
}

.empty-state {
    padding: 26px;
    background: #f7f7f7;
    border-radius: 8px;
    color: #555;
}

.assist-red-lines {
    height: 63px;
    background:
        linear-gradient(var(--red),var(--red)) 0 0/100% 2px no-repeat,
        linear-gradient(var(--red),var(--red)) 0 10px/100% 4px no-repeat,
        linear-gradient(var(--red),var(--red)) 0 22px/100% 6px no-repeat,
        linear-gradient(var(--red),var(--red)) 0 36px/100% 9px no-repeat,
        linear-gradient(var(--red),var(--red)) 0 53px/100% 10px no-repeat;
}

.pa-footer {
    background: #08090b;
    color: #fff;
    padding: 80px 0 34px;
}

.pa-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: end;
}

.pa-footer h3 {
    font-family: Impact, Haettenschweiler, "Arial Black", Arial, sans-serif;
    font-size: clamp(42px, 5vw, 82px);
    line-height: .95;
    margin: 0;
    text-transform: uppercase;
}

.pa-footer p {
    color: rgba(255,255,255,.68);
    max-width: 720px;
    line-height: 1.7;
    margin: 22px 0 0;
}

.pa-footer-action {
    text-align: right;
}

.pa-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 60px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
}

@media (max-width: 991px) {
    .pa-nav {
        display: none;
    }

    .pa-menu-btn {
        display: block;
    }

    .pa-mobile-menu.is-open {
        display: block;
    }

    .assist-hero-grid,
    .assist-map-intro-grid,
    .assist-grid,
    .pa-footer-grid {
        grid-template-columns: 1fr;
    }

    .assist-hero {
        padding-top: 115px;
    }

    .map-holder {
        margin-bottom: 38px;
    }

    .pa-footer-action {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .pa-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .assist-hero {
        padding-top: 105px;
        padding-bottom: 48px;
    }

    .assist-hero-title {
        font-size: clamp(48px, 16vw, 72px);
    }

    .assist-buttons,
    .pika-actions {
        flex-direction: column;
    }

    .assist-btn,
    .pika-btn {
        width: 100%;
        text-align: center;
    }

    .pika-card {
        padding: 20px;
    }

    .pika-card h4 {
        font-size: 19px;
    }

    .pa-footer-bottom {
        flex-direction: column;
    }
}
/* Premium KQZ section */
.kqz-register-section {
    background: #fff;
    padding: 82px 0 72px;
}

.kqz-register-section .pa-container {
    max-width: 1360px;
    margin: 0 auto;
}

.kqz-register-box {
    width: 100%;
    background:
        radial-gradient(circle at 88% 18%, rgba(225,16,16,.20), transparent 34%),
        linear-gradient(135deg, #08090b 0%, #14161b 100%);
    color: #fff;
    border-radius: 14px;
    padding: 54px 70px;
    min-height: 330px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 46px;
    align-items: center;
    box-shadow: 0 26px 70px rgba(0,0,0,.16);
    position: relative;
    overflow: hidden;
}

.kqz-register-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: #E11010;
}

.kqz-register-label {
    display: inline-flex;
    width: fit-content;
    color: #fff;
    background: rgba(225,16,16,.95);
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 18px;
}

.kqz-register-box h2 {
    color: #fff;
    font-family: Impact, Haettenschweiler, "Arial Black", Arial, sans-serif;
    font-size: clamp(42px, 4.8vw, 76px);
    line-height: .96;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    max-width: 720px;
}

.kqz-register-box h2 span {
    color: #E11010;
}

.kqz-register-box p {
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 560px;
}

.kqz-register-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.kqz-btn-primary,
.kqz-btn-secondary {
    min-height: 56px;
    padding: 15px 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-decoration: none;
    transition: all .25s ease;
}

.kqz-btn-primary {
    background: #E11010;
    color: #fff;
}

.kqz-btn-secondary {
    background: #fff;
    color: #101114;
}

.kqz-btn-primary:hover,
.kqz-btn-secondary:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .kqz-register-box {
        grid-template-columns: 1fr;
        padding: 42px 28px;
    }

    .kqz-register-actions {
        flex-direction: column;
    }

    .kqz-btn-primary,
    .kqz-btn-secondary {
        width: 100%;
    }
}
/* HEADER CTA */
.menu-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    background: #E11010;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: .04em;
    transition: all .25s ease;
    margin-left: 16px;
    white-space: nowrap;
}

.menu-cta-btn:hover {
    background: #c90e0e;
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile version */
.pa-mobile-menu .menu-cta-btn {
    width: 100%;
    margin-top: 20px;
    height: 50px;
    font-size: 15px;
}
/* Mobile Menu Base */
.pa-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #101114;
    padding: 90px 25px 30px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.pa-mobile-menu.is-open {
    transform: translateX(0);
}

/* Links */
.pa-mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* CTA Button */
.pa-mobile-menu .menu-cta-btn {
    margin-top: 20px;
    height: 50px;
    background: #E11010;
    border-radius: 8px;
    text-align: center;
}

/* Optional overlay background */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    display: none;
}

.mobile-overlay.active {
    display: block;
}