.parking-solutions {
    --ps-ink: #102a2a;
    --ps-muted: #526767;
    --ps-teal: #00796b;
    --ps-cyan: #00a7b7;
    --ps-mint: #e8f6f4;
    --ps-sand: #f6f4ef;
    color: var(--ps-ink);
    background: #fff;
}

.parking-solutions *,
.parking-solutions *::before,
.parking-solutions *::after {
    box-sizing: border-box;
}

.ps-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ps-hero {
    position: relative;
    min-height: 680px;
    margin-top: 80px;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    background: #0b2425;
}

.ps-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(6, 25, 26, .94) 0%, rgba(6, 25, 26, .76) 48%, rgba(6, 25, 26, .24) 100%);
}

.ps-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-hero__content {
    max-width: 760px;
    padding: 100px 0 84px;
    color: #fff;
}

.ps-hero--detail {
    min-height: 640px;
}

.ps-hero--detail .ps-hero__content {
    max-width: 830px;
}

.ps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--ps-teal);
    font-size: .82rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ps-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

.ps-hero .ps-eyebrow,
.ps-section--dark .ps-eyebrow {
    color: #9ee7e4;
}

.ps-hero h1 {
    max-width: 800px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.ps-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.7;
}

.ps-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--ps-cyan);
    color: #fff;
    font-weight: 720;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.parking-solutions a.ps-button:hover,
.parking-solutions a.ps-button:visited {
    color: #fff;
}

.parking-solutions a.ps-button:hover {
    transform: translateY(-2px);
    background: #008d9b;
    box-shadow: 0 10px 26px rgba(0, 141, 155, .28);
}

.parking-solutions a.ps-button:focus-visible {
    color: #fff;
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 167, 183, .45);
}

.ps-button--ghost {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.parking-solutions a.ps-button--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.16);
}

.ps-proof {
    background: var(--ps-ink);
    color: #fff;
}

.ps-proof__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.ps-proof__item {
    padding: 24px 18px;
    border-left: 1px solid rgba(255,255,255,.12);
    text-align: center;
    font-size: .9rem;
    font-weight: 680;
}

.ps-proof__item:last-child {
    border-right: 1px solid rgba(255,255,255,.12);
}

.ps-cluster-nav {
    padding: 32px 0 36px;
    border-bottom: 1px solid #dce7e5;
    background: #f7faf9;
}

.ps-cluster-nav__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.ps-cluster-nav__heading span {
    color: var(--ps-ink);
    font-size: .86rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ps-cluster-nav__heading a {
    color: var(--ps-teal);
    font-size: .9rem;
    font-weight: 700;
    text-underline-offset: 4px;
}

.ps-cluster-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ps-cluster-nav__links a {
    padding: 9px 13px;
    border: 1px solid #cbdad7;
    border-radius: 999px;
    background: #fff;
    color: #365554;
    font-size: .84rem;
    font-weight: 650;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.parking-solutions .ps-cluster-nav__links a:hover,
.parking-solutions .ps-cluster-nav__links a:focus-visible {
    border-color: #82b9b4;
    background: #eaf5f3;
    color: #075f59;
}

.parking-solutions .ps-cluster-nav__links a.is-current {
    border-color: var(--ps-teal);
    background: var(--ps-teal);
    color: #fff;
}

.ps-cluster-nav__links a:focus-visible {
    outline: 3px solid rgba(0, 167, 183, .3);
    outline-offset: 2px;
}

.ps-section {
    padding: 96px 0;
}

.ps-section--soft { background: #f5f8f7; }
.ps-section--mint { background: var(--ps-mint); }
.ps-section--sand { background: var(--ps-sand); }
.ps-section--construction { background: #edf3f1; }
.ps-section--dark { background: var(--ps-ink); color: #fff; }

.ps-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.ps-heading--center {
    margin-inline: auto;
    text-align: center;
}

.ps-heading h2 {
    margin: 0 0 16px;
    color: inherit;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.ps-heading p,
.ps-lead {
    margin: 0;
    color: var(--ps-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ps-section--dark .ps-heading p,
.ps-section--dark .ps-lead { color: rgba(255,255,255,.74); }

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

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

.ps-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #dce7e5;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(16, 42, 42, .06);
}

.ps-card h3 {
    margin: 0 0 12px;
    color: var(--ps-ink);
    font-size: 1.3rem;
}

.ps-card p {
    margin: 0;
    color: var(--ps-muted);
    line-height: 1.7;
}

.ps-card a:not(.ps-button) {
    display: inline-flex;
    margin-top: 20px;
    color: var(--ps-teal);
    font-weight: 720;
    text-decoration: none;
    text-underline-offset: 4px;
}

.ps-card a:not(.ps-button):hover,
.ps-card a:not(.ps-button):focus-visible { text-decoration: underline; }

.ps-card a:not(.ps-button)::after { content: "\00a0→"; }

.ps-card__number {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--ps-mint);
    color: var(--ps-teal);
    font-weight: 800;
}

.ps-capability {
    min-height: 265px;
}

.ps-capability-grid .ps-card:nth-child(3n + 2) {
    transform: translateY(18px);
}

.ps-usecase {
    min-height: 220px;
    border-top: 4px solid var(--ps-teal);
}

.ps-project {
    padding: 0;
}

.ps-project img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ps-project__body { padding: 26px; }
.ps-project figcaption { color: var(--ps-muted); line-height: 1.6; }

.ps-construction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ps-construction-card {
    position: relative;
    min-height: 440px;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--ps-ink);
    box-shadow: 0 18px 46px rgba(16, 42, 42, .14);
}

.ps-construction-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-construction-card::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(6, 25, 26, .92));
}

.ps-construction-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 30px;
    color: rgba(255,255,255,.84);
    line-height: 1.55;
}

.ps-construction-card strong {
    color: #fff;
    font-size: 1.2rem;
}

.ps-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 64px;
    align-items: center;
}

.ps-split img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(16, 42, 42, .16);
}

.ps-split figure { margin: 0; }

.ps-split figure img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ps-split figure figcaption { margin-top: 16px; }

.ps-split--top { align-items: start; }

.ps-evidence figure img {
    min-height: 440px;
}

.ps-evidence figcaption {
    color: var(--ps-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.ps-field-note {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 4px solid var(--ps-cyan);
    background: rgba(255,255,255,.72);
    color: var(--ps-muted);
    line-height: 1.65;
}

.ps-field-note strong { color: var(--ps-ink); }

.ps-deliverables {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #d7e3e0;
}

.ps-deliverables li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: center;
    padding: 19px 4px;
    border-bottom: 1px solid #d7e3e0;
    color: var(--ps-ink);
    font-weight: 650;
    line-height: 1.5;
}

.ps-deliverables li span {
    color: var(--ps-teal);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.ps-decision-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #d7ded9;
    border-left: 1px solid #d7ded9;
}

.ps-decision-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 32px;
    border-right: 1px solid #d7ded9;
    border-bottom: 1px solid #d7ded9;
    background: rgba(255,255,255,.45);
}

.ps-decision-list article > span {
    color: var(--ps-teal);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.ps-decision-list h3 {
    margin: 0 0 10px;
    color: var(--ps-ink);
    font-size: 1.15rem;
}

.ps-decision-list p {
    margin: 0;
    color: var(--ps-muted);
    line-height: 1.65;
}

.parking-detail + footer,
.parking-detail ~ footer { margin-top: 0; }

.ps-checks {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.ps-checks li {
    position: relative;
    padding-left: 28px;
    color: var(--ps-muted);
    line-height: 1.65;
}

.ps-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ps-teal);
    font-weight: 800;
}

.ps-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.ps-flow__step {
    position: relative;
    padding: 24px 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    text-align: center;
}

.ps-flow__step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -21px;
    z-index: 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--ps-ink);
    color: #9ee7e4;
    transform: translateY(-50%);
}

.ps-flow__step strong { display: block; margin-bottom: 7px; color: #9ee7e4; }
.ps-flow__step span { color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.45; }

.ps-note {
    margin-top: 32px;
    padding: 22px 24px;
    border-left: 4px solid var(--ps-cyan);
    border-radius: 0 10px 10px 0;
    background: #f0f8f7;
    color: var(--ps-muted);
    line-height: 1.7;
}

.ps-cta {
    padding: 80px 0;
    background: linear-gradient(125deg, #00695c, #063d43);
    color: #fff;
    text-align: center;
}

.ps-cta h2 {
    max-width: 800px;
    margin: 0 auto 18px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -.035em;
}

.ps-cta p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    line-height: 1.7;
}

.ps-cta .ps-actions { justify-content: center; }

.ps-hero__breadcrumbs {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .7);
    font-size: .86rem;
    line-height: 1.5;
}

.ps-hero__breadcrumbs a {
    color: rgba(255, 255, 255, .92);
    text-decoration-color: rgba(255, 255, 255, .38);
    text-underline-offset: 4px;
}

.ps-hero__breadcrumbs a:hover,
.ps-hero__breadcrumbs a:focus-visible {
    color: #fff;
    text-decoration-color: #fff;
}

.ps-hero__media--payment {
    object-position: 50% 54%;
}

#installations,
#construction-title { scroll-margin-top: 110px; }

@media (max-width: 960px) {
    .ps-proof__grid { grid-template-columns: repeat(2, 1fr); }
    .ps-proof__item:last-child { grid-column: 1 / -1; }
    .ps-grid, .ps-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ps-split { grid-template-columns: 1fr; gap: 40px; }
    .ps-flow { grid-template-columns: 1fr; }
    .ps-capability-grid .ps-card:nth-child(3n + 2) { transform: none; }
    .ps-decision-list { grid-template-columns: 1fr; }
    .ps-flow__step:not(:last-child)::after {
        content: "↓";
        top: auto;
        right: auto;
        bottom: -21px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .ps-container { width: min(100% - 28px, 1180px); }
    .ps-hero { min-height: 620px; }
    .ps-hero h1 { font-size: clamp(2.15rem, 11vw, 3rem); }
    .ps-hero::after { background: linear-gradient(0deg, rgba(6,25,26,.96), rgba(6,25,26,.45)); }
    .ps-hero__content { padding: 80px 0 56px; }
    .ps-section { padding: 70px 0; }
    .ps-grid, .ps-grid--2, .ps-grid--4 { grid-template-columns: 1fr; }
    .ps-construction-grid { grid-template-columns: 1fr; }
    .ps-construction-card { min-height: 420px; }
    .ps-proof__grid { grid-template-columns: 1fr; }
    .ps-proof__item, .ps-proof__item:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .ps-actions { flex-direction: column; align-items: stretch; }
    .ps-cluster-nav__heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .ps-cluster-nav__links {
        flex-wrap: nowrap;
        margin-right: -14px;
        padding: 2px 14px 8px 0;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }
    .ps-cluster-nav__links a { flex: 0 0 auto; scroll-snap-align: start; }
    .ps-evidence figure img { min-height: 320px; }
    .ps-decision-list article { grid-template-columns: 34px 1fr; padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .ps-button { transition: none; }
    .ps-button:hover { transform: none; }
}
