.homepage-shell {
        padding: 104px 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    @supports (overflow: clip) {
        .homepage-shell {
            overflow-x: clip;
        }
    }

    .homepage-shell.is-light {
        background: var(--psfm-surface);
    }

    .homepage-shell.is-dark {
        background: linear-gradient(135deg, #0a1628 0%, #10233f 100%);
        color: #fff;
    }

    .homepage-shell.is-dark .site-title,
    .homepage-shell.is-dark .site-title-tagline,
    .homepage-shell.is-dark p,
    .homepage-shell.is-dark h3,
    .homepage-shell.is-dark h4 {
        color: #fff;
    }

    .homepage-section-intro {
        max-width: 760px;
        margin-bottom: 44px;
        min-width: 0;
    }

    .homepage-hero {
        position: relative;
        overflow: hidden;
        background-image: linear-gradient(115deg, rgba(8, 20, 38, 0.92), rgba(16, 40, 74, 0.78)), url('{{ $heroBackgroundOptimized ?? $heroBackground }}');
        background-size: cover;
        background-position: center 42%;
        color: #fff;
        padding: clamp(74px, 7vw, 96px) 0 clamp(60px, 5.5vw, 76px);
    }

    .homepage-hero::after {
        content: "";
        position: absolute;
        inset: auto auto -120px -80px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(226, 31, 38, 0.18), transparent 70%);
    }

    .homepage-hero > .container {
        position: relative;
        z-index: 1;
    }

    .hero-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
        gap: clamp(24px, 3vw, 42px);
        align-items: center;
        min-width: 0;
    }

    .hero-copy {
        max-width: 780px;
        min-width: 0;
    }

    .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .hero-copy h1 {
        color: #fff;
        font-size: clamp(2.35rem, 3.25vw, 3.45rem);
        line-height: 1.06;
        max-width: 720px;
        margin: 16px 0 12px;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .hero-copy p {
        color: rgba(255, 255, 255, 0.86);
        font-size: 1.04rem;
        line-height: 1.72;
        max-width: 610px;
        overflow-wrap: anywhere;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
        max-width: 100%;
    }

    .hero-actions .theme-btn,
    .hero-actions .theme-btn-white {
        min-width: 184px;
    }

    .homepage-hero .hero-actions .theme-btn-white {
        background: #fff;
        border-color: #fff;
        color: var(--psfm-ink);
    }

    .homepage-hero .hero-actions .theme-btn-white:hover {
        background: var(--psfm-red);
        border-color: var(--psfm-red);
        color: #fff;
    }

    .hero-signal-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-top: 24px;
    }

    .hero-signal-card {
        min-height: 100%;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-signal-card strong {
        display: block;
        margin-bottom: 8px;
        color: #fff;
        font-size: 0.96rem;
    }

    .hero-signal-card span {
        display: block;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero-aside {
        position: relative;
        min-width: 0;
    }

    .hero-panel {
        height: auto;
        padding: clamp(22px, 2.2vw, 28px);
        border-radius: var(--psfm-radius-xl);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--psfm-shadow-strong);
        backdrop-filter: blur(14px);
        box-sizing: border-box;
    }

    .hero-panel-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .hero-panel-title {
        color: #fff;
        font-size: clamp(1.55rem, 1.8vw, 2rem);
        line-height: 1.18;
        margin-bottom: 14px;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .hero-panel p {
        color: rgba(255, 255, 255, 0.82);
        margin-bottom: 20px;
    }

    .hero-panel-list {
        display: grid;
        gap: 12px;
        margin: 0 0 28px;
        padding: 0;
        list-style: none;
    }

    .hero-panel-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.6;
    }

    .hero-panel-list i,
    .hero-quick-links i {
        color: var(--psfm-gold);
        margin-top: 4px;
    }

    .hero-quick-links {
        display: grid;
        gap: 14px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero-quick-links a,
    .hero-quick-links span {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #fff;
        font-weight: 600;
    }

    .homepage-proof-strip {
        position: relative;
        padding: clamp(30px, 3.5vw, 46px) 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border-bottom: 1px solid rgba(16, 32, 56, 0.08);
        max-width: 100%;
        overflow-x: hidden;
    }

    .proof-signal-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 18px;
    }

    .proof-signal-card {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        min-width: 0;
        min-height: 100%;
        padding: 18px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--psfm-line);
        box-shadow: 0 14px 34px rgba(10, 22, 40, 0.06);
    }

    .proof-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(226, 31, 38, 0.1);
        color: var(--psfm-red);
    }

    .proof-signal-card strong {
        display: block;
        color: var(--psfm-ink);
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .proof-signal-card span {
        display: block;
        color: var(--psfm-muted);
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .proof-metric-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .proof-metric-card {
        padding: 18px 16px;
        border-radius: 18px;
        background: linear-gradient(135deg, #0a1628, #10233f);
        color: #fff;
        box-shadow: 0 16px 36px rgba(10, 22, 40, 0.12);
        min-width: 0;
    }

    .proof-metric-card strong {
        display: block;
        color: #fff;
        font-size: clamp(1.5rem, 2vw, 2.05rem);
        line-height: 1;
        margin-bottom: 8px;
    }

    .proof-metric-card span {
        display: block;
        color: #e2e8f0;
        font-weight: 700;
        line-height: 1.35;
    }

    .proof-logo-showcase {
        margin-top: 22px;
        padding-top: 22px;
    }

    .pillar-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .pillar-card,
    .trust-card,
    .industry-card,
    .capability-card,
    .metric-card,
    .testimonial-card,
    .process-step {
        background: #fff;
        border: 1px solid var(--psfm-line);
        border-radius: var(--psfm-radius-lg);
        box-shadow: var(--psfm-shadow-soft);
    }

    .pillar-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

.pillar-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.08), rgba(10, 22, 40, 0.22));
}

.pillar-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

    .pillar-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 22, 40, 0.04), rgba(10, 22, 40, 0.22));
        pointer-events: none;
    }

    .pillar-body {
        padding: 24px 24px 8px;
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .pillar-card:hover,
    .trust-card:hover,
    .capability-card:hover,
    .industry-card:hover,
    .metric-card:hover,
    .testimonial-card:hover,
    .process-step:hover {
        transform: translateY(-4px);
        box-shadow: var(--psfm-shadow-strong);
        border-color: rgba(226, 31, 38, 0.18);
    }

    .pillar-card:hover .pillar-media img {
        transform: scale(1.04);
    }

    .pillar-icon,
    .trust-icon,
    .capability-icon {
        width: 58px;
        height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        background: linear-gradient(145deg, rgba(226, 31, 38, 0.12), rgba(10, 22, 40, 0.08));
        color: var(--psfm-red);
        font-size: 1.45rem;
        margin-bottom: 18px;
    }

    .pillar-card h3,
    .trust-card h3,
    .industry-card h3,
    .capability-card h3,
    .testimonial-card h3 {
        color: var(--psfm-ink);
        font-size: 1.16rem;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .pillar-card p,
    .trust-card p,
    .industry-card p,
    .capability-card p,
    .testimonial-card p,
    .metric-card p,
    .process-step p {
        color: var(--psfm-muted);
        margin-bottom: 0;
        line-height: 1.68;
    }

    .pillar-card p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .pillar-actions {
        margin-top: auto;
        padding: 16px 24px 22px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-top: 1px solid rgba(16, 32, 56, 0.08);
        font-size: 0.9rem;
        font-weight: 700;
    }

    .pillar-actions a {
        color: var(--psfm-red);
    }

    .pillar-actions a:first-child {
        color: var(--psfm-ink);
    }

    .pillar-actions a:hover {
        color: var(--psfm-red-dark);
    }

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

    .trust-card {
        height: 100%;
        padding: 26px 24px;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px;
    }

    .industry-card {
        height: 100%;
        padding: 24px 22px;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    .industry-card .industry-icon {
        color: var(--psfm-gold);
        font-size: 1.45rem;
        margin-bottom: 16px;
    }

    .industry-card p {
        color: rgba(255, 255, 255, 0.78);
    }

    .capability-layout {
        display: grid;
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
        gap: 28px;
        align-items: start;
    }

    .capability-intro {
        padding: 34px;
        border-radius: var(--psfm-radius-xl);
        background: linear-gradient(180deg, #f8fafc, #eef3fa);
        border: 1px solid var(--psfm-line);
        box-shadow: var(--psfm-shadow-soft);
        position: sticky;
        top: 120px;
    }

    .capability-stack {
        display: grid;
        gap: 18px;
    }

    .capability-card {
        padding: 24px 24px 24px 22px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .process-step {
        position: relative;
        padding: 28px 24px 24px;
        overflow: hidden;
    }

    .process-step::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--psfm-red), var(--psfm-navy-soft));
    }

    .process-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--psfm-ink);
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .metric-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .metric-card {
        padding: 28px 20px;
        text-align: center;
    }

    .metric-card strong {
        display: block;
        font-size: clamp(2rem, 3vw, 2.8rem);
        line-height: 1;
        color: var(--psfm-ink);
        margin-bottom: 12px;
    }

    .logo-showcase {
        display: grid;
        grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
        gap: 24px;
        margin-top: 42px;
        padding-top: 36px;
        border-top: 1px solid rgba(16, 32, 56, 0.08);
        align-items: stretch;
        max-width: 100%;
        overflow-x: hidden;
    }

    .logo-showcase > * {
        min-width: 0;
    }

    .logo-showcase-intro {
        padding: 30px;
        border-radius: var(--psfm-radius-xl);
        background: linear-gradient(180deg, #f8fafc, #eef3fa);
        border: 1px solid var(--psfm-line);
        box-shadow: var(--psfm-shadow-soft);
    }

    .logo-showcase-intro h3 {
        margin-bottom: 14px;
        color: var(--psfm-ink);
        font-size: clamp(1.45rem, 2vw, 2rem);
    }

    .logo-showcase-intro p {
        color: var(--psfm-muted);
        margin-bottom: 0;
        line-height: 1.75;
    }

    .partner-band {
        padding: 22px;
        border-radius: var(--psfm-radius-xl);
        background: linear-gradient(180deg, #ffffff, #f7f9fc);
        border: 1px solid var(--psfm-line);
        box-shadow: var(--psfm-shadow-soft);
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    .partner-slider {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .partner-slider .owl-stage-outer {
        max-width: 100%;
        overflow-x: hidden !important;
    }

    @supports (overflow: clip) {
        .logo-showcase,
        .partner-band {
            overflow-x: clip;
        }
    }

    .partner-logo-item {
        min-height: 128px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 20px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid rgba(16, 32, 56, 0.08);
        box-shadow: 0 12px 32px rgba(9, 21, 38, 0.05);
    }

    .partner-logo-item img {
        max-height: 54px;
        width: auto;
        max-width: 100%;
        filter: none;
        opacity: 1;
        transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    }

    .partner-logo-item:hover img {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.02);
    }

    .client-visibility-review-bridge {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 18px;
        margin-top: 18px;
        padding: 18px;
        border-radius: 20px;
        background:
            radial-gradient(circle at right center, rgba(226, 31, 38, 0.22), transparent 34%),
            linear-gradient(135deg, var(--psfm-navy), #132844);
        color: #fff;
    }

    .client-visibility-review-bridge .site-title-tagline {
        color: #fff;
        margin-bottom: 6px;
    }

    .client-visibility-review-bridge h4 {
        margin: 0 0 7px;
        color: #fff;
        font-size: clamp(1rem, 1.45vw, 1.22rem);
        line-height: 1.25;
    }

    .client-visibility-review-bridge p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .client-visibility-review-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
        min-width: 260px;
    }

    .client-visibility-review-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 38px;
        padding: 9px 13px;
        border-radius: 999px;
        background: var(--psfm-red);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 900;
        white-space: nowrap;
    }

    .client-visibility-review-actions a:hover {
        background: var(--psfm-red-dark);
        color: #fff;
    }

    .testimonial-card {
        padding: 30px 26px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        min-height: 100%;
    }

    .testimonial-head {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .testimonial-card img {
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid rgba(226, 31, 38, 0.1);
    }

    .testimonial-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .testimonial-meta strong {
        color: var(--psfm-ink);
        line-height: 1.35;
    }

    .testimonial-quote {
        font-size: 2rem;
        line-height: 1;
        color: rgba(226, 31, 38, 0.2);
        margin-bottom: -6px;
    }

    .testimonial-role {
        display: inline-flex;
        align-items: center;
        align-self: flex-start;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(16, 32, 56, 0.06);
        color: var(--psfm-muted);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.03em;
    }

    .testimonial-card p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    .testimonial-carousel .owl-stage {
        display: flex;
    }

    .testimonial-carousel .owl-item {
        display: flex;
        height: auto;
    }

    .testimonial-carousel .testimonial-card {
        width: 100%;
        margin: 8px 0 14px;
    }

    .testimonial-carousel .owl-dots {
        margin-top: 12px;
        text-align: center;
    }

    .testimonial-carousel .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px;
        background: rgba(16, 32, 56, 0.16);
    }

    .testimonial-carousel .owl-dot.active span,
    .testimonial-carousel .owl-dot:hover span {
        background: var(--psfm-red);
    }

    .service-highlight-slider .owl-stage {
        display: flex;
    }

    .service-highlight-slider .owl-item {
        display: flex;
        height: auto;
    }

    .service-highlight-slider .pillar-card {
        width: 100%;
        margin: 8px 0 14px;
    }

    .service-highlight-slider .owl-stage-outer,
    .testimonial-carousel .owl-stage-outer {
        max-width: 100%;
        overflow-x: hidden;
        padding-bottom: 4px;
    }

    .service-highlight-slider,
    .testimonial-carousel,
    .partner-slider,
    .service-highlight-slider .owl-item,
    .testimonial-carousel .owl-item,
    .partner-slider .owl-item {
        max-width: 100%;
    }

    .service-highlight-slider .owl-dots {
        margin-top: 16px;
        text-align: center;
    }

    .service-highlight-slider .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px;
        background: rgba(16, 32, 56, 0.16);
    }

    .service-highlight-slider .owl-dot.active span,
    .service-highlight-slider .owl-dot:hover span {
        background: var(--psfm-red);
    }

    .cta-banner {
        padding: 46px;
        border-radius: var(--psfm-radius-xl);
        background: linear-gradient(135deg, #0a1628 0%, #10233f 100%);
        box-shadow: var(--psfm-shadow-strong);
        color: #fff;
    }

    .cta-banner h2,
    .cta-banner p {
        color: #fff;
    }

    .cta-banner .hero-actions {
        margin-top: 0;
        justify-content: flex-end;
    }

    html[dir="rtl"] .hero-copy {
        order: 2;
    }

    html[dir="rtl"] .hero-aside {
        order: 1;
    }

    html[dir="rtl"] .pillar-actions,
    html[dir="rtl"] .homepage-location-row,
    html[dir="rtl"] .testimonial-card,
    html[dir="rtl"] .metric-card {
        text-align: right;
    }

    html[dir="rtl"] .testimonial-head {
        flex-direction: row-reverse;
    }

    html[dir="rtl"] .testimonial-role {
        align-self: flex-end;
    }

    .homepage-location-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 22px;
    }

    .homepage-location-row a,
    .homepage-location-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(16, 32, 56, 0.06);
        color: var(--psfm-ink);
        font-weight: 600;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .homepage-location-chip.is-static {
        background: rgba(226, 31, 38, 0.08);
        color: var(--psfm-ink);
        cursor: default;
    }

    .homepage-location-row a:hover {
        color: var(--psfm-red);
    }

    .city-coverage-panel {
        padding: clamp(24px, 3vw, 34px);
        border-radius: 28px;
        background: #fff;
        border: 1px solid rgba(10, 22, 40, 0.08);
        box-shadow: 0 22px 50px rgba(10, 22, 40, 0.07);
    }

    .city-coverage-panel .homepage-location-row {
        margin-top: 0;
    }

    .homepage-shell.is-compact {
        padding: clamp(44px, 5vw, 64px) 0;
    }

    .mid-cta-card {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.65fr) minmax(260px, 0.7fr);
        align-items: center;
        gap: clamp(20px, 2.6vw, 34px);
        padding: clamp(26px, 3.4vw, 40px);
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(226, 31, 38, 0.2), transparent 34%),
            linear-gradient(135deg, #0a1628 0%, #10233f 100%);
        color: #fff;
        box-shadow: 0 26px 58px rgba(10, 22, 40, 0.2);
        overflow: hidden;
    }

    .mid-cta-copy h2 {
        color: #fff;
        font-size: clamp(1.55rem, 2vw, 2.1rem);
        line-height: 1.16;
        margin-bottom: 12px;
    }

    .mid-cta-copy p {
        color: #e2e8f0;
        margin-bottom: 0;
        line-height: 1.7;
    }

    .mid-cta-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mid-cta-chips span {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 9px 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: #fff;
        font-size: 0.88rem;
        font-weight: 700;
    }

    .mid-cta-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px;
    }

    .mid-cta-actions .theme-btn,
    .mid-cta-actions .theme-btn-white {
        min-height: 46px;
        padding: 13px 18px;
        font-size: 0.82rem;
        box-shadow: none;
    }

    .manpower-chip-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 14px;
    }

    .manpower-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 54px;
        padding: 13px 15px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--psfm-line);
        color: var(--psfm-ink);
        font-weight: 700;
        line-height: 1.35;
        box-shadow: 0 14px 32px rgba(10, 22, 40, 0.05);
    }

    .manpower-chip i {
        color: var(--psfm-red);
    }

    .homepage-insight-grid,
    .homepage-faq-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .homepage-insight-card,
    .homepage-faq-card {
        overflow: hidden;
    }

    .homepage-insight-card {
        display: flex;
        flex-direction: column;
        border-radius: var(--psfm-radius-xl);
        background: #fff;
        border: 1px solid var(--psfm-line);
        box-shadow: var(--psfm-shadow-soft);
        min-height: 100%;
    }

.homepage-insight-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #eef3fa;
}

    .homepage-insight-media img {
        width: 100%;
        height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

    .homepage-insight-card:hover .homepage-insight-media img {
        transform: scale(1.035);
    }

    .homepage-insight-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px;
        flex: 1;
    }

    .homepage-insight-body > span {
        align-self: flex-start;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--psfm-red-soft, #fff1f2);
        color: var(--psfm-red);
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .homepage-insight-body h3 {
        margin: 0;
        color: var(--psfm-ink);
        font-size: clamp(1.12rem, 1.4vw, 1.35rem);
        line-height: 1.28;
    }

    .homepage-insight-body h3 a {
        color: inherit;
    }

    .homepage-insight-body p {
        margin: 0;
        color: var(--psfm-muted);
        line-height: 1.65;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .homepage-text-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        color: var(--psfm-red);
        font-weight: 800;
    }

    .homepage-faq-card {
        padding: 26px;
        border-radius: var(--psfm-radius-xl);
        background: #fff;
        border: 1px solid var(--psfm-line);
        box-shadow: var(--psfm-shadow-soft);
    }

    .homepage-faq-card h3 {
        margin-bottom: 12px;
        color: var(--psfm-ink);
        font-size: 1.08rem;
        line-height: 1.35;
    }

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

    .homepage-divider {
        margin: 34px 0 0;
        border-color: rgba(255, 255, 255, 0.14);
    }

    @media (max-width: 1199px) {
        .homepage-hero {
            padding: 82px 0 66px;
        }

        .hero-layout,
        .capability-layout {
            grid-template-columns: 1fr;
        }

        .hero-copy {
            max-width: 860px;
        }

        .hero-copy h1 {
            font-size: clamp(2.2rem, 5.3vw, 3.15rem);
            line-height: 1.08;
            max-width: 780px;
        }

        .hero-actions,
        .hero-signal-grid {
            margin-top: 26px;
        }

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

        .pillar-grid,
        .metric-grid,
        .testimonial-grid,
        .homepage-insight-grid,
        .homepage-faq-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .manpower-chip-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

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

        .capability-intro {
            position: static;
        }
    }

    @media (max-width: 767px) {
        .homepage-shell {
            padding: 66px 0;
        }

        .homepage-hero {
            padding: 60px 0 50px;
            overflow-x: hidden;
        }

        .homepage-hero > .container {
            width: 100%;
            max-width: 100%;
            padding-inline: 24px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .hero-layout,
        .hero-copy,
        .hero-aside,
        .hero-panel,
        .hero-signal-grid,
        .hero-signal-card {
            width: 100%;
            max-width: 100%;
            min-width: 0;
        }

        .hero-kicker {
            max-width: 100%;
            white-space: normal;
            overflow-wrap: anywhere;
            line-height: 1.45;
            letter-spacing: 0.08em;
            font-size: 11px;
            padding: 9px 14px;
        }

        .hero-copy,
        .hero-copy h1,
        .hero-copy p,
        .hero-actions,
        .hero-signal-grid,
        .hero-signal-card {
            width: 100% !important;
            max-width: calc(100vw - 40px) !important;
        }

        .hero-actions,
        .cta-banner .hero-actions {
            width: 100%;
            max-width: 100%;
            flex-direction: column;
            align-items: stretch;
        }

        .hero-actions .theme-btn,
        .hero-actions .theme-btn-white,
        .hero-actions .theme-btn-outline {
            width: 100%;
            min-width: 0;
            max-width: 100% !important;
            box-sizing: border-box;
            justify-content: center;
        }

        .hero-copy h1 {
            max-width: 100%;
            font-size: clamp(1.85rem, 7.4vw, 2.3rem);
            line-height: 1.1;
            margin: 16px 0 12px;
        }

        .hero-copy p {
            font-size: 1rem;
            line-height: 1.68;
            width: 100% !important;
            max-width: 100% !important;
            display: block;
            white-space: normal !important;
            overflow-wrap: anywhere !important;
            word-break: break-word;
        }

        .hero-actions,
        .hero-signal-grid {
            gap: 10px;
            margin-top: 22px;
        }

        .hero-signal-card {
            padding: 14px;
            overflow: hidden;
            width: 100% !important;
        }

        .hero-signal-card strong,
        .hero-signal-card span {
            white-space: normal;
            overflow-wrap: anywhere !important;
            word-break: break-word;
        }

        .hero-signal-grid,
        .trust-grid,
        .industries-grid,
        .metric-grid,
        .testimonial-grid,
        .process-grid,
        .homepage-insight-grid,
        .homepage-faq-grid {
            grid-template-columns: 1fr;
        }

        .manpower-chip-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .manpower-chip {
            min-height: 48px;
            padding: 11px 13px;
            font-size: 0.9rem;
        }

        .hero-panel,
        .capability-intro,
        .cta-banner,
        .trust-card,
        .industry-card,
        .capability-card,
        .process-step,
        .metric-card,
        .testimonial-card {
            padding: 24px;
        }

        .pillar-body {
            padding: 22px 22px 8px;
        }

        .pillar-actions {
            padding: 18px 22px 22px;
            flex-direction: column;
            align-items: stretch;
        }

        .pillar-actions a {
            display: inline-flex;
            justify-content: center;
            width: 100%;
        }

        .testimonial-card {
            padding: 24px 22px;
        }

        .testimonial-head {
            align-items: flex-start;
        }

        .logo-showcase {
            grid-template-columns: 1fr;
        }

        .logo-showcase-intro,
        .partner-band {
            padding: 22px;
        }

        .client-visibility-review-bridge {
            grid-template-columns: 1fr;
        }

        .client-visibility-review-actions {
            justify-content: flex-start;
            min-width: 0;
        }

        .partner-logo-item {
            min-height: 92px;
            padding: 12px 14px;
        }

        .partner-logo-item img {
            max-height: 46px;
        }
    }

    /* Final homepage polish: tighter first viewport, cleaner CTA rhythm, calmer cards. */
    .homepage-shell {
        padding: clamp(76px, 7vw, 96px) 0;
    }

    .homepage-section-intro {
        margin-bottom: clamp(30px, 3.4vw, 40px);
    }

    .homepage-hero {
        padding: clamp(64px, 6vw, 84px) 0 clamp(52px, 5vw, 68px);
    }

    .hero-layout {
        gap: clamp(22px, 2.6vw, 36px);
    }

    .hero-copy h1 {
        font-size: clamp(2.18rem, 3vw, 3.12rem);
        line-height: 1.055;
        max-width: 700px;
        margin: 15px 0 12px;
        letter-spacing: -0.026em;
    }

    .hero-copy p {
        max-width: 620px;
        line-height: 1.66;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-actions .theme-btn,
    .hero-actions .theme-btn-white {
        min-width: 168px;
    }

    .hero-signal-grid {
        gap: 12px;
        margin-top: 20px;
    }

    .hero-signal-card {
        padding: 16px;
        border-radius: 16px;
    }

    .hero-panel {
        padding: clamp(20px, 2vw, 26px);
    }

    .hero-panel-title {
        font-size: clamp(1.42rem, 1.6vw, 1.86rem);
        margin-bottom: 12px;
    }

    .hero-panel p {
        line-height: 1.62;
        margin-bottom: 16px;
    }

    .hero-panel-list {
        gap: 10px;
        margin-bottom: 22px;
    }

    .pillar-grid,
    .trust-grid,
    .process-grid,
    .metric-grid {
        gap: 18px;
    }

    .pillar-body {
        padding: 22px 22px 8px;
    }

.pillar-media img {
    aspect-ratio: 1 / 1;
    object-position: center;
}

    .pillar-actions {
        padding: 14px 22px 20px;
    }

    .cta-banner {
        padding: clamp(30px, 3.5vw, 42px);
    }

    @media (max-width: 1199px) {
        .homepage-hero {
            padding: 66px 0 56px;
        }

        .hero-copy h1 {
            font-size: clamp(2.05rem, 4.8vw, 2.85rem);
            max-width: 760px;
        }
    }

    @media (max-width: 767px) {
        .homepage-shell {
            padding: 52px 0;
        }

        .homepage-hero {
            padding: 48px 0 42px;
        }

        .homepage-hero > .container {
            padding-inline: 20px;
        }

        .hero-copy,
        .hero-copy h1,
        .hero-copy p,
        .hero-actions,
        .hero-signal-grid,
        .hero-signal-card {
            max-width: calc(100vw - 34px) !important;
        }

        .hero-copy h1 {
            font-size: clamp(1.62rem, 6.7vw, 2.08rem);
            line-height: 1.105;
            margin: 14px 0 10px;
            letter-spacing: -0.018em;
        }

        .hero-copy p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .hero-actions {
            gap: 9px;
            margin-top: 18px;
        }

        .hero-panel,
        .capability-intro,
        .cta-banner,
        .trust-card,
        .industry-card,
        .capability-card,
        .process-step,
        .metric-card,
        .testimonial-card {
            padding: 20px;
            border-radius: 20px;
        }

        .hero-panel-title {
            font-size: 1.34rem;
        }

        .hero-signal-grid {
            margin-top: 18px;
        }

        .hero-signal-card {
            padding: 13px;
        }

        .pillar-body {
            padding: 19px 19px 7px;
        }

        .pillar-actions {
            padding: 14px 19px 18px;
            gap: 8px;
        }

        .cta-banner .hero-actions {
            margin-top: 18px;
        }
    }

    /* Homepage growth pass: keep the hero premium while reducing first-screen depth. */
    .homepage-hero {
        padding: clamp(52px, 5vw, 70px) 0 clamp(40px, 4vw, 56px);
        background:
            radial-gradient(ellipse at 14% 18%, rgba(226, 31, 38, 0.42), transparent 30%),
            radial-gradient(ellipse at 76% 10%, rgba(209, 166, 87, 0.30), transparent 28%),
            radial-gradient(ellipse at 92% 78%, rgba(226, 31, 38, 0.24), transparent 34%),
            linear-gradient(120deg, #061226 0%, #071b34 34%, #102945 60%, #241a34 80%, #4b111b 100%);
        background-blend-mode: screen, soft-light, normal, normal;
        isolation: isolate;
    }

    .homepage-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
            linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
            linear-gradient(115deg, rgba(255, 255, 255, 0.10), transparent 36%, rgba(226, 31, 38, 0.10) 76%, transparent);
        background-size: 92px 92px, 92px 92px, auto;
        opacity: 0.46;
        mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 58%, transparent 100%);
    }

    .homepage-hero::after {
        inset: -150px -120px auto auto;
        width: 540px;
        height: 540px;
        background:
            radial-gradient(circle, rgba(226, 31, 38, 0.38), transparent 58%),
            radial-gradient(circle at 32% 32%, rgba(209, 166, 87, 0.22), transparent 42%);
        opacity: 0.78;
        filter: blur(2px);
        z-index: 0;
    }

    .homepage-hero > .container {
        z-index: 2;
    }

    .hero-kicker {
        background: rgba(255, 255, 255, 0.13);
        border-color: rgba(255, 255, 255, 0.20);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    }

    .hero-copy h1 {
        text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    }

    .hero-panel {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
            linear-gradient(145deg, rgba(226, 31, 38, 0.14), transparent 42%);
        border-color: rgba(255, 255, 255, 0.22);
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    }

    .hero-signal-card,
    .hero-quick-links a,
    .hero-quick-links span {
        background: rgba(255, 255, 255, 0.11);
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.56fr);
        align-items: start;
    }

    .hero-copy h1 {
        font-size: clamp(2.04rem, 2.72vw, 2.9rem);
        max-width: 680px;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.58;
        max-width: 600px;
    }

    .hero-signal-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-signal-card {
        padding: 13px 14px;
    }

    .hero-signal-card strong {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .hero-signal-card span {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .hero-panel {
        padding: 20px;
    }

    .hero-panel-label {
        margin-bottom: 9px;
    }

    .hero-panel-title {
        font-size: clamp(1.28rem, 1.45vw, 1.62rem);
        line-height: 1.16;
        margin-bottom: 10px;
    }

    .hero-panel p,
    .hero-panel-list li {
        line-height: 1.48;
    }

    .hero-panel p {
        margin-bottom: 14px;
    }

    .hero-panel-list {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-panel-list span,
    .hero-quick-links span span {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
    }

    .hero-panel-list span {
        -webkit-line-clamp: 2;
    }

    .hero-quick-links {
        gap: 10px;
        padding-top: 14px;
    }

    .hero-quick-links span span {
        -webkit-line-clamp: 2;
    }

    @media (min-width: 1200px) {
        .hero-panel-list li:nth-child(n+4) {
            display: none;
        }
    }

    @media (max-width: 1199px) {
        .homepage-hero {
            padding: 54px 0 48px;
        }

        .hero-layout {
            grid-template-columns: 1fr;
        }

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

        .mid-cta-card {
            grid-template-columns: 1fr;
        }

        .mid-cta-actions {
            justify-content: flex-start;
        }

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

        .hero-aside {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .homepage-hero {
            padding: 38px 0 34px;
        }

        .hero-copy h1 {
            font-size: clamp(1.48rem, 6.25vw, 1.95rem);
            line-height: 1.08;
        }

        .hero-copy p {
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .hero-actions {
            margin-top: 15px;
        }

        .homepage-proof-strip {
            padding: 24px 0;
        }

        .proof-signal-grid,
        .proof-metric-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .proof-signal-card,
        .city-coverage-panel {
            padding: 16px;
            border-radius: 18px;
        }

        .proof-metric-card {
            padding: 16px;
        }

        .homepage-shell.is-compact {
            padding: 40px 0;
        }

        .mid-cta-card {
            padding: 22px;
            border-radius: 22px;
        }

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

        .mid-cta-actions .theme-btn,
        .mid-cta-actions .theme-btn-white {
            width: 100%;
            justify-content: center;
        }

        .hero-signal-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            margin-top: 15px;
        }

        .hero-signal-card {
            padding: 12px;
        }

        .hero-signal-card strong {
            font-size: 0.86rem;
        }

        .hero-signal-card span {
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            font-size: 0.79rem;
            line-height: 1.42;
        }

        .hero-aside {
            display: none;
        }
    }

    .client-trust-section {
        background:
            radial-gradient(circle at 12% 12%, rgba(226, 31, 38, 0.08), transparent 28%),
            linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f3f6fa 100%);
    }

    .client-trust-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
        align-items: stretch;
        gap: clamp(22px, 3vw, 36px);
    }

    .client-trust-panel,
    .review-highlights-panel,
    .client-trust-seo-copy,
    .client-trust-faq-card {
        background: #fff;
        border: 1px solid var(--psfm-line);
        border-radius: var(--psfm-radius-xl);
        box-shadow: 0 18px 46px rgba(10, 22, 40, 0.08);
    }

    .client-trust-panel,
    .review-highlights-panel {
        padding: clamp(24px, 3vw, 34px);
        min-width: 0;
    }

    .client-trust-badge {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        min-height: 30px;
        padding: 7px 12px;
        border-radius: 999px;
        background: #fff1f2;
        color: var(--psfm-red);
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .client-trust-rating-card {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 22px;
        border-radius: 24px;
        background: linear-gradient(135deg, #0a1628 0%, #10233f 100%);
        color: #fff;
    }

    .client-rating-number {
        display: grid;
        place-items: center;
        width: 86px;
        height: 86px;
        flex: 0 0 86px;
        border-radius: 22px;
        background: #fff;
        color: var(--psfm-red);
        font-size: 2.05rem;
        font-weight: 900;
        line-height: 1;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .client-rating-number.is-google {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 2rem;
    }

    .client-trust-rating-card strong {
        display: block;
        color: #fff;
        font-size: 1.08rem;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .client-trust-rating-card span,
    .client-trust-helper,
    .client-trust-disclaimer {
        color: #e2e8f0;
        line-height: 1.6;
    }

    .client-trust-helper {
        margin: 16px 0 0;
        color: var(--psfm-ink);
        font-weight: 700;
    }

    .client-trust-disclaimer {
        margin: 16px 0 0;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(10, 22, 40, 0.08);
        color: var(--psfm-muted);
        font-size: 0.9rem;
    }

    .client-google-actions {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .client-google-actions .theme-btn,
    .client-google-actions .theme-btn-white {
        justify-content: center;
        width: 100%;
        min-height: 46px;
        padding: 13px 18px;
        box-shadow: none;
        text-align: center;
    }

    .client-google-actions .theme-btn-white {
        background: #fff;
        border: 1px solid var(--psfm-line);
        color: var(--psfm-ink);
    }

    .client-google-actions .theme-btn-white:hover {
        background: #0a1628;
        border-color: #0a1628;
        color: #fff;
    }

    .client-rating-breakdown {
        display: grid;
        gap: 13px;
        margin-top: 22px;
    }

    .client-rating-row {
        padding: 14px 15px;
        border: 1px solid rgba(10, 22, 40, 0.08);
        border-radius: 16px;
        background: #f8fafc;
    }

    .client-rating-label {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .client-rating-label strong {
        color: var(--psfm-ink);
        font-size: 0.94rem;
    }

    .client-rating-label span {
        color: var(--psfm-muted);
        font-size: 0.86rem;
    }

    .client-rating-bar {
        height: 9px;
        overflow: hidden;
        border-radius: 999px;
        background: #e6eaf0;
    }

    .client-rating-bar span {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #f5b301 0%, #e21f26 100%);
    }

    .client-trust-metrics,
    .client-trust-faq-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 24px;
    }

    .client-trust-metric {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 56px;
        padding: 14px;
        border: 1px solid rgba(10, 22, 40, 0.08);
        border-radius: 18px;
        background: #f8fafc;
        color: var(--psfm-ink);
        font-weight: 800;
        line-height: 1.35;
    }

    .client-trust-metric i {
        display: grid;
        place-items: center;
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        border-radius: 50%;
        background: #fff1f2;
        color: var(--psfm-red);
        font-size: 0.78rem;
    }

    .client-trust-points,
    .review-tag-row,
    .client-trust-contact {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .client-trust-points {
        margin-top: 20px;
    }

    .client-trust-points span,
    .review-tag {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 7px 11px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--psfm-line);
        color: var(--psfm-muted);
        font-size: 0.84rem;
        font-weight: 700;
    }

    .review-highlights-head p {
        margin: 0 0 18px;
        color: var(--psfm-muted);
        line-height: 1.75;
    }

    .review-highlight-card {
        display: flex;
        flex-direction: column;
        gap: 18px;
        min-height: 390px;
        padding: clamp(22px, 2.5vw, 30px);
        border: 1px solid var(--psfm-line);
        border-radius: 24px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 16px 34px rgba(10, 22, 40, 0.08);
    }

    .review-card-top {
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }

    .review-card-top h3 {
        margin: 0 0 5px;
        color: var(--psfm-ink);
        font-size: 1.18rem;
        line-height: 1.3;
    }

    .review-card-top span {
        color: var(--psfm-muted);
        font-weight: 700;
    }

    .review-stars {
        display: inline-flex;
        gap: 3px;
        flex: 0 0 auto;
        color: #f5b301;
        font-size: 0.9rem;
        line-height: 1;
    }

    .review-signal-badge {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 7px 10px;
        border-radius: 999px;
        background: #fff1f2;
        color: var(--psfm-red);
        font-size: 0.78rem;
        font-weight: 900;
        white-space: nowrap;
    }

    .review-tag {
        background: #fff1f2;
        border-color: rgba(226, 31, 38, 0.18);
        color: var(--psfm-red);
    }

    a.review-tag:hover {
        background: var(--psfm-red);
        color: #fff;
        border-color: var(--psfm-red);
    }

    .review-tag.is-city {
        background: #f8fafc;
        color: #10233f;
        border-color: #e6eaf0;
    }

    .review-quote {
        color: var(--psfm-ink);
        font-size: 1.02rem;
        line-height: 1.75;
        margin: 0;
    }

    .review-summary {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--psfm-line);
        color: var(--psfm-muted);
        font-weight: 800;
    }

    .review-highlights-carousel .owl-stage {
        display: flex;
    }

    .review-highlights-carousel .owl-item {
        display: flex;
        height: auto;
    }

    .review-highlights-carousel .owl-item .review-highlight-card {
        width: 100%;
        margin: 6px 0 16px;
    }

    .review-highlights-carousel .owl-nav {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        margin-top: 4px;
    }

    .review-highlights-carousel .owl-nav button.owl-prev,
    .review-highlights-carousel .owl-nav button.owl-next {
        display: inline-grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #0a1628 !important;
        color: #fff !important;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .review-highlights-carousel .owl-nav button:hover {
        transform: translateY(-2px);
        background: var(--psfm-red) !important;
    }

    .client-trust-seo-copy {
        margin: 30px 0 0;
        padding: clamp(22px, 2.8vw, 30px);
        color: var(--psfm-muted);
        line-height: 1.8;
    }

    .client-google-notice {
        margin: 26px 0 0;
        padding: 16px 18px;
        border: 1px solid rgba(226, 31, 38, 0.18);
        border-radius: 18px;
        background: #fff1f2;
        color: #7f1d1d;
        font-weight: 700;
        line-height: 1.6;
    }

    .client-trust-link-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .client-trust-link-cloud a {
        display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 8px 12px;
        border: 1px solid var(--psfm-line);
        border-radius: 999px;
        background: #fff;
        color: var(--psfm-ink);
        font-size: 0.86rem;
        font-weight: 800;
    }

    .client-trust-link-cloud a:hover {
        background: var(--psfm-red);
        border-color: var(--psfm-red);
        color: #fff;
    }

    .client-trust-faq-card {
        padding: 24px;
        box-shadow: 0 12px 28px rgba(10, 22, 40, 0.06);
    }

    .client-trust-faq-card h3 {
        color: var(--psfm-ink);
        font-size: 1.02rem;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .client-trust-faq-card p {
        margin: 0;
        color: var(--psfm-muted);
        line-height: 1.7;
    }

    .client-trust-cta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
        gap: clamp(22px, 3vw, 34px);
        align-items: center;
        margin-top: 32px;
        padding: clamp(26px, 4vw, 44px);
        border-radius: var(--psfm-radius-xl);
        background: linear-gradient(135deg, #0a1628 0%, #10233f 100%);
        box-shadow: var(--psfm-shadow-strong);
    }

    .client-trust-cta h2 {
        color: #fff;
        font-size: clamp(1.5rem, 2.4vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .client-trust-cta p,
    .client-trust-contact span {
        color: #e2e8f0;
    }

    .client-trust-cta p {
        margin-bottom: 18px;
        line-height: 1.7;
    }

    .client-trust-contact span {
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.86rem;
        font-weight: 700;
    }

    .client-trust-cta-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .client-trust-cta-actions .theme-btn,
    .client-trust-cta-actions .theme-btn-white {
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 14px 18px;
        text-align: center;
    }

    .mid-cta-actions .psfm-cta-pill,
    .client-trust-cta-actions .psfm-cta-pill,
    .cta-banner .psfm-cta-pill {
        position: relative;
        justify-content: space-between;
        gap: 16px;
        min-height: 58px;
        padding: 12px 12px 12px 28px;
        border: 0;
        border-radius: 999px;
        background: var(--psfm-red);
        color: #fff;
        box-shadow: 0 18px 36px rgba(226, 31, 38, 0.22);
        text-align: start;
        overflow-wrap: anywhere;
    }

    .mid-cta-actions .psfm-cta-pill:hover,
    .client-trust-cta-actions .psfm-cta-pill:hover,
    .cta-banner .psfm-cta-pill:hover {
        background: var(--psfm-red-dark);
        color: #fff;
        box-shadow: 0 20px 40px rgba(201, 27, 34, 0.24);
    }

    .mid-cta-actions .psfm-cta-pill i,
    .client-trust-cta-actions .psfm-cta-pill i,
    .cta-banner .psfm-cta-pill i {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-inline-start: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        color: var(--psfm-red);
        font-size: 1rem;
    }

    html[dir="rtl"] .mid-cta-actions .psfm-cta-pill,
    html[dir="rtl"] .client-trust-cta-actions .psfm-cta-pill,
    html[dir="rtl"] .cta-banner .psfm-cta-pill {
        padding: 12px 28px 12px 12px;
    }

    html[dir="rtl"] .client-trust-section,
    html[dir="rtl"] .review-highlight-card,
    html[dir="rtl"] .client-trust-faq-card,
    html[dir="rtl"] .client-trust-seo-copy {
        text-align: right;
    }

    html[dir="rtl"] .review-highlights-carousel .owl-nav {
        justify-content: flex-start;
    }

    @media (max-width: 1199px) {
        .client-trust-grid,
        .client-trust-cta {
            grid-template-columns: 1fr;
        }

        .review-highlight-card {
            min-height: 360px;
        }
    }

    @media (max-width: 767px) {
        .client-trust-section .homepage-section-intro {
            margin-bottom: 24px;
        }

        .client-trust-panel,
        .review-highlights-panel,
        .client-trust-cta {
            padding: 20px;
            border-radius: 22px;
        }

        .client-trust-rating-card,
        .review-card-top {
            align-items: flex-start;
            flex-direction: column;
        }

        .client-rating-row,
        .client-trust-metrics,
        .client-trust-faq-grid {
            grid-template-columns: 1fr;
        }

        .client-trust-link-cloud {
            gap: 8px;
        }

        .client-trust-link-cloud a {
            flex: 1 1 auto;
            justify-content: center;
        }

        .review-highlight-card {
            min-height: auto;
        }

        .review-highlights-carousel .owl-nav {
            justify-content: center;
        }

        .mid-cta-actions .psfm-cta-pill,
        .client-trust-cta-actions .psfm-cta-pill,
        .cta-banner .psfm-cta-pill {
            min-height: 54px;
            padding: 10px 10px 10px 22px;
            font-size: 0.86rem;
        }

        html[dir="rtl"] .mid-cta-actions .psfm-cta-pill,
        html[dir="rtl"] .client-trust-cta-actions .psfm-cta-pill,
        html[dir="rtl"] .cta-banner .psfm-cta-pill {
            padding: 10px 22px 10px 10px;
        }

        .mid-cta-actions .psfm-cta-pill i,
        .client-trust-cta-actions .psfm-cta-pill i,
        .cta-banner .psfm-cta-pill i {
            width: 40px;
            height: 40px;
            min-width: 40px;
        }
    }

    @media (max-width: 360px) {
        .hero-signal-grid {
            grid-template-columns: 1fr;
        }
    }

/* PSFM premium polish pass: tighter rhythm, stronger service cards, safer CTA wrapping. */
.homepage-shell {
    padding-block: clamp(58px, 6vw, 86px);
}

.homepage-section-intro {
    margin-bottom: clamp(28px, 3.4vw, 40px);
}

.pillar-card {
    min-height: 100%;
}

.pillar-body {
    padding-bottom: 18px;
}

.pillar-benefit {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 14px;
    padding: 11px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff7f7, #fff);
    color: #0a1628;
    border: 1px solid rgba(226, 31, 38, 0.14);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.45;
}

.pillar-benefit i {
    color: var(--psfm-red);
    margin-top: 2px;
    flex: 0 0 auto;
}

.pillar-actions {
    align-items: stretch;
}

.pillar-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
}

.pillar-actions a:first-child {
    background: #f3f6fa;
}

.pillar-actions a:last-child {
    background: var(--psfm-red);
    color: #fff;
}

.pillar-actions a:last-child:hover {
    background: var(--psfm-red-dark);
    color: #fff;
}

.homepage-insight-card,
.homepage-faq-card,
.process-step,
.client-trust-panel,
.review-highlights-panel {
    min-width: 0;
}

.client-trust-section {
    padding-block: 40px;
}

.client-trust-section .homepage-section-intro {
    margin-bottom: 24px;
}

.client-trust-grid {
    grid-template-columns: minmax(280px, 35%) minmax(0, 65%);
    gap: 24px;
}

.client-trust-panel,
.review-highlights-panel {
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.client-trust-rating-card {
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
}

.client-rating-number {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 18px;
    font-size: 1.7rem;
}

.google-profile-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 5px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.client-trust-helper,
.client-trust-disclaimer,
.review-highlights-head p {
    line-height: 1.45;
}

.client-trust-helper,
.client-trust-disclaimer {
    margin-top: 10px;
}

.client-trust-disclaimer {
    padding: 12px;
}

.client-google-actions {
    gap: 8px;
    margin-top: 12px;
}

.client-google-actions .theme-btn,
.client-google-actions .theme-btn-white {
    min-height: 42px;
    padding: 11px 16px;
}

.client-rating-breakdown {
    gap: 10px;
    margin-top: 16px;
}

.client-rating-row {
    padding: 11px 12px;
}

.client-rating-label strong {
    font-size: 0.9rem;
}

.client-rating-label span {
    font-size: 0.82rem;
}

.client-trust-metrics,
.client-trust-faq-grid {
    gap: 10px;
    margin-top: 16px;
}

.client-trust-metric {
    min-height: 48px;
    padding: 10px;
}

.client-trust-points {
    gap: 8px;
    margin-top: 14px;
}

.review-highlights-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.review-highlights-head p {
    margin-bottom: 12px;
}

.review-head-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 15px;
    border-radius: 999px;
    background: var(--psfm-red);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(226, 31, 38, 0.2);
}

.review-head-cta:hover {
    background: var(--psfm-red-dark);
    color: #fff;
}

.review-highlight-card {
    gap: 10px;
    min-height: 300px;
    max-height: 300px;
    height: 100%;
    padding: 16px;
    border-radius: 16px;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e5eaf1;
    box-shadow: 0 12px 28px rgba(10, 22, 40, 0.06);
}

.review-card-top {
    gap: 12px;
}

.review-card-top h3 {
    font-size: 1.02rem;
}

.review-tag-row {
    gap: 8px;
}

.review-tag {
    min-height: 29px;
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 30px;
    font-weight: 800;
}

.review-stars {
    color: #f5b301;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.review-quote {
    font-size: 0.88rem;
    line-height: 1.45;
    display: -webkit-box;
    max-height: 82px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.review-summary {
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.86rem;
}

.review-highlights-carousel .owl-item .review-highlight-card {
    margin: 3px 0 8px;
}

.review-highlights-carousel .owl-nav {
    justify-content: flex-end;
    margin-top: 8px;
}

.review-confidence-fill {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(7, 23, 44, 0.08);
    border-radius: 18px;
    background:
        radial-gradient(circle at right top, rgba(226, 31, 38, 0.08), transparent 36%),
        #f8fafc;
}

.review-confidence-copy h3 {
    margin: 6px 0 8px;
    color: var(--psfm-navy);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.2;
}

.review-confidence-copy p {
    margin: 0;
    color: var(--psfm-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.review-confidence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.review-confidence-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px;
    border: 1px solid rgba(7, 23, 44, 0.08);
    border-radius: 14px;
    background: #fff;
    color: var(--psfm-ink);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
}

.review-confidence-grid i {
    color: var(--psfm-red);
}

.review-confidence-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.review-confidence-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--psfm-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(226, 31, 38, 0.16);
}

.review-confidence-actions a:hover {
    background: var(--psfm-red-dark);
    color: #fff;
}

.project-highlights-section {
    padding-block: 44px;
    background:
        radial-gradient(circle at top left, rgba(226, 31, 38, 0.07), transparent 34%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.project-highlights-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 22px;
}

.project-highlights-head .homepage-section-intro {
    max-width: 760px;
    margin-bottom: 0;
}

.project-highlights-link {
    flex: 0 0 auto;
    margin-bottom: 8px;
}

.project-highlight-slider .owl-stage {
    display: flex;
}

.project-highlight-slider .owl-item {
    display: flex;
    height: auto;
}

.project-highlight-card {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #07172c;
    box-shadow: 0 16px 38px rgba(7, 23, 44, 0.13);
    isolation: isolate;
}

.project-highlight-media,
.project-highlight-media picture,
.project-highlight-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.project-highlight-media img {
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.project-highlight-card:hover .project-highlight-media img {
    transform: scale(1.08);
}

.project-highlight-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 7px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(7, 23, 44, 0.06) 0%, rgba(7, 23, 44, 0.28) 42%, rgba(7, 23, 44, 0.86) 100%);
    transition: background 0.3s ease;
}

.project-highlight-card:hover .project-highlight-overlay {
    background: linear-gradient(180deg, rgba(7, 23, 44, 0.16) 0%, rgba(7, 23, 44, 0.38) 42%, rgba(7, 23, 44, 0.92) 100%);
}

.project-highlight-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    background: var(--psfm-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-highlight-title {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.18;
    text-wrap: balance;
}

.project-highlight-scope {
    display: -webkit-box;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    line-height: 1.45;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.project-highlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: 2px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.project-highlight-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 700;
}

.project-highlight-slider .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.project-highlight-slider .owl-nav button.owl-prev,
.project-highlight-slider .owl-nav button.owl-next {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px !important;
    background: #fff !important;
    color: var(--psfm-navy) !important;
    border: 1px solid rgba(7, 23, 44, 0.1) !important;
    box-shadow: 0 8px 20px rgba(7, 23, 44, 0.09);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.project-highlight-slider .owl-nav button:hover {
    transform: translateY(-2px);
    background: var(--psfm-red) !important;
    color: #fff !important;
}

.homepage-insight-body h3,
.homepage-faq-card h3,
.client-trust-faq-card h3 {
    text-wrap: balance;
}

.homepage-insight-body p,
.homepage-faq-card p,
.client-trust-faq-card p {
    overflow-wrap: anywhere;
}

@media (max-width: 1199px) {
    .homepage-shell {
        padding-block: clamp(48px, 6vw, 68px);
    }
}

@media (max-width: 992px) {
    .client-trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .homepage-shell {
        padding-block: 42px;
    }

    .homepage-section-intro {
        margin-bottom: 24px;
    }

    .client-trust-section {
        padding-block: 36px;
    }

    .review-highlight-card {
        min-height: auto;
        max-height: none;
    }

    .review-highlights-head {
        display: block;
    }

    .review-head-cta {
        width: 100%;
        margin-top: 10px;
    }

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

    .review-confidence-actions a {
        flex: 1 1 100%;
    }

    .project-highlights-section {
        padding-block: 38px;
    }

    .project-highlights-head {
        display: block;
        margin-bottom: 18px;
    }

    .project-highlights-link {
        display: inline-flex;
        margin-top: 8px;
        margin-bottom: 0;
    }

    .pillar-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pillar-actions a {
        width: 100%;
    }

    .homepage-insight-grid,
    .homepage-faq-grid {
        gap: 16px;
    }
}

/* Final mobile containment: prevent hero/proof text from being clipped by narrow viewports. */
@media (max-width: 575.98px) {
    .homepage-hero,
    .homepage-proof-strip {
        overflow-x: clip;
    }

    .homepage-hero > .container,
    .homepage-proof-strip > .container {
        width: 100%;
        max-width: 100vw;
        padding-inline: 16px;
        box-sizing: border-box;
        overflow: visible;
    }

    .hero-layout,
    .hero-copy,
    .hero-copy h1,
    .hero-copy p,
    .hero-actions,
    .hero-signal-grid,
    .hero-signal-card,
    .proof-signal-grid,
    .proof-signal-card,
    .proof-metric-grid,
    .proof-metric-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

    .hero-copy h1,
    .hero-copy p,
    .hero-signal-card strong,
    .hero-signal-card span,
    .proof-signal-card strong,
    .proof-signal-card span,
    .proof-metric-card strong,
    .proof-metric-card span {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .theme-btn,
    .hero-actions .theme-btn-white,
    .hero-actions .theme-btn-outline {
        width: 100%;
        min-width: 0;
        padding-inline: 16px;
    }

    .hero-signal-grid,
    .proof-signal-grid,
    .proof-metric-grid {
        grid-template-columns: 1fr !important;
    }

    .proof-signal-card {
        align-items: flex-start;
    }

    .proof-signal-card > div,
    .hero-signal-card > div {
        min-width: 0;
        max-width: 100%;
    }
}

