/* ════════════════════════════════════════════════════════════════
   DAUERKARTEN PAGE
   Page-specific styles for the season ticket (Dauerkarten) page.
   Reuses main.css: .card, .page-header, .sec-divider, .promo-strip,
   .prices-*, .card-eyebrow, .embed-card, .footnotes-block, tokens.
   ════════════════════════════════════════════════════════════════ */

/* ── Intro / deadlines ── */
.intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.intro-text strong {
    font-weight: 800;
    color: var(--ink);
    font-size: 1.05rem;
}

.deadline-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.deadline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink-faint);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 6px 14px 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.deadline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.deadline-pill__label {
    font-weight: 700;
    color: var(--ink);
}

/* ── Benefits grid ── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--ink-faint);
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
}

.benefit-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.benefit-desc {
    font-size: 0.82rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

/* ── Price comparison card ── */
.price-comp-card {
    background: var(--navy);
    border-radius: var(--r);
    overflow: hidden;
    color: var(--card);
    padding: 44px 48px;
    text-align: center;
}

.pct-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pct-savings {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.pct-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin: 28px 0;
}

.pct-opt {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 0 0 5px;
    background: none;
    border: none;
    transition: color 0.2s;
    user-select: none;
}

.pct-opt:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.pct-opt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.pct-opt.active {
    color: var(--text-white);
}

.pct-opt.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.pct-opt.inactive {
    color: rgba(255, 255, 255, 0.38);
}

.pct-price-row {
    margin: 12px 0 2px;
}

.pct-price-val {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-white);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pct-price-lbl {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.pct-footnote {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
    max-width: 500px;
    margin: 28px auto 0;
    line-height: 1.55;
}

/* ── Teilzahler note ──
   Same left-bar treatment as on /tickets (.parking-notice / .teilzahler-note
   there): no box, no background, just an accent rule. Overrides the
   border-top version in main.css. */
.teilzahler-note {
    border-top: none;
    border-left: 3px solid var(--navy);
    padding-top: 0;
    padding-left: 14px;
    margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 580px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .pct-title {
        font-size: 1.5rem;
    }

    .pct-price-val {
        font-size: 2.4rem;
    }

    .price-comp-card {
        padding: 32px 20px;
    }
}

@media (max-width: 400px) {
    .pct-toggle {
        gap: 28px;
    }

    .pct-opt {
        font-size: 0.88rem;
    }
}
