:root {
    --psp-navy: #011e62;
    --psp-navy-deep: #07143d;
    --psp-coral: #ff7264;
    --psp-teal: #42bfaa;
    --psp-indigo: #4555d2;
    --psp-text: #24324a;
    --psp-muted: #64748b;
    --psp-soft: #f4f7fb;
    --psp-white: #ffffff;
    --psp-border: rgba(1, 30, 98, 0.1);
    --psp-shadow: 0 24px 54px rgba(1, 30, 98, 0.12);
}

.psp-hero,
.psp-section {
    position: relative;
    overflow: hidden;
}

.psp-hero {
    padding: 10rem 0 5.5rem;
    background:
        radial-gradient(circle at top left, rgba(66, 191, 170, 0.22), transparent 32%),
        radial-gradient(circle at 88% 15%, rgba(255, 114, 100, 0.18), transparent 24%),
        linear-gradient(135deg, var(--psp-navy-deep) 0%, var(--psp-navy) 52%, #17337f 100%);
    color: var(--psp-white);
}

.psp-hero::before,
.psp-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.psp-hero::before {
    top: 80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
}

.psp-hero::after {
    left: -70px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    background: rgba(66, 191, 170, 0.14);
}

.psp-hero-copy,
.psp-hero-card,
.psp-surface,
.psp-card,
.psp-summary-card,
.psp-week-card,
.psp-cta-banner,
.psp-form-shell,
.psp-accordion,
.psp-outline {
    position: relative;
    z-index: 1;
}

.psp-kicker-wrap,
.psp-hero-points,
.psp-hero-actions,
.psp-role-grid,
.psp-method-grid,
.psp-enquiry-points,
.psp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.psp-hero-actions{
    margin-top: 20px;
}
.psp-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--psp-white);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.psp-kicker-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.psp-hero h1,
.psp-section h2 {
    font-weight: 800;
    line-height: 1.08;
}

.psp-hero h1 {
    margin: 1.15rem 0 1rem;
    font-size: clamp(2.65rem, 4.7vw, 4.95rem);
    max-width: 760px;
}

.psp-lead {
    max-width: 700px;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.85;
}

.psp-lead strong {
    color: var(--psp-white);
}

.psp-hero-points span,
.psp-enquiry-points span {
    display: inline-flex;
    align-items: center;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--psp-white);
    font-size: 0.94rem;
}

.psp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0.98rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.psp-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.psp-btn-primary {
    background: linear-gradient(135deg, var(--psp-coral), #ff5f5f);
    color: var(--psp-white);
    box-shadow: 0 18px 34px rgba(255, 114, 100, 0.3);
}

.psp-btn-primary:hover {
    color: var(--psp-white);
}

.psp-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--psp-white);
}

.psp-btn-secondary:hover {
    color: var(--psp-white);
    background: rgba(255, 255, 255, 0.14);
}

.psp-hero-card,
.psp-surface,
.psp-card,
.psp-summary-card,
.psp-week-card,
.psp-cta-banner,
.psp-form-shell {
    padding: 2rem;
    border: 1px solid var(--psp-border);
    border-radius: 28px;
    box-shadow: var(--psp-shadow);
}

.psp-hero-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.98)),
        linear-gradient(135deg, rgba(66, 191, 170, 0.16), rgba(255, 114, 100, 0.12));
}

.psp-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.psp-logo-wrap img {
    width: min(100%, 235px);
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(1, 30, 98, 0.12));
}

.psp-hero-card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.psp-stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 30, 98, 0.08);
}

.psp-stat strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--psp-navy);
    font-size: 1.1rem;
}

.psp-stat span {
    display: block;
    color: var(--psp-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.psp-section {
    padding: 5rem 0;
    background: var(--psp-white);
}

.psp-section-alt {
    background: linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%);
}

.psp-section-label {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--psp-coral);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.psp-heading {
    max-width: 900px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.psp-heading-narrow {
    max-width: 760px;
}

.psp-heading h2,
.psp-surface h2,
.psp-summary-card h2,
.psp-enquiry-copy h2,
.psp-cta-banner h2 {
    margin-bottom: 1rem;
    color: var(--psp-navy);
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.psp-heading-copy,
.psp-surface p,
.psp-card p,
.psp-summary-list li,
.psp-week-card li,
.psp-cta-banner p,
.psp-enquiry-copy p,
.psp-plain-note,
.psp-accordion-body {
    color: var(--psp-text);
    line-height: 1.8;
}

.psp-surface,
.psp-card,
.psp-week-card,
.psp-form-shell {
    background: rgba(255, 255, 255, 0.96);
}

.psp-summary-card {
    background: linear-gradient(180deg, rgba(1, 30, 98, 0.98), rgba(23, 51, 127, 0.94));
}

.psp-summary-card .psp-section-label,
.psp-summary-card li {
    color: var(--psp-white);
}

.psp-summary-list,
.psp-week-card ul {
    margin: 0;
    padding-left: 1.15rem;
}

.psp-summary-list li,
.psp-week-card li {
    margin-bottom: 0.95rem;
}

.psp-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.98)),
        linear-gradient(135deg, rgba(66, 191, 170, 0.08), rgba(255, 114, 100, 0.08));
}

.psp-card h3,
.psp-week-card h3 {
    margin-bottom: 0.8rem;
    color: var(--psp-navy);
    font-size: 1.22rem;
    font-weight: 800;
}

.psp-card-accent {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1)),
        linear-gradient(135deg, rgba(69, 85, 210, 0.08), rgba(66, 191, 170, 0.12));
}

.psp-plain-note {
    max-width: 700px;
    margin: 1.4rem auto 0;
    text-align: center;
}

.psp-outline {
    display: grid;
    gap: 1rem;
}

.psp-outline-item {
    border: 1px solid var(--psp-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--psp-shadow);
    overflow: hidden;
}

.psp-outline-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    cursor: pointer;
    list-style: none;
}

.psp-outline-summary::-webkit-details-marker {
    display: none;
}

.psp-outline-summary-main {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.psp-outline-title {
    color: var(--psp-navy);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.5;
}

.psp-outline-count {
    color: var(--psp-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.psp-outline-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(1, 30, 98, 0.06);
    color: var(--psp-navy);
}

.psp-outline-toggle::before {
    content: "+";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.psp-outline-item[open] .psp-outline-toggle::before {
    content: "-";
}

.psp-outline-item[open] .psp-outline-summary {
    border-bottom: 1px solid var(--psp-border);
    background: linear-gradient(180deg, rgba(246, 249, 252, 0.75), rgba(255, 255, 255, 0.95));
}

.psp-outline-body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.psp-outline-copy {
    color: var(--psp-text);
    line-height: 1.8;
}

.psp-outline-list {
    margin: 0;
    padding-left: 1.2rem;
}

.psp-outline-list li {
    margin-bottom: 0.75rem;
    color: var(--psp-text);
    line-height: 1.7;
}

.psp-accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--psp-border);
    border-radius: 22px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--psp-shadow);
}

.psp-accordion-button {
    padding: 1.35rem 1.45rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--psp-navy);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 253, 0.98));
    box-shadow: none !important;
}

.psp-accordion-button:not(.collapsed) {
    color: var(--psp-navy);
    background: linear-gradient(135deg, rgba(66, 191, 170, 0.08), rgba(255, 114, 100, 0.08));
}

.psp-accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.psp-accordion-button::after {
    background-size: 1rem;
}

.psp-accordion-body {
    padding: 0.1rem 1.45rem 1.45rem;
}

.psp-role-grid span,
.psp-method-item {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(1, 30, 98, 0.05);
    color: var(--psp-navy);
    font-weight: 700;
}

.psp-method-grid {
    margin-bottom: 1.25rem;
}

.psp-method-item {
    flex: 1 1 calc(50% - 0.8rem);
}

.psp-note {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--psp-teal);
    border-radius: 14px;
    background: rgba(66, 191, 170, 0.12);
}

.psp-timetable-summary {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.6rem;
}

.psp-timetable-summary > div {
    padding: 1.35rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(1, 30, 98, 0.98), rgba(69, 85, 210, 0.92));
    box-shadow: var(--psp-shadow);
}

.psp-timetable-summary strong,
.psp-timetable-summary span {
    display: block;
    color: var(--psp-white);
}

.psp-timetable-summary strong {
    margin-bottom: 0.5rem;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.psp-timetable-summary span {
    font-size: 1rem;
    line-height: 1.6;
}

.psp-week-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 249, 255, 1));
}

.psp-week-tag {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 114, 100, 0.12);
    color: var(--psp-coral);
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.psp-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background:
        radial-gradient(circle at top right, rgba(66, 191, 170, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(1, 30, 98, 0.98), rgba(23, 51, 127, 0.96));
}

.psp-cta-banner .psp-section-label,
.psp-cta-banner h2,
.psp-cta-banner p {
    color: var(--psp-white);
}

.psp-price-strike {
    margin-right: 0.35rem;
    color: rgba(1, 30, 98, 0.45);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.psp-cta-banner .psp-price-strike {
    color: rgba(255, 255, 255, 0.72);
}

.psp-enquiry-section {
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.95), rgba(255, 255, 255, 1));
}

.psp-enquiry-copy {
    padding: 1rem 0.5rem 0 0;
}

.psp-form-shell {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.psp-form-shell .full-form {
    position: static;
}

.psp-form-shell input[type="date"] {
    min-height: 40px;
}

.psp-form-shell .promo-offer,
.psp-form-shell .head {
    border-radius: 18px 18px 0 0;
}

.psp-form-shell .btn,
.psp-form-shell .btn-cc,
.psp-form-shell #enq_submit {
    background: var(--psp-coral) !important;
    border-color: var(--psp-coral) !important;
    color: var(--psp-white) !important;
}

.psp-form-shell .btn:hover,
.psp-form-shell .btn-cc:hover,
.psp-form-shell #enq_submit:hover {
    background: #ff5f5f !important;
}

@media (max-width: 1199px) {
    .psp-hero {
        padding-top: 8.7rem;
    }

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

@media (max-width: 991px) {
    .psp-hero-card-grid,
    .psp-timetable-summary {
        grid-template-columns: 1fr;
    }

    .psp-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .psp-enquiry-copy {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .psp-hero {
        padding: 7.8rem 0 4rem;
    }

    .psp-hero-card,
    .psp-surface,
    .psp-card,
    .psp-summary-card,
    .psp-week-card,
    .psp-cta-banner,
    .psp-form-shell {
        padding: 1.35rem;
        border-radius: 20px;
    }

    .psp-hero-actions,
    .psp-cta-actions {
        flex-direction: column;
    }

    .psp-btn {
        width: 100%;
    }

    .psp-method-item {
        flex-basis: 100%;
    }

    .psp-accordion-button,
    .psp-accordion-body,
    .psp-outline-summary,
    .psp-outline-body {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}
