/* PrimeSpring Group - Custom Styles */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: #1F3A5F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #14B8A6;
}

/* Navigation Enhancements */
nav {
    transition: box-shadow 0.3s ease;
}

nav > div > div.flex.justify-between.items-center.h-16 {
    height: 5rem;
}

nav a {
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1F3A5F;
}

/* Header proportions and logo treatment */
.header-logo {
    display: block;
    width: 11.5rem;
    height: auto;
    max-width: 100%;
}

nav a:has(.header-logo) {
    display: flex;
    width: 11.5rem;
    min-height: 4.5rem;
    align-items: center;
    justify-content: flex-start;
}

/* CTA Buttons */
.btn-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-primary {
    background-color: #1F3A5F;
    color: white;
}

.btn-cta-primary:hover {
    background-color: #14B8A6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(31, 58, 95, 0.3);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: #1F3A5F;
    transform: translateY(-2px);
}

/* Cards and Containers */
.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Service Cards */
.service-card {
    border-left: 4px solid #1F3A5F;
    background-color: #f9fafb;
    padding: 32px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-left-color: #14B8A6;
    background-color: #f3f4f6;
    transform: translateX(4px);
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, #1F3A5F 0%, #14B8A6 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -100px);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #14B8A6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.14);
}

input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

button[type="submit"] {
    width: 100%;
    padding: 12px 24px;
    background-color: #1F3A5F;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #14B8A6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(31, 58, 95, 0.3);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Details/Accordion */
details {
    transition: all 0.3s ease;
}

details[open] {
    background-color: #e8f7f5;
}

details summary {
    user-select: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::before {
    content: '▶ ';
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

details[open] summary::before {
    transform: rotate(90deg);
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial .author {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.testimonial .role {
    font-size: 13px;
    color: #6b7280;
}

/* Star Rating */
.stars {
    color: #fbbf24;
    font-size: 14px;
}

/* Trust Badges */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #edf9f7;
    border-radius: 8px;
    border-left: 4px solid #1F3A5F;
}

.trust-badge-icon {
    font-size: 28px;
}

.trust-badge h4 {
    margin-bottom: 4px;
    color: #1F3A5F;
}

.trust-badge p {
    color: #1F3A5F;
    font-size: 14px;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .grid-responsive {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 12px 16px;
    }

    nav > div > div.flex.justify-between.items-center.h-16 {
        height: 4.25rem;
    }

    .header-logo {
        width: 8.5rem;
    }

    nav a:has(.header-logo) {
        width: 8.5rem;
        min-height: 3.75rem;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 1;
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 32px;
}

.mb-8 {
    margin-bottom: 32px;
}

.space-y-4 > * + * {
    margin-top: 16px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border-top: 4px solid #14B8A6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Success Message */
.success-message {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.error-message {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #7f1d1d;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #1F3A5F;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #d1d5db;
}

/* Print Styles */
@media print {
    nav,
    footer,
    .no-print {
        display: none;
    }
    
    body {
        background: white;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1F3A5F;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 2px solid #14B8A6;
    outline-offset: 2px;
}

/* PrimeSpring brand palette */
:root {
    --ps-navy: #1F3A5F;
    --ps-teal: #14B8A6;
    --ps-silver: #6B7280;
    --ps-gold: #C9952E;
}

.text-blue-600,
.text-blue-700,
.text-blue-800,
.text-blue-900 { color: var(--ps-navy) !important; }

.hover\\:text-blue-600:hover,
.hover\\:text-blue-700:hover,
.hover\\:text-blue-800:hover { color: var(--ps-teal) !important; }

.bg-blue-600,
.bg-blue-700,
.bg-blue-800,
.bg-blue-900 { background-color: var(--ps-navy) !important; }

.hover\\:bg-blue-700:hover,
.hover\\:bg-blue-800:hover,
.hover\\:bg-blue-900:hover { background-color: var(--ps-teal) !important; }

.border-blue-600,
.border-blue-700,
.border-blue-800 { border-color: var(--ps-navy) !important; }

.border-teal-600,
.border-teal-700 { border-color: var(--ps-teal) !important; }

.bg-teal-500,
.bg-teal-600,
.bg-teal-700,
.bg-teal-800,
.bg-teal-900 { background-color: var(--ps-teal) !important; }

.text-teal-600,
.text-teal-700,
.text-teal-800 { color: var(--ps-teal) !important; }

.from-blue-600,
.from-blue-700,
.from-blue-800,
.from-blue-900 { --tw-gradient-from: var(--ps-navy) var(--tw-gradient-from-position) !important; }

.to-blue-600,
.to-blue-700,
.to-blue-800,
.to-blue-900 { --tw-gradient-to: var(--ps-navy) var(--tw-gradient-to-position) !important; }

.from-teal-500,
.from-teal-600,
.from-teal-700 { --tw-gradient-from: var(--ps-teal) var(--tw-gradient-from-position) !important; }

.to-teal-600,
.to-teal-700,
.to-teal-800,
.to-teal-900 { --tw-gradient-to: var(--ps-teal) var(--tw-gradient-to-position) !important; }

.service-visual {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-visual,
.service-visual:hover {
    transform: scale(1.03);
    filter: saturate(1.15);
}

/* Featured Service Section */
.featured-service {
    padding: 5rem 0;
    background: #fafaf9;
}

@media (min-width: 641px) {
    .featured-service {
        padding-bottom: 3rem;
    }

    #services {
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    #services .services-grid {
        margin-bottom: 2rem;
    }

    .service-area {
        padding-top: 3rem;
    }
}

.featured-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin-bottom: 3.5rem;
}

.featured-media {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 28px;
    z-index: 2;
    display: inline-block;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: var(--ps-teal);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(20, 184, 166, 0.35);
}

.featured-image-frame {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px -20px rgba(31, 58, 95, 0.35);
}

.featured-image {
    display: block;
    width: 100%;
    height: clamp(320px, 40vw, 520px);
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.featured-media.is-transitioning .featured-image {
    opacity: 0.4;
}

.featured-content {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.featured-content.is-transitioning {
    opacity: 0;
    transform: translateY(6px);
}

.featured-title {
    margin-bottom: 0.85rem;
    color: var(--ps-navy);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.featured-subtitle {
    margin-bottom: 1rem;
    color: #374151;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
}

.featured-description {
    margin-bottom: 1.75rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

.featured-included-title {
    margin-bottom: 1.1rem;
    color: var(--ps-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.featured-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.5rem;
    margin-bottom: 2.25rem;
}

.featured-checklist li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.featured-checklist .check-icon {
    display: inline-flex;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ps-teal);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
}

.featured-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.75rem;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 10px;
    background: var(--ps-teal);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(20, 184, 166, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.featured-cta:hover {
    background: var(--ps-navy);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(31, 58, 95, 0.28);
}

.featured-secondary-link {
    color: var(--ps-navy);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.featured-secondary-link:hover {
    color: var(--ps-teal);
    border-color: var(--ps-teal);
}

/* Service Selector */
.service-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.selector-tab {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.selector-tab:hover {
    border-color: var(--ps-teal);
    box-shadow: 0 12px 26px rgba(31, 58, 95, 0.1);
    transform: translateY(-2px);
}

.selector-tab-title {
    color: var(--ps-navy);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.selector-tab-sub {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.selector-tab.is-active {
    border-color: var(--ps-navy);
    background: var(--ps-navy);
    box-shadow: 0 16px 30px rgba(31, 58, 95, 0.25);
}

.selector-tab.is-active .selector-tab-title,
.selector-tab.is-active .selector-tab-sub {
    color: #ffffff;
}

.selector-tab.is-active .selector-tab-sub {
    color: rgba(255, 255, 255, 0.75);
}

/* Shared Section Headings */
.section-eyebrow {
    margin-bottom: 0.65rem;
    color: var(--ps-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 0.85rem;
    color: var(--ps-navy);
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.section-subtext {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Service Area Section */
.service-area {
    padding: 80px 0;
    background: #fafaf9;
}

.service-area-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.area-visual-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem;
    border-radius: 20px;
    background: linear-gradient(150deg, #f4faf9 0%, #eaf6f4 100%);
    box-shadow: 0 24px 48px -18px rgba(31, 58, 95, 0.18);
}

.area-map-wrap {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.area-map-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 22px rgba(31, 58, 95, 0.16));
}

.area-map-credit {
    margin-top: 0.6rem;
    color: #9ca3af;
    font-size: 0.68rem;
    text-align: center;
}

.area-map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -100%);
}

.area-map-pin-icon {
    width: 20px;
    height: 20px;
    fill: var(--ps-navy);
    filter: drop-shadow(0 2px 3px rgba(31, 58, 95, 0.4));
    transition: transform 0.2s ease;
}

.area-map-pin-dot {
    fill: var(--ps-teal);
}

.area-map-pin-label {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--ps-navy);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.area-map-pin:hover .area-map-pin-icon,
.area-map-pin.is-active .area-map-pin-icon {
    transform: scale(1.25);
}

.area-map-pin:hover .area-map-pin-label,
.area-map-pin.is-active .area-map-pin-label,
.area-map-pin:focus-visible .area-map-pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.area-map-pin.is-active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ps-teal);
    opacity: 0.45;
    transform: translate(-50%, -50%);
    animation: pin-pulse 1.6s ease-out infinite;
}

@keyframes pin-pulse {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

.area-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.5rem 0 2rem;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    color: #374151;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.area-chip:hover {
    border-color: var(--ps-teal);
    box-shadow: 0 10px 20px rgba(31, 58, 95, 0.1);
    transform: translateY(-2px);
}

.area-chip.is-active {
    border-color: var(--ps-navy);
    background: var(--ps-navy);
    color: #ffffff;
}

.area-chip.is-active .area-chip-icon {
    fill: var(--ps-teal);
}

.area-chip-icon {
    width: 15px;
    height: 15px;
    fill: var(--ps-teal);
}

.area-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    background: var(--ps-teal);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(20, 184, 166, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.area-cta:hover {
    background: var(--ps-navy);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(31, 58, 95, 0.28);
}

/* Why PrimeSpring Section */
.why-primespring {
    padding: 80px 0 24px;
    background: #ffffff;
}

.why-primespring-header {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
}

.why-primespring-header .section-subtext {
    max-width: 560px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(31, 58, 95, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    border-color: var(--ps-teal);
    box-shadow: 0 20px 36px rgba(31, 58, 95, 0.14);
    transform: translateY(-4px);
}

.feature-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 1.25rem;
    fill: none;
    stroke: var(--ps-teal);
    stroke-width: 1.5;
}

.feature-card h3 {
    margin-bottom: 0.6rem;
    color: var(--ps-navy);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.feature-card p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
}

.trust-strip {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0 0.5rem;
}

.trust-stat {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
    gap: 0.85rem;
    padding: 0 1.25rem;
    text-align: left;
}

.trust-stat + .trust-stat::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 1px;
    height: 80%;
    background: #e5e7eb;
}

.trust-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--ps-teal);
    stroke-width: 1.6;
}

.trust-number {
    margin-bottom: 0.15rem;
    color: var(--ps-navy);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
}

.trust-label {
    color: #6b7280;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Team Banner */
.team-banner-wrap {
    padding: 24px 0 32px;
    background: #ffffff;
}

.team-banner {
    width: 88%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 22px -12px rgba(31, 58, 95, 0.2);
}

.team-banner-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1692 / 930;
}

/* Leadership page shared header block */
.page-section-header {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.gold-rule {
    display: block;
    width: 56px;
    height: 3px;
    margin: 0 auto 1.25rem;
    background: var(--ps-gold);
}

.content-wide {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.content-medium {
    width: min(92%, 1080px);
    margin: 0 auto;
}

.section-pad {
    padding: 72px 0;
}

.values-section {
    background: #eef5fb;
}

/* Leadership Hero */
.leadership-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ps-navy) 0%, #142c4a 100%);
}

.leadership-hero-bg {
    position: absolute;
    inset: 0;
    left: auto;
    width: 60%;
    background-size: cover;
    background-position: center;
}

.leadership-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ps-navy) 0%, rgba(15, 39, 70, 0.96) 38%, rgba(15, 39, 70, 0.55) 68%, rgba(15, 39, 70, 0.35) 100%);
}

.leadership-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 3.5rem 0;
}

.leadership-hero-eyebrow {
    margin-bottom: 1rem;
    color: var(--ps-gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.leadership-hero-title {
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.leadership-hero-title span {
    color: var(--ps-gold);
}

.leadership-hero-rule {
    margin: 0 0 1.25rem;
}

.leadership-hero-subtext {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Leadership Vision Intro */
.leadership-intro {
    padding: 72px 0;
    background: #eef5fb;
}

.leadership-intro-grid {
    display: grid;
    grid-template-columns: auto 1px 1fr;
    align-items: center;
    gap: 2rem;
}

.leadership-intro-icon-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-intro-icon {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: var(--ps-navy);
    stroke-width: 1.4;
}

.leadership-intro-divider {
    align-self: stretch;
    width: 1px;
    background: var(--ps-gold);
    opacity: 0.5;
}

.leadership-intro-text {
    text-align: left;
}

.leadership-intro-text .section-heading {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

.leadership-intro-text .section-subtext {
    font-size: 1.1rem;
}

/* Unified Leadership Team grid (team page) */
.exec-team-section {
    padding: 72px 0;
    background: #eef5fb;
    border-top: 2px solid rgba(201, 149, 46, 0.35);
}

.exec-team-content {
    width: min(94%, 1440px);
}

.exec-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
}

.exec-card {
    overflow: hidden;
    border: 1px solid rgba(201, 149, 46, 0.3);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 58, 95, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .exec-card:hover {
        box-shadow: 0 16px 30px rgba(31, 58, 95, 0.14);
        transform: translateY(-3px);
    }
}

.exec-card-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
}

@media (min-width: 641px) {
    .exec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .exec-card--ceo {
        grid-column: 1 / -1;
        width: min(100%, 820px);
        justify-self: center;
    }

    .exec-card--executive:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 14px);
        justify-self: center;
    }
}

@media (min-width: 1025px) {
    .exec-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .exec-card--ceo {
        grid-column: 1 / -1;
        width: min(100%, 840px);
    }

    .exec-card--executive:last-child {
        grid-column: 2;
        width: auto;
    }
}

.exec-closing {
    margin-top: 3rem;
    text-align: center;
}

.exec-closing-eyebrow {
    margin-bottom: 0.5rem;
    color: var(--ps-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.exec-closing-text {
    color: var(--ps-navy);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Team values */
.leadership-values {
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
    background: #edf6fb;
    isolation: isolate;
}

.leadership-values::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background: url('../img/leadership-values-background.png') right center / auto 150% no-repeat;
    content: '';
    z-index: -2;
}

.leadership-values::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(237, 246, 251, 0.98) 0%, rgba(237, 246, 251, 0.94) 43%, rgba(237, 246, 251, 0.52) 70%, rgba(237, 246, 251, 0.28) 100%);
    content: '';
    z-index: -1;
}

.leadership-values-content {
    width: min(94%, 1440px);
    margin: 0 auto;
}

.leadership-values-header {
    max-width: 630px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.leadership-values-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    color: var(--ps-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.leadership-values-eyebrow::before,
.leadership-values-eyebrow::after {
    width: 34px;
    height: 2px;
    background: var(--ps-gold);
    content: '';
}

.leadership-values-header .section-heading {
    margin-bottom: 0.85rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.leadership-values-header .section-subtext {
    max-width: 570px;
    font-size: 1.08rem;
}

.leadership-values .value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding-bottom: 2rem;
}

.leadership-values .value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    min-height: 205px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(31, 58, 95, 0.1);
}

.leadership-values .value-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    fill: none;
    stroke: var(--ps-gold);
    stroke-width: 1.6;
}

.leadership-values .value-card h3 {
    margin-bottom: 0.4rem;
    color: var(--ps-navy);
    font-size: 1.1rem;
    font-weight: 800;
}

.leadership-values .value-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.leadership-statement {
    position: relative;
    overflow: hidden;
    padding: 2.35rem 0;
    background: var(--ps-navy);
}

.leadership-statement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(94%, 1440px);
    margin: 0 auto;
}

.leadership-statement-copy {
    max-width: 760px;
    padding-left: 1.4rem;
    border-left: 3px solid var(--ps-gold);
}

.leadership-statement-copy h2 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.leadership-statement-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
}

.leadership-statement-cta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.65rem;
    border-radius: 8px;
    background: var(--ps-gold);
    color: var(--ps-navy);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.leadership-statement-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .leadership-values .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .leadership-values {
        padding-top: 48px;
    }

    .leadership-values::before {
        width: 100%;
        opacity: 0.28;
        background-position: 72% center;
    }

    .leadership-values::after {
        background: rgba(237, 246, 251, 0.82);
    }

    .leadership-values-header {
        margin-bottom: 2rem;
    }

    .leadership-values .value-grid {
        grid-template-columns: 1fr;
    }

    .leadership-values .value-card {
        min-height: 0;
    }

    .leadership-statement-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Terms and Conditions document */
.legal-page { background: #f7fafb; color: #243244; }
.legal-container { width: min(92%, 1400px); margin-inline: auto; }
.legal-hero { padding: 56px 0 48px; border-bottom: 1px solid #dce5ea; background: #ffffff; }
.legal-eyebrow, .legal-group-marker, .legal-nav-label, .legal-section-label { color: var(--ps-gold); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.legal-hero-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.legal-hero h1 { margin: 0.3rem 0 0.5rem; color: var(--ps-navy); font-size: clamp(2.65rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; }
.legal-hero-brand { color: var(--ps-teal); font-size: 1.15rem; font-weight: 800; }
.legal-print, .legal-email-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0.75rem 1rem; border: 1px solid var(--ps-navy); background: #ffffff; color: var(--ps-navy); cursor: pointer; font: inherit; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.legal-print:hover, .legal-email-button:hover { background: var(--ps-navy); color: #ffffff; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 2rem; margin: 2rem 0 1.5rem; }
.legal-meta dt { color: #68727c; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-meta dd { margin-top: 0.25rem; color: var(--ps-navy); font-weight: 800; }
.legal-lead { max-width: 850px; margin-top: 0.55rem; color: #344256; font-size: 1.02rem; line-height: 1.7; }
.legal-statutory { max-width: 900px; margin-top: 1.25rem; padding: 1rem 1.2rem; border-left: 3px solid var(--ps-teal); background: #eef9f8; color: var(--ps-navy); font-weight: 700; line-height: 1.65; }
.legal-layout { display: grid; grid-template-columns: minmax(220px, 27%) minmax(0, 73%); gap: clamp(2rem, 5vw, 5rem); padding-top: 56px; padding-bottom: 80px; }
.legal-contents { align-self: start; position: sticky; top: 6.5rem; }
.legal-contents-toggle { display: none; }
.legal-contents-nav { max-height: calc(100vh - 8rem); overflow: auto; padding-right: 0.5rem; }
.legal-nav-title { margin-bottom: 1rem; color: var(--ps-navy); font-size: 1.1rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-nav-label { margin: 1.25rem 0 0.4rem; color: var(--ps-teal); font-size: 0.66rem; }
.legal-nav-group { display: grid; gap: 0.12rem; }
.legal-nav-group a { display: grid; grid-template-columns: 2rem 1fr; gap: 0.3rem; padding: 0.38rem 0.45rem; border-left: 2px solid transparent; color: #52606d; font-size: 0.78rem; line-height: 1.35; }
.legal-nav-group a b { color: var(--ps-gold); font-size: 0.68rem; }
.legal-nav-group a:hover, .legal-nav-group a.is-active { border-left-color: var(--ps-teal); background: #eef9f8; color: var(--ps-navy); }
.legal-document { min-width: 0; max-width: 900px; }
.legal-section { position: relative; scroll-margin-top: 7rem; margin-bottom: 3.5rem; }
.legal-section-number { margin-bottom: 0.35rem; color: var(--ps-gold); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; }
.legal-section h2 { margin-bottom: 1.2rem; color: var(--ps-navy); font-size: clamp(1.55rem, 2.4vw, 2rem); font-weight: 800; line-height: 1.2; }
.legal-section h3 { color: var(--ps-navy); font-size: 1.15rem; }
.legal-section p, .legal-section address, .legal-acknowledgements, .legal-document-info { color: #293848; font-size: 1rem; line-height: 1.75; }
.legal-section p { margin-bottom: 1rem; }
.legal-section address { margin: -0.45rem 0 1rem; font-style: normal; }
.legal-section a, .legal-acknowledgements a { color: var(--ps-navy); font-weight: 800; text-decoration: underline; text-decoration-color: var(--ps-teal); text-underline-offset: 3px; }
.legal-emphasis, .legal-cancellation { padding: 2rem; border: 1px solid #cce9e6; border-left: 4px solid var(--ps-teal); background: #f0faf9; }
.legal-section-label { margin-bottom: 0.7rem; color: var(--ps-teal); }
.legal-payment-summary, .legal-cancellation-summary { margin: 1.5rem 0; padding: 1.3rem; border: 1px solid #d7e4e8; background: #ffffff; }
.legal-payment-summary { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.8rem; color: var(--ps-navy); text-align: center; }
.legal-payment-summary strong { font-size: 0.8rem; }
.legal-payment-summary span { color: var(--ps-gold); font-size: 1.5rem; font-weight: 900; }
.legal-payment-summary p { flex-basis: 100%; margin: 0; font-size: 0.9rem; }
.legal-cancellation-summary h3 { margin-bottom: 1rem; color: var(--ps-navy); font-size: 1.15rem; }
.legal-cancellation-summary dl { display: grid; gap: 0.65rem; margin: 0; }
.legal-cancellation-summary dl div { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; padding: 0.7rem 0; border-top: 1px solid #d7e4e8; }
.legal-cancellation-summary dt { color: var(--ps-teal); font-size: 0.74rem; font-weight: 900; }
.legal-cancellation-summary dd { color: #293848; line-height: 1.55; }
.legal-cancellation-summary p { margin: 1rem 0 0; font-size: 0.85rem; font-weight: 700; }
.legal-group-marker { margin: 0 0 1.5rem; padding-top: 1rem; border-top: 1px solid #dce5ea; color: var(--ps-teal); }
.legal-contact { padding: 2rem; background: #ffffff; border: 1px solid #dce5ea; }
.legal-cancellation-form { padding-top: 2rem; border-top: 1px solid #dce5ea; }
.legal-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.legal-form-grid label { display: grid; gap: 0.4rem; color: var(--ps-navy); font-size: 0.82rem; font-weight: 800; }
.legal-form-grid input, .legal-form-grid textarea { margin: 0; padding: 0.75rem; background: #ffffff; }
.legal-field-wide { grid-column: 1 / -1; }
.legal-acknowledgements { margin-top: 3rem; padding: 2rem; border-top: 3px solid var(--ps-gold); background: #ffffff; }
.legal-acknowledgements h2 { color: var(--ps-navy); font-size: 1.5rem; }
.legal-acknowledgements label { display: block; margin-top: 1rem; }
.legal-acknowledgements input { margin-right: 0.55rem; }
.legal-document-info { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #dce5ea; }
.legal-document-info dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem 2rem; margin: 1.25rem 0 2rem; }
.legal-document-info dt { color: #68727c; font-size: 0.78rem; font-weight: 800; }
.legal-document-info dd { color: var(--ps-navy); font-weight: 800; }
.legal-document-info p { font-size: 0.86rem; }
.legal-back-top { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 20; display: none; padding: 0.65rem 0.8rem; background: var(--ps-navy); color: #ffffff; font-size: 0.75rem; font-weight: 800; box-shadow: 0 5px 16px rgba(0,0,0,0.16); }
.legal-back-top.is-visible { display: block; }
.legal-footer a { color: #d5dde5; }
.legal-footer a:hover { color: #ffffff; }
.site-social { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.site-social-copy h2 { margin-bottom: 0.35rem; color: #ffffff; font-size: 0.92rem; font-weight: 800; }
.site-social-copy p { margin-bottom: 0.85rem; color: rgba(255, 255, 255, 0.72); font-size: 0.78rem; line-height: 1.5; }
.site-social-links { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.site-social-link { position: relative; display: inline-grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 50%; background: var(--ps-navy); color: #ffffff; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.site-social-link img { display: block; width: 20px; height: 20px; object-fit: contain; }
.site-social-facebook { background: #1877f2; }
.site-social-whatsapp { background: #25d366; }
.site-social-instagram { background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5 100%); }
.site-social-tiktok { background: #050505; }
.site-social-gumtree { background: #72b043; }
.site-social-link:hover, .site-social-link:focus-visible { border-color: var(--ps-gold); background: var(--ps-teal); color: #ffffff; box-shadow: 0 5px 14px rgba(20, 184, 166, 0.25); transform: translateY(-3px) scale(1.04); }
.site-social-link.is-placeholder { border-style: dashed; opacity: 0.78; }
.site-social-link::after { position: absolute; bottom: calc(100% + 0.45rem); left: 50%; z-index: 5; padding: 0.3rem 0.45rem; border-radius: 4px; background: #ffffff; color: var(--ps-navy); content: attr(title); font-size: 0.68rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 3px); transition: opacity 0.15s ease, transform 0.15s ease; white-space: nowrap; }
.site-social-link:hover::after, .site-social-link:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 640px) { .site-social-links { gap: 0.7rem; } .site-social-link { width: 42px; height: 42px; } }
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; padding-top: 28px; } .legal-contents { position: static; } .legal-contents-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 1rem; border: 1px solid #dce5ea; background: #ffffff; color: var(--ps-navy); font: inherit; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; } .legal-contents-nav { display: none; max-height: none; padding: 1rem; border: 1px solid #dce5ea; border-top: 0; background: #ffffff; } .legal-contents-nav.is-open { display: block; } .legal-nav-title { display: none; } }
@media (max-width: 640px) { .legal-container { width: calc(100% - 40px); } .legal-hero { padding: 40px 0; } .legal-hero-row { display: block; } .legal-hero h1 { font-size: clamp(2rem, 9vw, 2.35rem); } .legal-print { margin-top: 1.25rem; } .legal-meta { gap: 1rem 1.5rem; } .legal-section { margin-bottom: 2.7rem; } .legal-section p, .legal-section address, .legal-acknowledgements, .legal-document-info { font-size: 1rem; } .legal-emphasis, .legal-cancellation, .legal-contact, .legal-acknowledgements { padding: 1.25rem; } .legal-cancellation-summary dl div { grid-template-columns: 1fr; gap: 0.25rem; } .legal-form-grid, .legal-document-info dl { grid-template-columns: 1fr; } .legal-field-wide { grid-column: auto; } }
@media print { .legal-page .legal-site-nav, .legal-page .legal-contents, .legal-page .legal-print, .legal-page .legal-back-top, .legal-page .legal-footer, .legal-page .skip-to-content { display: none !important; } .legal-page, .legal-page .legal-hero, .legal-page .legal-section, .legal-page .legal-document-info { background: #ffffff !important; } .legal-page .legal-hero { padding: 0 0 1rem; } .legal-page .legal-layout { display: block; width: 100%; padding: 1rem 0; } .legal-page .legal-document { max-width: none; } .legal-page .legal-section { break-inside: avoid; margin-bottom: 1.5rem; } .legal-page .legal-section p, .legal-page .legal-section address { font-size: 10.5pt; line-height: 1.5; } .legal-page .legal-section h2 { font-size: 16pt; } .legal-page .legal-email-button { display: none; } .legal-page a { color: #000000 !important; text-decoration: none !important; } }

/* How It Works */
.how-it-works {
    padding: 32px 0 80px;
    background: #fafaf9;
}

.how-it-works-header {
    max-width: 560px;
    margin: 0 auto 3rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.step-card {
    position: relative;
    padding: 2rem 1.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(31, 58, 95, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
    border-color: var(--ps-teal);
    box-shadow: 0 20px 36px rgba(31, 58, 95, 0.14);
    transform: translateY(-4px);
}

.step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -1.65rem;
    color: var(--ps-teal);
    font-size: 1.3rem;
    font-weight: 700;
    transform: translateY(-50%);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--ps-navy);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.step-icon {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 1.1rem;
    fill: none;
    stroke: var(--ps-teal);
    stroke-width: 1.5;
}

.step-card h3 {
    margin-bottom: 0.6rem;
    color: var(--ps-navy);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.step-card p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-header {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.25rem 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 58, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 38px rgba(31, 58, 95, 0.14);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
    fill: var(--ps-teal);
    opacity: 0.35;
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: var(--ps-gold);
    font-size: 1.05rem;
    letter-spacing: 0.15em;
}

.testimonial-text {
    flex: 1;
    margin-bottom: 1.75rem;
    color: #374151;
    font-size: 1.02rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ps-navy);
    color: var(--ps-teal);
    font-size: 0.85rem;
    font-weight: 800;
}

.testimonial-name {
    color: var(--ps-navy);
    font-size: 0.95rem;
    font-weight: 800;
}

.testimonial-meta {
    color: #6b7280;
    font-size: 0.82rem;
}

.testimonials-disclaimer {
    color: #9ca3af;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 64px 0;
    background: var(--ps-navy);
}

.cta-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--ps-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cta-heading {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.cta-subtext {
    margin: 0 auto 2rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.25rem;
    border-radius: 10px;
    background: var(--ps-teal);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(20, 184, 166, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-primary:hover {
    background: #ffffff;
    color: var(--ps-navy);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ps-teal);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fafaf9;
}

.faq-header {
    max-width: 600px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 58, 95, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 1.75rem;
    border: 0;
    background: transparent;
    color: var(--ps-navy);
    cursor: pointer;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
}

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--ps-teal);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-view-all {
    text-align: center;
}

.faq-view-all-link {
    color: var(--ps-navy);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.faq-view-all-link:hover {
    color: var(--ps-teal);
}

.service-card-interactive {
    cursor: pointer;
    position: relative;
}

.service-card-interactive::after {
    content: 'View details';
    display: block;
    margin-top: 1.25rem;
    color: var(--ps-teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-interactive:focus-visible {
    outline: 3px solid var(--ps-teal);
    outline-offset: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.services-grid .service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--ps-teal);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(31, 58, 95, 0.08);
    transform: translateY(0);
}

.services-grid .service-card:nth-child(3n + 2) {
    border-top-color: var(--ps-gold);
}

.services-grid .service-card:nth-child(3n + 3) {
    border-top-color: var(--ps-navy);
}

.services-grid .service-card:hover {
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(31, 58, 95, 0.16);
    transform: translateY(-6px);
}

.services-grid .service-card-link {
    color: inherit;
    text-decoration: none;
}

.services-grid .service-visual {
    height: 178px;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
}

.service-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem 1.15rem;
}

.service-card-label {
    margin-bottom: 0.45rem;
    color: var(--ps-teal);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card-body h3 {
    margin-bottom: 0.45rem;
    color: var(--ps-navy);
    font-size: 1.15rem;
}

.service-card-body p {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 0.88rem;
    line-height: 1.55;
}

.service-card-interactive::after {
    display: none;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ps-navy);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
}

.service-card-cta span {
    color: var(--ps-teal);
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.service-card:hover .service-card-cta span {
    transform: translateX(4px);
}

/* Special services portal */
.special-services {
    padding: 96px 0 104px;
    background: #f5f8fa;
}

.special-services-container {
    width: min(92%, 1280px);
    margin-inline: auto;
}

.special-services-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.special-services-eyebrow {
    margin-bottom: 0.8rem;
    color: var(--ps-gold);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.special-services-heading h2 {
    margin-bottom: 1.25rem;
    color: var(--ps-navy);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.06;
}

.special-services-heading h2 em {
    color: var(--ps-teal);
    font-style: normal;
}

.special-services-heading > p:last-child {
    max-width: 650px;
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.75;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
}

.special-service-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe7ec;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(31, 58, 95, 0.09);
}

.special-service-media {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.special-service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.55rem 0.75rem;
    background: var(--ps-navy);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.special-service-emergency .special-service-badge {
    background: #b4232f;
}

.special-service-mould .special-service-badge {
    background: #2f7d59;
}

.special-service-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.7rem;
}

.special-service-body h3 {
    margin-bottom: 0.55rem;
    color: var(--ps-navy);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.special-service-body h3 span {
    color: var(--ps-teal);
}

.special-service-emergency h3 span {
    color: #b4232f;
}

.special-service-mould h3 span {
    color: #2f7d59;
}

.special-service-subtitle {
    min-height: 3rem;
    margin-bottom: 1.35rem;
    color: #5b6570;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-transform: uppercase;
}

.special-service-learn,
.special-service-continue {
    display: flex;
    min-height: 48px;
    margin-top: auto;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--ps-gold);
    color: var(--ps-navy);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.special-service-learn:hover,
.special-service-continue:hover {
    background: #e7b547;
    color: var(--ps-navy);
    transform: translateY(-2px);
}

.priority-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.requested-priority-label {
    margin-bottom: 0.45rem;
    color: var(--ps-navy);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.priority-review-note {
    margin: -0.25rem 0 1rem;
    color: #68727c;
    font-size: 0.72rem;
    line-height: 1.45;
}

.priority-option {
    display: grid;
    min-height: 58px;
    place-items: center;
    padding: 0.45rem 0.2rem;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    line-height: 1.15;
    transition: filter 0.2s ease, outline 0.2s ease, transform 0.2s ease;
}

.priority-option:hover,
.priority-option.is-selected {
    filter: brightness(0.88);
    outline: 3px solid rgba(31, 58, 95, 0.25);
    outline-offset: 2px;
    transform: translateY(-2px);
}

.priority-option strong { font-size: 0.8rem; }
.priority-option span { font-size: 0.65rem; font-weight: 700; }
.priority-critical { background: #b4232f; }
.priority-urgent { background: var(--ps-gold); color: var(--ps-navy); }
.priority-priority { background: #2d6fb7; }
.priority-standard { background: #68727c; }

.special-service-details {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 0.86rem;
    line-height: 1.65;
}

.special-service-details summary {
    display: inline-flex;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    color: var(--ps-navy);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    list-style: none;
    text-transform: uppercase;
}

.special-service-details summary::-webkit-details-marker { display: none; }
.special-service-details summary span { color: var(--ps-teal); }
.special-service-details p { margin: 0 0 0.4rem; }
.special-service-continue { display: none; }
.special-service-card.has-priority .special-service-continue { display: flex; }

.special-services-assistance {
    display: flex;
    margin-top: 2.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.8rem 2rem;
    border-left: 4px solid var(--ps-gold);
    background: var(--ps-navy);
    color: #ffffff;
}

.special-services-assistance strong { font-size: 1.1rem; }
.special-services-assistance p { margin-top: 0.35rem; color: rgba(255, 255, 255, 0.72); }
.special-services-assistance-actions { display: flex; align-items: center; gap: 1.5rem; }
.special-service-callback { color: var(--ps-gold); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.special-service-callback:hover { color: #ffffff; }
.special-services-assistance-actions > a:last-child { color: #ffffff; font-size: 0.8rem; line-height: 1.5; text-align: right; }
.special-services-assistance-actions > a:last-child strong { color: var(--ps-gold); font-size: 1.05rem; }

.modal-open {
    overflow: hidden;
}

.service-modal[hidden] {
    display: none;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 70, 0.76);
    animation: modal-fade-in 0.25s ease-out;
}

.service-modal-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: min(720px, calc(100vh - 2rem));
    overflow-y: auto;
    border-top: 5px solid var(--ps-gold);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 39, 70, 0.35);
    animation: modal-slide-up 0.3s ease-out;
}

.service-modal-content {
    padding: clamp(1.5rem, 4vw, 2.75rem);
}

.service-modal-image {
    display: block;
    width: calc(100% + clamp(3rem, 8vw, 5.5rem));
    height: 230px;
    margin: calc(clamp(1.5rem, 4vw, 2.75rem) * -1) calc(clamp(1.5rem, 4vw, 2.75rem) * -1) 1.75rem;
    object-fit: cover;
}

.service-modal-kicker {
    margin-bottom: 0.75rem;
    color: var(--ps-teal);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-modal-content h2 {
    margin-bottom: 0.75rem;
    color: var(--ps-navy);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.service-modal-description {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-modal-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 1.75rem 0;
}

.service-modal-columns h3 {
    margin-bottom: 0.75rem;
    color: var(--ps-navy);
    font-size: 1rem;
}

.service-modal-columns ul {
    display: grid;
    gap: 0.6rem;
    padding: 0;
    list-style: none;
}

.service-modal-columns li {
    position: relative;
    padding-left: 1.35rem;
    color: #4b5563;
    font-size: 0.92rem;
}

.service-modal-columns li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ps-teal);
    font-weight: 800;
}

.service-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: #edf9f7;
    color: var(--ps-navy);
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.service-modal-close:hover {
    background: var(--ps-teal);
    color: #ffffff;
}

.service-modal-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.service-modal-call {
    color: var(--ps-navy);
    font-weight: 700;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-slide-up {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
    .featured-service {
        padding-bottom: 2rem;
    }

    #services {
        padding-top: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .special-services { padding: 64px 0; }
    .special-services-container { width: min(92%, 520px); }
    .special-services-heading { margin-bottom: 2rem; }
    .special-services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .special-service-media { height: 220px; }
    .special-service-body { padding: 1.35rem; }
    .special-services-assistance { align-items: flex-start; flex-direction: column; padding: 1.5rem; }
    .special-services-assistance-actions { width: 100%; align-items: flex-start; flex-direction: column; gap: 0.8rem; }
    .special-services-assistance-actions > a:last-child { text-align: left; }

    .featured-service-grid {
        grid-template-columns: 1fr;
    }

    .featured-badge {
        left: 16px;
    }

    .featured-checklist {
        grid-template-columns: 1fr;
    }

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

    .service-modal-columns {
        grid-template-columns: 1fr;
    }

    .service-area {
        padding: 56px 0;
    }

    .why-primespring {
        padding: 56px 0 16px;
    }

    .service-area-grid {
        grid-template-columns: 1fr;
    }

    .area-visual-panel {
        padding: 1.5rem 1.25rem;
    }

    .area-map-wrap {
        max-width: 220px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1rem 0;
    }

    .trust-stat {
        padding: 0.5rem 0;
    }

    .trust-stat + .trust-stat::before {
        display: none;
    }

    .team-banner-wrap {
        padding: 16px 0 24px;
    }

    .team-banner {
        width: 100%;
        border-radius: 16px;
    }

    .how-it-works {
        padding: 24px 0 56px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step-card:not(:last-child)::after {
        content: '↓';
        top: auto;
        right: 50%;
        bottom: -1.9rem;
        transform: translateX(50%);
    }

    .testimonials,
    .faq-section {
        padding: 56px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 48px 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-question {
        padding: 1.25rem 1.25rem;
        font-size: 0.98rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .leadership-intro,
    .exec-team-section {
        padding: 40px 0;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .leadership-hero {
        min-height: 0;
    }

    .leadership-hero-bg {
        width: 100%;
        opacity: 0.25;
    }

    .leadership-hero-inner {
        max-width: 100%;
        padding: 2.5rem 0;
    }

    .leadership-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leadership-intro-icon-col {
        justify-content: center;
    }

    .leadership-intro-divider {
        display: none;
    }

    .leadership-intro-text {
        text-align: center;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-area-grid {
        grid-template-columns: 1fr;
    }

    .team-banner {
        width: 92%;
        border-radius: 20px;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2.5rem;
    }

    .step-card::after {
        content: none;
    }

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

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

    .leadership-hero-bg {
        width: 45%;
    }

    .leadership-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leadership-intro-icon-col {
        justify-content: center;
    }

    .leadership-intro-divider {
        display: none;
    }

    .leadership-intro-text {
        text-align: center;
    }
}

@media (min-width: 1025px) {
    .exec-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(15, 39, 70, 0.9) 0%, rgba(31, 58, 95, 0.78) 28%, rgba(31, 58, 95, 0.44) 48%, rgba(31, 58, 95, 0.16) 64%, rgba(31, 58, 95, 0.03) 78%, transparent 100%), url('../img/home-hero.png') !important;
    background-size: cover;
    background-position: center 44%;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 4.5rem 0 5.5rem;
}

.hero-copy {
    width: min(520px, 100%);
    text-align: left;
}

.hero-eyebrow {
    color: var(--ps-teal) !important;
    letter-spacing: 0.12em;
}

.hero-title {
    display: grid;
    color: #ffffff;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.hero-title span:last-child {
    color: #ffffff;
}

.hero-rule {
    display: block;
    width: 58px;
    height: 4px;
    margin-bottom: 1.25rem;
    background: var(--ps-teal);
}

.hero-description {
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.75;
}

.hero-actions a,
.hero-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 48px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-primary {
    background: var(--ps-gold) !important;
    color: var(--ps-navy) !important;
    box-shadow: 0 8px 18px rgba(201, 149, 46, 0.18);
}

.hero-primary:hover {
    background: #e7b547 !important;
    color: var(--ps-navy) !important;
    transform: translateY(-2px);
}

.hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    backdrop-filter: blur(2px);
}

.hero-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--ps-navy) !important;
    transform: translateY(-2px);
}

.hero-call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.callback-modal[hidden] {
    display: none;
}

.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.callback-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 70, 0.72);
}

.callback-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border-top: 5px solid var(--ps-gold);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 39, 70, 0.35);
}

.callback-modal-content {
    padding: clamp(1.4rem, 3vw, 2.25rem);
}

.callback-modal-kicker {
    margin-bottom: 0.75rem;
    color: var(--ps-teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.callback-modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--ps-navy);
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
}

.callback-modal-intro {
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.callback-form-grid {
    display: grid;
    gap: 1rem;
}

.callback-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.callback-field-full {
    grid-column: 1 / -1;
}

.callback-field label {
    color: var(--ps-navy);
    font-size: 0.82rem;
    font-weight: 700;
}

.callback-field label span {
    color: #d9534f;
}

.callback-field input,
.callback-field select,
.callback-field textarea {
    width: 100%;
    padding: 0.78rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ps-navy);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-field input:focus,
.callback-field select:focus,
.callback-field textarea:focus {
    outline: none;
    border-color: var(--ps-teal);
    box-shadow: 0 0 0 3px rgba(18, 168, 158, 0.12);
}

.callback-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.95rem 1.25rem;
    border: 0;
    border-radius: 10px;
    background: var(--ps-gold);
    color: var(--ps-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.callback-submit:hover {
    background: #e7b547;
    transform: translateY(-1px);
}

.callback-privacy {
    margin-top: 0.9rem;
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
}

.callback-success {
    padding: 1.5rem 1rem 0.25rem;
    color: var(--ps-navy);
    font-size: 1rem;
    line-height: 1.7;
}

.callback-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: #edf9f7;
    color: var(--ps-navy);
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.callback-modal-close:hover {
    background: var(--ps-gold);
    color: var(--ps-navy);
}

@media (max-width: 640px) {
    .hero-actions {
        align-items: stretch;
    }

    .hero-actions a,
    .hero-actions button,
    .hero-call-link {
        width: 100%;
    }
}

#services {
    position: relative;
    z-index: 2;
    background: #ffffff;
}

#services .services-grid {
    margin-top: -1rem;
}

@media (min-width: 641px) {
    .service-area {
        padding-top: 2rem;
    }

    .service-area-grid {
        align-items: start;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 590px;
        background-image: linear-gradient(90deg, rgba(15, 39, 70, 0.86) 0%, rgba(31, 58, 95, 0.66) 42%, rgba(31, 58, 95, 0.2) 74%, rgba(31, 58, 95, 0.03) 100%), url('../img/home-hero.png') !important;
        background-position: 58% center;
    }

    .hero-content {
        padding: 3.5rem 0 4rem;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }
}

/* PrimeWash specialist services */
.primewash-container {
    width: min(92%, 1280px);
    margin: 0 auto;
}

.primewash-hero {
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    height: 650px;
    min-height: 650px;
    overflow: hidden;
    background: #ffffff;
}

.primewash-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem clamp(2rem, 5vw, 5.5rem);
}

.primewash-kicker {
    margin-bottom: 0.8rem;
    color: var(--ps-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.primewash-hero h1,
.primewash-cta h2 {
    margin-bottom: 1rem;
    color: var(--ps-navy);
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: uppercase;
}

.primewash-hero h1 span {
    color: var(--ps-teal);
}

.primewash-heading {
    max-width: 510px;
    margin-bottom: 1rem;
    color: var(--ps-navy);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.55;
    text-transform: uppercase;
}

.primewash-tagline {
    margin-bottom: 1.15rem;
    color: var(--ps-gold);
    font-size: 1.3rem;
    font-weight: 800;
}

.primewash-intro {
    max-width: 590px;
    color: #344256;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.8;
}

.primewash-actions,
.primewash-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.primewash-primary,
.primewash-secondary,
.primewash-cta-callback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.primewash-primary {
    background: var(--ps-gold);
    color: var(--ps-navy);
}

.primewash-primary:hover {
    background: #e7b547;
    color: var(--ps-navy);
    transform: translateY(-2px);
}

.primewash-secondary {
    border-color: var(--ps-navy);
    background: #ffffff;
    color: var(--ps-navy);
    cursor: pointer;
}

.primewash-secondary:hover {
    background: var(--ps-navy);
    color: #ffffff;
    transform: translateY(-2px);
}

.primewash-hero-media {
    position: relative;
    height: 650px;
    overflow: hidden;
    isolation: isolate;
    min-height: 0;
}

.primewash-hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.primewash-photo-badge {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--ps-gold);
    background: rgba(15, 39, 70, 0.93);
    color: #ffffff;
}

.primewash-photo-badge strong {
    color: var(--ps-gold);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.primewash-photo-badge span {
    font-size: 0.9rem;
}

.primewash-services {
    padding: 88px 0 84px;
    background: #f4f8fa;
}

.primewash-section-heading {
    max-width: 820px;
    margin-bottom: 2.5rem;
}

.primewash-section-heading h2 {
    color: var(--ps-navy);
    font-size: clamp(2.1rem, 3.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
}

.primewash-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.primewash-service-card {
    min-height: 220px;
    padding: 1.5rem;
    border: 1px solid #e2e8ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 58, 95, 0.06);
}

.primewash-icon {
    display: inline-flex;
    margin-bottom: 1.25rem;
    padding-bottom: 0.45rem;
    border-bottom: 3px solid var(--ps-gold);
    color: var(--ps-navy);
}

/* Social Footer Section */
.site-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-social-copy h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.site-social-copy p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.site-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.site-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.site-social-link img {
    width: 40px;
    height: 40px;
    display: block;
}

.site-social-link:hover {
    background: var(--ps-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

.site-social-link.is-primary {
    width: 56px;
    height: 56px;
    background: var(--ps-teal);
    box-shadow: 0 8px 16px rgba(20, 184, 166, 0.25);
}

.site-social-link.is-primary:hover {
    background: #0d9488;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(20, 184, 166, 0.4);
}

.site-social-link.is-primary img {
    width: 44px;
    height: 44px;
}

.site-social-link.is-coming-soon {
    background: rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    opacity: 0.7;
}

.site-social-link.is-coming-soon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.site-social-link.is-coming-soon .coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 58, 95, 0.85);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    padding: 0.3rem;
    line-height: 1.2;
    color: #ffffff;
}

/* Tooltip on hover */
.site-social-link[title]::after {
    content: attr(title);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ps-navy);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
    margin-top: 0.5rem;
}

.site-social-link:hover[title]::after {
    opacity: 1;
}

/* Responsive Design for Social Footer */
@media (max-width: 768px) {
    .site-social-links {
        gap: 1rem;
        justify-content: flex-start;
    }

    .site-social-link {
        width: 44px;
        height: 44px;
    }

    .site-social-link img {
        width: 36px;
        height: 36px;
    }

    .site-social-link.is-primary {
        width: 52px;
        height: 52px;
    }

    .site-social-link.is-primary img {
        width: 40px;
        height: 40px;
    }

    .site-social-copy h2 {
        font-size: 1.1rem;
    }

    .site-social-copy p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .site-social {
        padding-top: 1.5rem;
    }

    .site-social-copy h2 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .site-social-copy p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .site-social-links {
        gap: 0.8rem;
    }

    .site-social-link {
        width: 40px;
        height: 40px;
    }

    .site-social-link img {
        width: 32px;
        height: 32px;
    }

    .site-social-link.is-primary {
        width: 48px;
        height: 48px;
    }

    .site-social-link.is-primary img {
        width: 36px;
        height: 36px;
    }
}
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.primewash-service-card h3,
.primewash-benefit-grid h3 {
    margin-bottom: 0.65rem;
    color: var(--ps-navy);
    font-size: 1.05rem;
    font-weight: 800;
}

.primewash-service-card p,
.primewash-benefit-grid p {
    color: #3e4c60;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.7;
}

.primewash-benefits {
    padding: 72px 0;
    background: var(--ps-navy);
}

.primewash-section-heading-light h2 {
    color: #ffffff;
}

.primewash-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.primewash-benefit-grid article {
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.primewash-benefit-grid article:last-child {
    border-right: 0;
}

.primewash-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    border: 1px solid var(--ps-gold);
    border-radius: 50%;
    color: var(--ps-gold);
    font-size: 1.25rem;
    font-weight: 700;
}

.primewash-benefit-grid h3 {
    color: #ffffff;
}

.primewash-benefit-grid p {
    color: rgba(255, 255, 255, 0.88);
}

.primewash-cta {
    padding: 68px 0;
    background: #0a1e35;
}

.primewash-cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    align-items: center;
    gap: 3rem;
}

.primewash-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.primewash-cta > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.primewash-cta-actions {
    display: grid;
    margin-top: 0;
}

.primewash-cta-callback {
    border-color: rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.primewash-cta-callback:hover {
    background: #ffffff;
    color: var(--ps-navy);
}

.primewash-cta-actions small {
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

@media (max-width: 1024px) {
    .primewash-hero { grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); }
    .primewash-hero-copy { padding: 4rem 2.5rem; }
    .primewash-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .primewash-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2rem; }
    .primewash-benefit-grid article:nth-child(2) { border-right: 0; }
    .primewash-cta-grid { grid-template-columns: 1fr 1fr; }
    .primewash-cta-actions { grid-column: 1 / -1; justify-self: start; grid-template-columns: auto auto; align-items: center; }
}

@media (max-width: 640px) {
    .primewash-hero { height: auto; min-height: 0; grid-template-columns: 1fr; }
    .primewash-hero-copy { padding: 3.5rem 1.5rem; }
    .primewash-hero-media { height: 390px; min-height: 390px; }
    .primewash-photo-badge { right: 1rem; bottom: 1rem; left: 1rem; }
    .primewash-actions { display: grid; }
    .primewash-primary, .primewash-secondary { width: 100%; }
    .primewash-services, .primewash-benefits, .primewash-cta { padding: 56px 0; }
    .primewash-service-grid, .primewash-benefit-grid, .primewash-cta-grid { grid-template-columns: 1fr; }
    .primewash-service-card { min-height: 0; }
    .primewash-benefit-grid article, .primewash-benefit-grid article:nth-child(2) { padding: 0 0 1.5rem; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
    .primewash-benefit-grid article:last-child { padding-bottom: 0; border-bottom: 0; }
    .primewash-cta-actions { grid-column: auto; justify-self: stretch; grid-template-columns: 1fr; }
    .primewash-cta-actions small { text-align: left; }
}

/* Upcoming expansion page */
.expansion-container {
    width: min(1400px, calc(100% - 80px));
    margin-inline: auto;
}

.expansion-hero {
    padding: 96px 0 88px;
    background: var(--ps-navy);
    color: #ffffff;
}

.expansion-hero .section-eyebrow,
.expansion-heading .section-eyebrow,
.expansion-cta .section-eyebrow {
    color: var(--ps-gold);
}

.expansion-hero h1 {
    max-width: 1120px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.04;
}

.expansion-hero-subtitle {
    margin-bottom: 1.15rem;
    color: var(--ps-teal);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
}

.expansion-intro {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.expansion-divisions {
    padding: 76px 0 88px;
    background: #f5f8fa;
}

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

.expansion-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(31, 58, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expansion-card:hover {
    box-shadow: 0 18px 36px rgba(31, 58, 95, 0.16);
    transform: translateY(-4px);
}

.expansion-card > img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.expansion-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.7rem;
}

.expansion-card-label {
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.3rem 0.55rem;
    border-left: 3px solid var(--ps-gold);
    background: #f7fafb;
    color: var(--ps-navy);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.expansion-card h3 {
    margin-bottom: 0.55rem;
    color: var(--ps-navy);
    font-size: 1.45rem;
    font-weight: 800;
}

.expansion-card-subtitle {
    margin-bottom: 1rem;
    color: var(--ps-teal);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.5;
}

.expansion-card-content > p:last-child {
    color: #4b5563;
    font-size: 0.94rem;
    line-height: 1.7;
}

.expansion-approach {
    padding: 96px 0 104px;
    background: #ffffff;
}

.expansion-heading {
    margin-bottom: 2.5rem;
}

.expansion-heading h2,
.expansion-cta h2 {
    color: var(--ps-navy);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
}

.expansion-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    margin: 0 0 3.5rem;
    padding: 0;
    list-style: none;
}

.expansion-steps::before {
    position: absolute;
    top: 63px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: var(--ps-gold);
    content: '';
}

.expansion-steps li {
    position: relative;
    z-index: 1;
    text-align: center;
}

.expansion-step-marker {
    position: relative;
    display: flex;
    width: 128px;
    height: 128px;
    margin: 0 auto 1.4rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 149, 46, 0.55);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 10px #ffffff, 0 8px 22px rgba(31, 58, 95, 0.1);
}

.expansion-step-marker svg {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: var(--ps-teal);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.expansion-step-marker span {
    position: absolute;
    top: -0.35rem;
    right: -0.3rem;
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    border-radius: 50%;
    background: var(--ps-gold);
    color: var(--ps-navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.expansion-steps strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ps-navy);
    font-size: 1.45rem;
}

.expansion-steps p {
    max-width: 270px;
    margin: 0 auto;
    color: #5b6570;
    font-size: 0.96rem;
    line-height: 1.65;
}

.expansion-approach-copy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.8rem 2rem;
    border: 1px solid #dbe6eb;
    border-top: 3px solid var(--ps-teal);
    background: #f5f8fa;
    color: #4b5563;
    line-height: 1.75;
}

.expansion-approach-copy strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ps-navy);
    font-size: 1.25rem;
}

.expansion-standard {
    padding: 104px 0 112px;
    background: var(--ps-navy);
    color: #ffffff;
}

.expansion-standard .expansion-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
}

.expansion-standard-intro .section-eyebrow {
    color: var(--ps-gold);
}

.expansion-standard-intro h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
}

.expansion-standard-intro h3 {
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
}

.expansion-standard-intro > p:last-child {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
}

.expansion-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    background: transparent;
}

.expansion-standard-grid article {
    min-height: 260px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #28486c;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.expansion-standard-grid article:hover {
    border-color: rgba(201, 149, 46, 0.75);
    background: #2d5279;
    transform: translateY(-5px);
}

.standard-card-icon {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1.3rem;
    color: var(--ps-gold);
}

.standard-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform 0.25s ease;
}

.expansion-standard-grid article:hover .standard-card-icon svg {
    transform: translateY(-2px) scale(1.06);
}

.expansion-standard-grid span {
    color: var(--ps-gold);
}

.expansion-standard-grid h3 {
    margin-bottom: 0.7rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
}

.expansion-standard-grid p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.65;
}

.expansion-cta {
    padding: 72px 0;
    background: #0a1e35;
}

.expansion-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.expansion-cta h2 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.expansion-cta p:not(.section-eyebrow) {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.expansion-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.expansion-cta-primary,
.expansion-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.expansion-cta-primary { background: var(--ps-gold); color: var(--ps-navy); }
.expansion-cta-primary:hover { background: #e7b547; color: var(--ps-navy); transform: translateY(-2px); }
.expansion-cta-secondary { border-color: rgba(255, 255, 255, 0.85); color: #ffffff; }
.expansion-cta-secondary:hover { background: #ffffff; color: var(--ps-navy); }

@media (max-width: 1024px) {
    .expansion-container { width: calc(100% - 48px); }
    .expansion-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .expansion-card:last-child { grid-column: 1 / -1; width: calc(50% - 1rem); justify-self: center; }
    .expansion-standard .expansion-container { grid-template-columns: 1fr; }
    .expansion-cta-content { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .expansion-container { width: calc(100% - 40px); }
    .expansion-hero, .expansion-divisions, .expansion-approach, .expansion-standard, .expansion-cta { padding: 56px 0; }
    .expansion-card-grid, .expansion-steps, .expansion-standard-grid { grid-template-columns: 1fr; }
    .expansion-card:last-child { grid-column: auto; width: auto; }
    .expansion-card > img { height: 210px; }
    .expansion-steps { gap: 2.5rem; }
    .expansion-steps::before { top: 10%; right: auto; bottom: 10%; left: calc(50% - 1px); width: 2px; height: auto; }
    .expansion-step-marker { box-shadow: 0 0 0 8px #ffffff, 0 8px 22px rgba(31, 58, 95, 0.1); }
    .expansion-approach-copy { padding: 1.4rem 1.25rem; }
    .expansion-cta-actions { width: 100%; flex-direction: column; }
    .expansion-cta-primary, .expansion-cta-secondary { width: 100%; }
}
