/* PlanAppetit Express (landing) */
#express.landing-section {
    position: relative;
    background-image: url('/img/landing/beau-background%203.png?v=151');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 64px;
    /* Full-bleed: override landing-section max-width container */
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
#express.landing-section::before {
    content: none;
}
#express.landing-section > * {
    position: relative;
    z-index: 1;
}
.pa-express {
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 16px 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.pa-express-headline {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: #111827;
    text-shadow: none;
}
.pa-express-sub {
    margin: 0 0 12px;
    color: #4b5563;
    font-weight: 500;
}
.pa-express-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@keyframes paExpressInputFlash {
    0% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.0); border-color: rgba(0, 184, 148, 0.40); }
    35% { box-shadow: 0 0 0 10px rgba(0, 184, 148, 0.50); border-color: var(--primary); }
    100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.0); border-color: rgba(0, 184, 148, 0.40); }
}
.pa-express-input.attention {
    animation: paExpressInputFlash 1.1s ease-in-out 0s 3;
}
.pa-express-input.flash {
    animation: paExpressInputFlash 0.75s ease-in-out 0s 1;
}
.pa-express-input {
    flex: 1;
    min-width: 240px;
    height: 40px;
    border-radius: 999px;
    border: 2px solid rgba(0, 184, 148, 0.55);
    padding: 0 16px;
    font-size: 0.95rem;
    outline: none;
    background: #fff;
}
.pa-express-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 184, 148, 0.30);
}
.pa-express-btn {
    height: 40px;
    border-radius: 999px;
    padding: 0 16px;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.pa-express-btn:hover { filter: brightness(0.95); }
.pa-express-btn:active { transform: scale(0.99); }
.pa-express-btn:focus-visible {
    outline: 3px solid rgba(0, 184, 148, 0.35);
    outline-offset: 2px;
}
.pa-express-btn:disabled { opacity: 0.6; cursor: default; }

.pa-express-hint {
    margin-top: 8px;
    color: rgba(17, 24, 39, 0.92);
    font-weight: 650;
    font-size: 0.88rem;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.pa-express-hint strong { color: #111827; }

#pa-express-remaining {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #111827;
    font-weight: 850;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.18);
}
.pa-express-error {
    margin-top: 10px;
    color: #b91c1c;
    font-weight: 600;
    display: none;
}
.pa-express-card {
    margin-top: 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    display: block;
}
.pa-express-card.is-empty {
    opacity: 0.92;
}
.pa-express-card.is-empty .pa-express-title {
    color: #111827;
}
.pa-express-card.is-empty .pa-express-meta {
    color: #6b7280;
}
.pa-express-card.is-empty .pa-express-actions {
    opacity: 0.75;
}
.pa-express-card-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.pa-express-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

@keyframes paExpressIndeterminate {
    0% { transform: translateX(-60%); }
    100% { transform: translateX(160%); }
}
.pa-express-img-progress {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.10);
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.pa-express-img-progress-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 184, 148, 0.0), rgba(0, 184, 148, 0.85), rgba(0, 184, 148, 0.0));
    animation: paExpressIndeterminate 0.95s ease-in-out infinite;
}
@keyframes paExpressImageBottomPulse {
    0% { opacity: 0.55; transform: translateY(0px); }
    50% { opacity: 0.95; transform: translateY(-2px); }
    100% { opacity: 0.55; transform: translateY(0px); }
}
.pa-express-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(243,163,108,0.18) 55%, rgba(243,163,108,0.28) 100%);
    pointer-events: none;
    animation: paExpressImageBottomPulse 1.5s ease-in-out infinite;
    mix-blend-mode: multiply;
    z-index: 2;
}
.pa-express-img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    background: transparent;
    position: relative;
    z-index: 1;
}

.pa-express-img:not(.is-placeholder) {
    transform-origin: top center;
    transform: scale(1.18);
    will-change: transform;
}
.pa-express-img.is-placeholder {
    filter: saturate(0.75);
}
.pa-express-body {
    padding: 14px 14px 10px;
}
.pa-express-title {
    margin: 0;
    font-size: 1.15rem;
    color: #14532d;
    letter-spacing: -0.01em;
}
.pa-express-meta {
    margin: 6px 0 12px;
    color: #374151;
    font-weight: 600;
    font-size: 0.92rem;
}
.pa-express-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.pa-express-block h4 {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: #111827;
}
.pa-express-block ul,
.pa-express-block ol {
    margin: 0;
    padding-left: 18px;
    color: #111827;
    line-height: 1.45;
}
.pa-express-actions {
    display: flex;
    gap: 8px;
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pa-express-action {
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    padding: 0 12px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pa-express-action.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pa-express-action.locked {
    background: #f3f4f6;
    color: #6b7280;
    border-color: rgba(0,0,0,0.10);
    cursor: pointer;
    position: relative;
}
.pa-express-action.locked:hover {
    background: #eef2ff;
    color: #374151;
}
.pa-express-action.locked[aria-disabled="true"] {
    opacity: 0.92;
}

.pa-express-upsell {
    padding: 0 18px 18px;
}
.pa-express-upsell-title {
    margin: 8px 0 10px;
    font-size: 1rem;
    color: #111827;
    font-weight: 850;
    letter-spacing: -0.01em;
    text-align: center;
}
.pa-express-compare {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
}
.pa-express-compare th,
.pa-express-compare td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: left;
    font-weight: 650;
    color: #111827;
    background: #fff;
}
.pa-express-compare th {
    background: #0b1220;
    color: #fff;
    font-weight: 850;
}
.pa-express-compare tr:last-child td { border-bottom: 0; }
.pa-express-compare .yes { color: #15803d; font-weight: 900; }
.pa-express-compare .no { color: #b91c1c; font-weight: 900; }

.pa-express-upsell-link {
    display: inline-flex;
    margin: 12px auto 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: #0b1220;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pa-express-upsell-link:hover { filter: brightness(1.07); }

@media (max-width: 860px) {
    .pa-express-card-inner { grid-template-columns: 1fr; }
    .pa-express-img { max-height: 280px; }
}

@media (max-width: 520px) {
    .pa-express {
        padding: 12px 10px 10px;
        border-radius: 18px;
    }

    .pa-express-headline {
        margin-bottom: 8px;
    }

    .pa-express-bar {
        border-radius: 18px;
        padding: 8px;
    }

    .pa-express-input {
        min-width: 0;
        width: 100%;
    }

    .pa-express-btn {
        width: 100%;
        justify-content: center;
    }

    .pa-express-card {
        margin-top: 12px;
    }

    .pa-express-body {
        padding: 12px 12px 10px;
    }

    .pa-express-actions {
        padding: 8px 12px 12px;
    }

    .pa-express-upsell {
        padding: 0 14px 14px;
    }
}
