/* Phidea GEO content and crawler-safe layout additions. */

.phidea-refined .ph-st-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 14px;
    width: 300px;
    min-height: 230px;
    padding: 24px;
    color: #d4e0e6 !important;
    text-align: center;
    text-decoration: none !important;
}

.phidea-refined .ph-st-mark img {
    width: 275px;
    max-width: 100%;
    height: auto;
    background: transparent;
    filter:
        drop-shadow(1px 0 0 rgba(255,255,255,.96))
        drop-shadow(-1px 0 0 rgba(255,255,255,.96))
        drop-shadow(0 1px 0 rgba(255,255,255,.96))
        drop-shadow(0 -1px 0 rgba(255,255,255,.96))
        drop-shadow(0 10px 24px rgba(0,0,0,.22));
}

.phidea-refined .ph-st-mark span {
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.phidea-refined .ph-compliance-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .75fr);
    gap: 58px;
}

.phidea-refined .ph-compliance-visual {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 10px 22px 42px 0;
    justify-self: end;
}

.phidea-refined .ph-compliance-visual::before {
    content: "";
    position: absolute;
    inset: -14px 18px 18px -14px;
    border: 1px solid rgba(215,164,59,.55);
    border-radius: 22px;
}

.phidea-refined .ph-compliance-visual figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: #071b2d;
    box-shadow: 0 30px 70px rgba(0,0,0,.32);
}

.phidea-refined .ph-compliance-visual figure::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,24,38,.04) 42%, rgba(5,24,38,.76) 100%);
    pointer-events: none;
}

.phidea-refined .ph-compliance-visual figure > img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(.82) contrast(1.06) brightness(.88);
    transition: transform .7s cubic-bezier(.2,.75,.25,1), filter .35s ease;
}

.phidea-refined .ph-compliance-visual:hover figure > img {
    transform: scale(1.035);
    filter: saturate(.9) contrast(1.04) brightness(.94);
}

.phidea-refined .ph-compliance-visual figcaption {
    position: absolute;
    z-index: 3;
    left: 22px;
    bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #fff;
    background: rgba(7,27,45,.68);
    backdrop-filter: blur(7px);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.phidea-refined .ph-compliance-visual .ph-watermark {
    z-index: 2;
    background-position: 86% 86%;
    background-size: 24% auto;
    opacity: .28;
}

.phidea-refined .ph-approval-pills {
    position: absolute;
    z-index: 4;
    top: 18px;
    left: -22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phidea-refined .ph-approval-pills span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 176px;
    padding: 9px 12px 9px 9px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: var(--ph-navy);
    background: rgba(255,255,255,.94);
    box-shadow: 0 9px 24px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    font-size: 12.5px;
    font-weight: 760;
}

.phidea-refined .ph-approval-pills b {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    background: var(--ph-teal);
    font-size: 10px;
    letter-spacing: .04em;
}

.phidea-refined .ph-st-mark--overlay {
    position: absolute;
    z-index: 5;
    right: -24px;
    bottom: -52px;
    width: 250px;
    min-height: 112px;
    padding: 17px 20px;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 14px;
    color: var(--ph-teal) !important;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
    backdrop-filter: blur(10px);
    animation: ph-float 6s ease-in-out infinite;
}

.phidea-refined .ph-st-mark--overlay img {
    width: 180px;
    filter: none;
}

.phidea-refined .ph-st-mark--overlay span {
    color: var(--ph-teal);
    font-size: 10.5px;
}

.phidea-refined .ph-installation-evidence {
    background:
        radial-gradient(circle at 12% 12%, rgba(15,107,110,.09), transparent 26%),
        #fff;
}

.phidea-refined .ph-compliance-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin-inline: auto;
}

.phidea-refined .ph-compliance-gallery figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--ph-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11,36,59,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.phidea-refined .ph-compliance-gallery figure:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(11,36,59,.13);
}

.phidea-refined .ph-compliance-photo {
    position: relative;
    overflow: hidden;
    background: var(--ph-navy);
}

.phidea-refined .ph-compliance-photo > img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(.96) contrast(1.02);
    transition: transform .6s cubic-bezier(.2,.75,.25,1), filter .3s ease;
}

.phidea-refined .ph-compliance-gallery figure:hover .ph-compliance-photo > img {
    transform: scale(1.05);
    filter: saturate(1.04) contrast(1.01);
}

.phidea-refined .ph-compliance-photo .ph-watermark {
    background-size: 30% auto;
    opacity: .24;
}

.phidea-refined .ph-compliance-gallery figcaption {
    display: flex;
    flex-direction: column;
    min-height: 142px;
    padding: 20px 22px 22px;
}

.phidea-refined .ph-compliance-gallery figcaption span {
    margin-bottom: 7px;
    color: var(--ph-amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.phidea-refined .ph-compliance-gallery figcaption strong {
    margin-bottom: 6px;
    color: var(--ph-navy);
    font-size: 18px;
    line-height: 1.3;
}

.phidea-refined .ph-compliance-gallery figcaption small {
    color: var(--ph-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

.phidea-refined .ph-st-site-inspection {
    display: grid;
    grid-template-columns: minmax(0, 1.58fr) minmax(280px, .72fr);
    overflow: hidden;
    max-width: 980px;
    margin: 24px auto 0;
    border: 1px solid rgba(15,107,110,.22);
    border-radius: 16px;
    background: var(--ph-navy);
    box-shadow: 0 18px 42px rgba(11,36,59,.12);
}

.phidea-refined .ph-st-site-inspection__image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background: #071b2d;
}

.phidea-refined .ph-st-site-inspection__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2,.75,.25,1), filter .3s ease;
}

.phidea-refined .ph-st-site-inspection:hover .ph-st-site-inspection__image > img {
    transform: scale(1.025);
    filter: saturate(1.03) contrast(1.015);
}

.phidea-refined .ph-st-site-inspection__image .ph-watermark {
    background-position: 92% 88%;
    background-size: 25% auto;
    opacity: .26;
}

.phidea-refined .ph-st-site-inspection figcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 30px;
}

.phidea-refined .ph-st-site-inspection figcaption span {
    margin-bottom: 10px;
    color: var(--ph-amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.phidea-refined .ph-st-site-inspection figcaption strong {
    margin-bottom: 11px;
    color: #fff;
    font-size: 23px;
    line-height: 1.28;
}

.phidea-refined .ph-st-site-inspection figcaption small {
    color: #c8d6de;
    font-size: 14px;
    line-height: 1.62;
}

.phidea-refined .ph-st-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 54px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.phidea-refined .ph-st-process li {
    position: relative;
    min-height: 240px;
    padding: 62px 27px 26px;
    border: 1px solid var(--ph-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 13px 34px rgba(11,36,59,.075);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.phidea-refined .ph-st-process li:nth-child(1) { grid-area: 1 / 1; }
.phidea-refined .ph-st-process li:nth-child(2) { grid-area: 1 / 2; }
.phidea-refined .ph-st-process li:nth-child(3) { grid-area: 1 / 3; }
.phidea-refined .ph-st-process li:nth-child(4) { grid-area: 2 / 3; }
.phidea-refined .ph-st-process li:nth-child(5) { grid-area: 2 / 2; }
.phidea-refined .ph-st-process li:nth-child(6) { grid-area: 2 / 1; }

.phidea-refined .ph-st-process li::after {
    content: "→";
    position: absolute;
    z-index: 4;
    top: 50%;
    right: -41px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(15,107,110,.22);
    border-radius: 50%;
    color: var(--ph-teal);
    background: #fff;
    box-shadow: 0 7px 18px rgba(11,36,59,.09);
    font-size: 17px;
    transform: translateY(-50%);
}

.phidea-refined .ph-st-process li:nth-child(3)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -31px;
    transform: translate(50%, 50%);
}

.phidea-refined .ph-st-process li:nth-child(4)::after,
.phidea-refined .ph-st-process li:nth-child(5)::after {
    content: "←";
    right: auto;
    left: -41px;
}

.phidea-refined .ph-st-process li:nth-child(6)::after {
    display: none;
}

.phidea-refined .ph-st-process li > span {
    position: absolute;
    top: 22px;
    left: 27px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    color: #fff;
    background: var(--ph-teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    box-shadow: 0 6px 16px rgba(15,107,110,.2);
}

.phidea-refined .ph-st-process h3 {
    margin-bottom: 11px;
    font-size: 21px;
}

.phidea-refined .ph-st-process p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.62;
}

.phidea-refined .ph-st-process li > small {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--ph-amber);
    background: rgba(215,164,59,.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.phidea-refined .ph-st-process li.ph-st-process__gate {
    border-color: rgba(215,164,59,.45);
    background:
        radial-gradient(circle at 100% 0, rgba(215,164,59,.16), transparent 42%),
        var(--ph-navy);
}

.phidea-refined .ph-st-process li.ph-st-process__gate > span {
    color: var(--ph-navy);
    background: var(--ph-amber);
}

.phidea-refined .ph-st-process li.ph-st-process__gate h3 {
    color: #fff;
}

.phidea-refined .ph-st-process li.ph-st-process__gate p {
    color: #c8d6de;
}

.phidea-refined .ph-st-process li:hover {
    z-index: 3;
    transform: translateY(-5px);
    border-color: rgba(15,107,110,.38);
    box-shadow: 0 20px 44px rgba(11,36,59,.13);
}

.phidea-refined .ph-journey-grid article,
.phidea-refined .ph-doc-grid article,
.phidea-refined .ph-role-grid article {
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.phidea-refined .ph-journey-grid article::before,
.phidea-refined .ph-role-grid article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(var(--ph-amber), var(--ph-teal));
    opacity: 0;
    transform: scaleY(.25);
    transition: opacity .28s ease, transform .28s ease;
}

.phidea-refined .ph-journey-grid article:hover,
.phidea-refined .ph-doc-grid article:hover,
.phidea-refined .ph-role-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(15,107,110,.35);
    box-shadow: 0 18px 38px rgba(11,36,59,.1);
}

.phidea-refined .ph-journey-grid article:hover::before,
.phidea-refined .ph-role-grid article:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

@keyframes ph-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes ph-hero-copy-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ph-hero-visual-in {
    from { opacity: 0; transform: translateX(24px) scale(.985); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes ph-view-reveal {
    from { opacity: .25; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.phidea-refined .ph-hero--compliance .ph-compliance-hero > div:first-child {
    animation: ph-hero-copy-in .7s ease-out both;
}

.phidea-refined .ph-hero--compliance .ph-compliance-visual {
    animation: ph-hero-visual-in .85s .08s ease-out both;
}

@supports (animation-timeline: view()) {
    .phidea-refined .phidea-site > .ph-section > .ph-wrap {
        animation: ph-view-reveal linear both;
        animation-timeline: view();
        animation-range: entry 8% cover 28%;
    }
}

.phidea-refined .ph-answer-card,
.phidea-refined .ph-maintenance-callout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 68px;
    align-items: start;
    padding: 40px;
    border: 1px solid var(--ph-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(11,36,59,.07);
}

.phidea-refined .ph-answer-card h2,
.phidea-refined .ph-maintenance-callout h2 {
    margin-bottom: 0;
}

.phidea-refined .ph-answer-card p:last-child,
.phidea-refined .ph-maintenance-callout p:last-child {
    margin-bottom: 0;
}

.phidea-refined .ph-source-line {
    padding-top: 10px;
    border-top: 1px solid var(--ph-line);
    color: var(--ph-muted);
    font-size: 14px !important;
}

.phidea-refined .ph-source-line a,
.phidea-refined .ph-source-panel a {
    color: var(--ph-teal) !important;
    font-weight: 750;
}

.phidea-refined .ph-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.phidea-refined .ph-journey-grid article,
.phidea-refined .ph-doc-grid article,
.phidea-refined .ph-role-grid article,
.phidea-refined .ph-case-grid article {
    padding: 28px;
    border: 1px solid var(--ph-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(11,36,59,.055);
}

.phidea-refined .ph-journey-grid article > span,
.phidea-refined .ph-case-grid article > span {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--ph-amber);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
}

.phidea-refined .ph-journey-grid h3,
.phidea-refined .ph-doc-grid h3,
.phidea-refined .ph-role-grid h3,
.phidea-refined .ph-case-grid h3 {
    font-size: 20px;
}

.phidea-refined .ph-journey-grid p,
.phidea-refined .ph-doc-grid p,
.phidea-refined .ph-role-grid p,
.phidea-refined .ph-case-grid p {
    margin-bottom: 0;
    font-size: 15.5px;
}

.phidea-refined .ph-process-note {
    margin-top: 22px;
    padding: 22px 24px;
    border-left: 4px solid var(--ph-amber);
    border-radius: 0 10px 10px 0;
    background: var(--ph-soft);
    color: var(--ph-muted);
    font-size: 15px;
    line-height: 1.7;
}

.phidea-refined .ph-process-note strong {
    color: var(--ph-navy);
}

.phidea-refined .ph-section--navy {
    background: var(--ph-navy);
}

.phidea-refined .ph-heading--light h2,
.phidea-refined .ph-heading--light p {
    color: #fff;
}

.phidea-refined .ph-heading--light p {
    color: #c5d3dc;
}

.phidea-refined .ph-doc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.phidea-refined .ph-doc-grid article {
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.055);
    box-shadow: none;
}

.phidea-refined .ph-doc-grid h3 {
    color: #fff;
}

.phidea-refined .ph-doc-grid p {
    color: #c7d5dc;
}

.phidea-refined .ph-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.phidea-refined .ph-source-panel {
    padding-top: 0;
}

.phidea-refined .ph-source-panel .ph-wrap {
    padding: 36px 40px;
    border: 1px solid var(--ph-line);
    border-radius: 16px;
    background: #fff;
}

.phidea-refined .ph-source-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 24px 0 18px;
}

.phidea-refined .ph-source-panel small {
    color: var(--ph-muted);
}

.phidea-refined .ph-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.phidea-refined .ph-project-grid--captioned .ph-photo {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ph-line);
}

.phidea-refined .ph-project-grid--captioned .ph-photo img {
    width: 100%;
}

.phidea-refined .ph-project-grid--captioned .ph-watermark {
    bottom: 72px;
}

.phidea-refined .ph-project-grid--captioned figcaption {
    position: relative;
    z-index: 3;
    min-height: 72px;
    padding: 14px 16px 16px;
    color: var(--ph-muted);
    background: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.phidea-refined .ph-project-grid--captioned figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--ph-teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.phidea-refined .ph-case-study-ready {
    background: var(--ph-teal);
}

.phidea-refined .ph-case-study-ready .ph-answer-card {
    border-color: rgba(255,255,255,.2);
    background: transparent;
    box-shadow: none;
}

.phidea-refined .ph-case-study-ready h2,
.phidea-refined .ph-case-study-ready p {
    color: #fff;
}

.phidea-refined .ph-case-study-ready p {
    color: #d8eeee;
}

/* Professional repair and maintenance service pillar. */
.phidea-refined .ph-repair-home {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 22%, rgba(15,107,110,.12), transparent 31%),
        linear-gradient(135deg, #f4f8f8 0%, #fff 58%);
}

.phidea-refined .ph-repair-home__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 68px;
}

.phidea-refined .ph-repair-home__intro h2 {
    max-width: 560px;
    margin-bottom: 18px;
}

.phidea-refined .ph-repair-home__intro p {
    max-width: 610px;
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.72;
}

.phidea-refined .ph-repair-home__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.phidea-refined .ph-repair-home__services article {
    min-height: 316px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(15,107,110,.14);
    border-radius: 15px;
    background: rgba(255,255,255,.91);
    box-shadow: 0 12px 32px rgba(11,36,59,.07);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.phidea-refined .ph-repair-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: hidden;
    background: #dce6e6;
}

.phidea-refined .ph-repair-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    content: "";
    pointer-events: none;
    background: linear-gradient(transparent, rgba(11,36,59,.18));
}

.phidea-refined .ph-repair-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.phidea-refined .ph-repair-home__services article:hover .ph-repair-card__media img,
.phidea-refined .ph-repair-grid article:hover .ph-repair-card__media img {
    transform: scale(1.035);
}

.phidea-refined .ph-repair-home__card-body {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 19px 20px 21px;
}

.phidea-refined .ph-repair-home__services article:hover {
    transform: translateY(-5px);
    border-color: rgba(15,107,110,.34);
    box-shadow: 0 20px 42px rgba(11,36,59,.11);
}

.phidea-refined .ph-repair-home__card-body > span,
.phidea-refined .ph-repair-code {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    background: var(--ph-teal);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
}

.phidea-refined .ph-repair-home__services h3 {
    margin: 1px 0 7px;
    font-size: 18px;
}

.phidea-refined .ph-repair-home__services p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
}

.phidea-refined .ph-repair-hub {
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, rgba(15,107,110,.45), transparent 29%),
        var(--ph-navy);
    background-size: 64px 64px, 64px 64px, auto, auto;
}

.phidea-refined .ph-repair-lead {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
    gap: 74px;
    align-items: end;
    margin-bottom: 42px;
}

.phidea-refined .ph-repair-lead h2 {
    max-width: 580px;
    margin: 0;
    color: #fff;
}

.phidea-refined .ph-repair-lead p {
    margin: 0;
    color: #d4e0e6;
    font-size: 17px;
    line-height: 1.7;
}

.phidea-refined .ph-repair-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.phidea-refined .ph-repair-principles span {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.06);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.phidea-refined .ph-repair-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.phidea-refined .ph-repair-grid article {
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 16px 42px rgba(0,0,0,.14);
    backdrop-filter: blur(8px);
    transition: transform .28s ease, background .28s ease, border-color .28s ease;
}

.phidea-refined .ph-repair-grid .ph-repair-card__media {
    border-bottom: 1px solid rgba(255,255,255,.11);
    background: #173147;
}

.phidea-refined .ph-repair-grid .ph-repair-card__content {
    padding: 24px 23px 25px;
}

.phidea-refined .ph-repair-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(215,164,59,.52);
    background: rgba(255,255,255,.105);
}

.phidea-refined .ph-repair-grid .ph-repair-code {
    margin-bottom: 20px;
    color: var(--ph-navy);
    background: var(--ph-amber);
}

.phidea-refined .ph-repair-grid h3 {
    min-height: 52px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.phidea-refined .ph-repair-grid p {
    margin: 0;
    color: #c8d6de;
    font-size: 14px;
    line-height: 1.62;
}

.phidea-refined .ph-diagnostic-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    counter-reset: repair-step;
    list-style: none;
}

.phidea-refined .ph-diagnostic-steps li {
    position: relative;
    min-height: 218px;
    padding: 70px 23px 24px;
    border: 1px solid var(--ph-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(11,36,59,.065);
}

.phidea-refined .ph-diagnostic-steps li::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 35px;
    right: -19px;
    width: 20px;
    height: 1px;
    background: rgba(15,107,110,.36);
}

.phidea-refined .ph-diagnostic-steps li:last-child::after {
    display: none;
}

.phidea-refined .ph-diagnostic-steps li > span {
    position: absolute;
    top: 20px;
    left: 23px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: var(--ph-teal);
    font-size: 11px;
    font-weight: 800;
}

.phidea-refined .ph-diagnostic-steps h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.phidea-refined .ph-diagnostic-steps p {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
}

.phidea-refined .ph-repair-enquiry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;
    margin-top: 22px;
    padding: 27px 30px;
    border-radius: 15px;
    color: #fff;
    background: var(--ph-teal);
}

.phidea-refined .ph-repair-enquiry h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 21px;
}

.phidea-refined .ph-repair-enquiry p {
    max-width: 780px;
    margin: 0;
    color: #def0ef;
    font-size: 14px;
    line-height: 1.58;
}

.phidea-refined .ph-repair-enquiry .ph-btn {
    white-space: nowrap;
}

.phidea-refined .ph-repair-faq--guide {
    border-top: 1px solid rgba(15,107,110,.08);
}

@media (max-width: 900px) {
    .phidea-refined .ph-compliance-hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phidea-refined .ph-compliance-visual {
        justify-self: start;
        max-width: 620px;
    }

    .phidea-refined .ph-answer-card,
    .phidea-refined .ph-maintenance-callout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .phidea-refined .ph-st-site-inspection {
        grid-template-columns: 1fr;
    }

    .phidea-refined .ph-st-site-inspection__image {
        min-height: 0;
    }

    .phidea-refined .ph-journey-grid,
    .phidea-refined .ph-doc-grid,
    .phidea-refined .ph-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phidea-refined .ph-st-process {
        grid-template-columns: 1fr;
        gap: 38px;
        max-width: 720px;
        margin-inline: auto;
    }

    .phidea-refined .ph-st-process li:nth-child(n) {
        grid-area: auto;
        min-height: 0;
    }

    .phidea-refined .ph-st-process li:nth-child(n)::after {
        content: "↓";
        top: auto;
        right: 50%;
        bottom: -34px;
        left: auto;
        display: grid;
        transform: translate(50%, 50%);
    }

    .phidea-refined .ph-st-process li:last-child::after {
        display: none;
    }

    .phidea-refined .ph-repair-home__layout,
    .phidea-refined .ph-repair-lead {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .phidea-refined .ph-repair-grid,
    .phidea-refined .ph-diagnostic-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phidea-refined .ph-diagnostic-steps li:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .phidea-refined .ph-st-mark {
        width: 100%;
        min-height: 170px;
        padding: 12px;
    }

    .phidea-refined .ph-st-mark img {
        width: 235px;
    }

    .phidea-refined .ph-compliance-visual {
        margin: 0;
    }

    .phidea-refined .ph-compliance-visual::before {
        inset: -9px 10px 12px -8px;
    }

    .phidea-refined .ph-approval-pills {
        top: 12px;
        left: 12px;
    }

    .phidea-refined .ph-approval-pills span {
        min-width: 158px;
        padding-block: 7px;
        font-size: 11px;
    }

    .phidea-refined .ph-st-mark--overlay {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 26px);
        min-height: 96px;
        margin: -18px auto 0;
        padding: 14px 18px;
    }

    .phidea-refined .ph-st-mark--overlay img {
        width: 170px;
    }

    .phidea-refined .ph-answer-card,
    .phidea-refined .ph-maintenance-callout,
    .phidea-refined .ph-source-panel .ph-wrap {
        padding: 28px 22px;
    }

    .phidea-refined .ph-journey-grid,
    .phidea-refined .ph-doc-grid,
    .phidea-refined .ph-role-grid,
    .phidea-refined .ph-case-grid,
    .phidea-refined .ph-compliance-gallery {
        grid-template-columns: 1fr;
    }

    .phidea-refined .ph-source-links {
        flex-direction: column;
    }

    .phidea-refined .ph-st-site-inspection figcaption {
        padding: 24px 22px 26px;
    }

    .phidea-refined .ph-project-grid--captioned .ph-watermark {
        bottom: 86px;
    }

    .phidea-refined .ph-project-grid--captioned figcaption {
        min-height: 86px;
    }

    .phidea-refined .ph-repair-home__services,
    .phidea-refined .ph-repair-grid,
    .phidea-refined .ph-diagnostic-steps {
        grid-template-columns: 1fr;
    }

    .phidea-refined .ph-repair-home__services article,
    .phidea-refined .ph-repair-grid article,
    .phidea-refined .ph-diagnostic-steps li {
        min-height: 0;
    }

    .phidea-refined .ph-repair-home__services article,
    .phidea-refined .ph-repair-grid article {
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }

    .phidea-refined .ph-diagnostic-steps li::after {
        display: none;
    }

    .phidea-refined .ph-repair-enquiry {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 22px;
    }

    .phidea-refined .ph-repair-enquiry .ph-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phidea-refined .ph-st-mark--overlay,
    .phidea-refined .ph-hero--compliance .ph-compliance-hero > div:first-child,
    .phidea-refined .ph-hero--compliance .ph-compliance-visual,
    .phidea-refined .phidea-site > .ph-section > .ph-wrap {
        animation: none !important;
    }

    .phidea-refined .ph-compliance-visual figure > img,
    .phidea-refined .ph-compliance-photo > img,
    .phidea-refined .ph-compliance-gallery figure,
    .phidea-refined .ph-st-site-inspection__image > img,
    .phidea-refined .ph-journey-grid article,
    .phidea-refined .ph-doc-grid article,
    .phidea-refined .ph-role-grid article {
        transition: none !important;
    }

    .phidea-refined .ph-st-process li {
        transition: none !important;
    }

    .phidea-refined .ph-repair-home__services article,
    .phidea-refined .ph-repair-grid article {
        transition: none !important;
    }

    .phidea-refined .ph-repair-card__media img {
        transition: none !important;
    }
}
/* Free Polylang language selector for the seven refined customer pages. */
.ph-language-switcher {
    position: absolute;
    top: 0;
    right: 22px;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 2px;
    border: 1px solid rgba(20, 43, 65, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 3px 10px rgba(16, 39, 60, .10);
    backdrop-filter: blur(10px);
}

.admin-bar .ph-language-switcher {
    top: 32px;
}

.ph-language-switcher a {
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    min-height: 24px;
    padding: 3px 7px;
    border-radius: 999px;
    color: #29445d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.ph-language-switcher a:hover,
.ph-language-switcher a:focus-visible,
.ph-language-switcher a.is-current {
    background: #f6a51c;
    color: #142b41;
}

@media (max-width: 767px) {
    .ph-language-switcher {
        top: 0;
        right: 8px;
        bottom: auto;
        left: auto;
        justify-content: center;
    }

    .admin-bar .ph-language-switcher {
        top: 46px;
    }

    .ph-language-switcher a {
        flex: 0 1 auto;
        justify-content: center;
        padding-inline: 6px;
        font-size: 10.5px;
    }
}

/* Refined Simplified Chinese typography, using free web fonts with system fallbacks. */
.ph-language-switcher a[lang^="zh"] {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 650;
    letter-spacing: .02em;
}

html[lang^="zh"] body.phidea-refined,
html[lang^="zh"] body.phidea-refined button,
html[lang^="zh"] body.phidea-refined input,
html[lang^="zh"] body.phidea-refined select,
html[lang^="zh"] body.phidea-refined textarea {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html[lang^="zh"] .phidea-refined h1,
html[lang^="zh"] .phidea-refined h2,
html[lang^="zh"] .phidea-refined h3,
html[lang^="zh"] .phidea-refined .ph-title,
html[lang^="zh"] .phidea-refined .ph-stat strong {
    font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
    font-weight: 700;
    letter-spacing: .025em;
}

/* Concept 05 visual system adapted for Phidea. */
body.phidea-refined.phidea-concept-05 {
    --ph-navy: #061522;
    --ph-navy-2: #0b2130;
    --ph-teal: #7a6250;
    --ph-amber: #d1c4b5;
    --ph-soft: #edf3ef;
    --ph-line: rgba(7, 22, 17, .14);
    --ph-muted: #66746d;
    overflow-x: hidden;
    color: #071611;
    background: #061522;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.phidea-refined.phidea-concept-05 #page {
    overflow: clip;
    background: #f6f3ed;
}

body.phidea-refined.phidea-concept-05 #masthead {
    position: sticky;
    top: 0;
    z-index: 9990;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(5,20,31,.94);
    box-shadow: 0 12px 32px rgba(2,13,21,.18);
    backdrop-filter: blur(18px);
}

body.admin-bar.phidea-refined.phidea-concept-05 #masthead {
    top: 32px;
}

body.phidea-refined.phidea-concept-05 #masthead .elementor-section,
body.phidea-refined.phidea-concept-05 #masthead .elementor-container,
body.phidea-refined.phidea-concept-05 #masthead .elementor-widget-wrap {
    background: transparent !important;
}

body.phidea-refined.phidea-concept-05 #masthead .elementor-container {
    min-height: 80px;
}

body.phidea-refined.phidea-concept-05 #masthead .hfe-site-logo-img {
    filter: brightness(0) invert(1);
}

body.phidea-refined.phidea-concept-05 #masthead .main-navigation a {
    position: relative;
    color: rgba(255,255,255,.76) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .025em;
}

body.phidea-refined.phidea-concept-05 #masthead .main-navigation a::after {
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 1px;
    content: "";
    background: #d1c4b5;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

body.phidea-refined.phidea-concept-05 #masthead .main-navigation a:hover,
body.phidea-refined.phidea-concept-05 #masthead .current-menu-item > a {
    color: #fff !important;
}

body.phidea-refined.phidea-concept-05 #masthead .main-navigation a:hover::after,
body.phidea-refined.phidea-concept-05 #masthead .current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

body.phidea-refined.phidea-concept-05 #masthead .phidea-menu-whatsapp > a,
body.phidea-refined.phidea-concept-05 #masthead a[href*="wa.me"] {
    min-height: 43px;
    color: #052117 !important;
    border: 0 !important;
    border-radius: 3px !important;
    background: #d1c4b5 !important;
    box-shadow: none !important;
}

body.phidea-refined.phidea-concept-05 #masthead .phidea-menu-whatsapp > a:hover,
body.phidea-refined.phidea-concept-05 #masthead a[href*="wa.me"]:hover {
    background: #eee5da !important;
    transform: translateY(-2px);
}

body.phidea-refined.phidea-concept-05 .ph-language-switcher {
    border-color: rgba(255,255,255,.16);
    background: rgba(5,20,31,.9);
    box-shadow: 0 8px 22px rgba(0,0,0,.2);
}

body.phidea-refined.phidea-concept-05 .ph-language-switcher a {
    color: rgba(255,255,255,.72);
}

body.phidea-refined.phidea-concept-05 .ph-language-switcher a:hover,
body.phidea-refined.phidea-concept-05 .ph-language-switcher a:focus-visible,
body.phidea-refined.phidea-concept-05 .ph-language-switcher a.is-current {
    color: #052117;
    background: #d1c4b5;
}

body.phidea-refined.phidea-concept-05 .phidea-site {
    background: #f6f3ed;
}

body.phidea-refined.phidea-concept-05 .ph-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(209,196,181,.2), transparent 29%),
        #061522;
}

body.phidea-refined.phidea-concept-05 .ph-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: .1;
    background-image:
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: clamp(64px, 8.333vw, 112px) clamp(64px, 8.333vw, 112px);
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    pointer-events: none;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home {
    min-height: clamp(650px, calc(100svh - 80px), 820px);
    padding: 0;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__grid {
    position: relative;
    min-height: clamp(650px, calc(100svh - 80px), 820px);
    display: flex;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero {
    position: absolute;
    z-index: -2;
    top: 0;
    right: calc((100vw - 100%) / -2);
    bottom: 0;
    left: 38%;
    overflow: hidden;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #061522;
    box-shadow: none;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(90deg, #061522 0%, rgba(6,21,34,.88) 18%, rgba(6,21,34,.3) 58%, rgba(6,21,34,.2) 100%),
        linear-gradient(180deg, rgba(3,13,21,.24), transparent 46%, rgba(3,13,21,.48));
    pointer-events: none;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero::after {
    position: absolute;
    z-index: 2;
    top: 56%;
    left: 23%;
    width: 86%;
    height: 1px;
    content: "";
    opacity: .52;
    background: linear-gradient(90deg, transparent, #4dc9ff, transparent);
    filter: drop-shadow(0 0 7px #4dc9ff);
    transform: rotate(-6deg);
    animation: ph-concept-pulse 5.5s ease-in-out infinite;
    pointer-events: none;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    filter: saturate(.9) contrast(1.04) brightness(.72);
    animation: ph-concept-hero-zoom 8s ease-out both;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__copy {
    position: relative;
    z-index: 3;
    width: min(690px, 62%);
    max-width: none;
    padding: 18px 0 24px;
    animation: ph-concept-copy-in .75s ease-out both;
}

body.phidea-refined.phidea-concept-05 .ph-kicker {
    color: #7a6250;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

body.phidea-refined.phidea-concept-05 .ph-kicker::before {
    width: 29px;
    height: 1px;
    margin-right: 12px;
    background: currentColor;
}

body.phidea-refined.phidea-concept-05 .ph-kicker--light {
    color: #d1c4b5;
}

body.phidea-refined.phidea-concept-05 .ph-hero h1,
body.phidea-refined.phidea-concept-05 .ph-section h2 {
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    letter-spacing: -.052em;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(56px, 6.25vw, 96px);
    line-height: .98;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home h1 em {
    display: block;
    color: #d1c4b5;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.045em;
}

body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__copy > p {
    max-width: 610px;
    margin-top: 28px;
    color: rgba(255,255,255,.72);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.65;
}

body.phidea-refined.phidea-concept-05 .ph-actions {
    gap: 12px;
    margin-top: 32px;
}

body.phidea-refined.phidea-concept-05 .ph-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .015em;
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

body.phidea-refined.phidea-concept-05 .ph-btn:hover {
    transform: translateY(-2px);
}

body.phidea-refined.phidea-concept-05 .ph-btn--amber {
    color: #052117;
    background: #d1c4b5;
}

body.phidea-refined.phidea-concept-05 .ph-btn--amber:hover {
    background: #eee5da;
}

body.phidea-refined.phidea-concept-05 .ph-btn--ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
}

body.phidea-refined.phidea-concept-05 .ph-hero__points {
    gap: 0;
    margin-top: 36px;
    color: rgba(255,255,255,.58);
}

body.phidea-refined.phidea-concept-05 .ph-hero__points span {
    position: relative;
    padding: 0 15px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

body.phidea-refined.phidea-concept-05 .ph-hero__points span:first-child {
    padding-left: 0;
}

body.phidea-refined.phidea-concept-05 .ph-hero__points span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -2px;
    width: 3px;
    height: 3px;
    content: "";
    border-radius: 50%;
    background: #d1c4b5;
    transform: translateY(-50%);
}

body.phidea-refined.phidea-concept-05 .ph-section,
body.phidea-refined.phidea-concept-05 .ph-section--soft {
    background: #f6f3ed;
}

body.phidea-refined.phidea-concept-05 .ph-section {
    padding-top: clamp(88px, 9vw, 132px);
    padding-bottom: clamp(88px, 9vw, 132px);
}

body.phidea-refined.phidea-concept-05 .ph-heading h2,
body.phidea-refined.phidea-concept-05 .ph-repair-home__intro h2,
body.phidea-refined.phidea-concept-05 .ph-repair-lead h2,
body.phidea-refined.phidea-concept-05 .ph-faq-short h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
}

body.phidea-refined.phidea-concept-05 .ph-repair-home {
    position: relative;
    background: #edf3ef;
}

body.phidea-refined.phidea-concept-05 .ph-repair-home::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .08;
    background-image:
        linear-gradient(rgba(7,22,17,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7,22,17,.22) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

body.phidea-refined.phidea-concept-05 .ph-repair-home__layout {
    position: relative;
    z-index: 1;
}

body.phidea-refined.phidea-concept-05 .ph-repair-home__services {
    gap: 0;
    border-top: 1px solid rgba(7,22,17,.14);
    border-left: 1px solid rgba(7,22,17,.14);
}

body.phidea-refined.phidea-concept-05 .ph-repair-home__services article {
    border: 0;
    border-right: 1px solid rgba(7,22,17,.14);
    border-bottom: 1px solid rgba(7,22,17,.14);
    border-radius: 0;
    background: rgba(246,243,237,.88);
    box-shadow: none;
}

body.phidea-refined.phidea-concept-05 .ph-repair-home__services article:hover {
    color: #fff;
    border-color: rgba(255,255,255,.14);
    background: #061522;
    box-shadow: 0 22px 46px rgba(2,13,21,.16);
}

body.phidea-refined.phidea-concept-05 .ph-repair-home__services article:hover h3,
body.phidea-refined.phidea-concept-05 .ph-repair-home__services article:hover p {
    color: inherit;
}

body.phidea-refined.phidea-concept-05 .ph-repair-home__card-body > span,
body.phidea-refined.phidea-concept-05 .ph-repair-code {
    color: #052117;
    border-radius: 50%;
    background: #d1c4b5;
}

body.phidea-refined.phidea-concept-05 .ph-repair-hub {
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, rgba(209,196,181,.34), transparent 29%),
        #061522;
    background-size: 80px 80px, 80px 80px, auto, auto;
}

body.phidea-refined.phidea-concept-05 .ph-repair-grid {
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 1px solid rgba(255,255,255,.14);
}

body.phidea-refined.phidea-concept-05 .ph-repair-grid article {
    border: 0;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
    box-shadow: none;
}

body.phidea-refined.phidea-concept-05 .ph-repair-enquiry {
    border-radius: 3px;
    color: #052117;
    background: #d1c4b5;
}

body.phidea-refined.phidea-concept-05 .ph-repair-enquiry h3,
body.phidea-refined.phidea-concept-05 .ph-repair-enquiry p {
    color: #052117;
}

body.phidea-refined.phidea-concept-05 .ph-diagnostic-steps {
    gap: 0;
}

body.phidea-refined.phidea-concept-05 .ph-diagnostic-steps li {
    border-radius: 0;
    box-shadow: none;
}

body.phidea-refined.phidea-concept-05 .ph-diagnostic-steps li > span {
    color: #052117;
    background: #d1c4b5;
}

body.phidea-refined.phidea-concept-05 .ph-compliance-gallery figure,
body.phidea-refined.phidea-concept-05 .ph-st-site-inspection,
body.phidea-refined.phidea-concept-05 .ph-st-process li,
body.phidea-refined.phidea-concept-05 .ph-project-grid figure,
body.phidea-refined.phidea-concept-05 .ph-accordion details {
    border-radius: 4px;
}

body.phidea-refined.phidea-concept-05 .phidea-site > .ph-section > .ph-wrap {
    animation: ph-concept-view-reveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 28%;
}

@keyframes ph-concept-copy-in {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ph-concept-hero-zoom {
    from { opacity: .55; transform: scale(1.055); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes ph-concept-pulse {
    0%, 100% { opacity: .2; transform: rotate(-6deg) translateX(-5%); }
    50% { opacity: .72; transform: rotate(-6deg) translateX(5%); }
}

@keyframes ph-concept-view-reveal {
    from { opacity: .2; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    body.phidea-refined.phidea-concept-05 #masthead .elementor-container {
        min-height: 72px;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home,
    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__grid {
        min-height: 700px;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero {
        left: 30%;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__copy {
        width: min(650px, 72%);
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home h1 {
        font-size: clamp(54px, 8vw, 78px);
    }
}

@media (max-width: 782px) {
    body.admin-bar.phidea-refined.phidea-concept-05 #masthead {
        top: 46px;
    }
}

@media (max-width: 767px) {
    body.phidea-refined.phidea-concept-05 #masthead .elementor-container {
        min-height: 66px;
    }

    body.phidea-refined.phidea-concept-05 #masthead .hfe-site-logo-img {
        max-width: 150px;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home,
    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__grid {
        min-height: 720px;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__grid {
        align-items: flex-end;
        padding-top: 96px;
        padding-bottom: 54px;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero {
        right: calc((100vw - 100%) / -2);
        left: calc((100vw - 100%) / -2);
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero::before {
        background:
            linear-gradient(180deg, rgba(6,21,34,.18) 0%, rgba(6,21,34,.58) 35%, rgba(6,21,34,.96) 78%, #061522 100%),
            linear-gradient(90deg, rgba(6,21,34,.62), transparent);
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero img {
        object-position: 62% center;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__copy {
        width: 100%;
        padding: 0;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home h1 {
        font-size: clamp(44px, 13.4vw, 62px);
    }

    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__copy > p {
        font-size: 16px;
        line-height: 1.55;
    }

    body.phidea-refined.phidea-concept-05 .ph-actions .ph-btn {
        width: 100%;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero__points {
        gap: 8px 0;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero__points span {
        padding-inline: 10px;
        letter-spacing: .1em;
    }

    body.phidea-refined.phidea-concept-05 .ph-hero__points span:first-child {
        padding-left: 0;
    }

    body.phidea-refined.phidea-concept-05 .ph-repair-home__services,
    body.phidea-refined.phidea-concept-05 .ph-repair-grid {
        border-left: 1px solid rgba(7,22,17,.14);
    }

    body.phidea-refined.phidea-concept-05 .ph-repair-grid {
        border-left-color: rgba(255,255,255,.14);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero img,
    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-visual--hero::after,
    body.phidea-refined.phidea-concept-05 .ph-hero--home .ph-hero__copy,
    body.phidea-refined.phidea-concept-05 .phidea-site > .ph-section > .ph-wrap {
        animation: none !important;
    }
}

/* Phidea Motion Perimeter: brand-led colour and accessible image motion. */
body.phidea-refined.phidea-motion-perimeter {
    --ph-navy: #081824;
    --ph-navy-2: #152f42;
    --ph-teal: #2b445e;
    --ph-amber: #d1c4b5;
    --ph-highlight: #d1c4b5;
    --ph-highlight-soft: #eee5da;
    --ph-cyan: #e3d7c9;
    --ph-soft: #eeeae1;
    --ph-line: rgba(43, 68, 94, .18);
    --ph-muted: #6b7378;
    color: #102231;
    background: #081824;
}

body.phidea-refined.phidea-motion-perimeter #page,
body.phidea-refined.phidea-motion-perimeter .phidea-site,
body.phidea-refined.phidea-motion-perimeter .ph-section,
body.phidea-refined.phidea-motion-perimeter .ph-section--soft {
    background-color: #f5f4ef;
}

body.phidea-refined.phidea-motion-perimeter #masthead {
    background: rgba(7, 22, 34, .95);
    box-shadow: 0 12px 32px rgba(3, 15, 25, .2);
}

body.phidea-refined.phidea-motion-perimeter #masthead .main-navigation a::after,
body.phidea-refined.phidea-motion-perimeter .ph-hero__points span:not(:last-child)::after {
    background: var(--ph-highlight);
}

body.phidea-refined.phidea-motion-perimeter #masthead .phidea-menu-whatsapp > a,
body.phidea-refined.phidea-motion-perimeter #masthead a[href*="wa.me"],
body.phidea-refined.phidea-motion-perimeter .ph-btn--amber {
    color: #172331 !important;
    background: var(--ph-highlight) !important;
}

body.phidea-refined.phidea-motion-perimeter #masthead .phidea-menu-whatsapp > a:hover,
body.phidea-refined.phidea-motion-perimeter #masthead a[href*="wa.me"]:hover,
body.phidea-refined.phidea-motion-perimeter .ph-btn--amber:hover {
    background: var(--ph-highlight-soft) !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-language-switcher {
    background: rgba(7, 22, 34, .94);
}

body.phidea-refined.phidea-motion-perimeter .ph-language-switcher a:hover,
body.phidea-refined.phidea-motion-perimeter .ph-language-switcher a:focus-visible,
body.phidea-refined.phidea-motion-perimeter .ph-language-switcher a.is-current {
    color: #172331;
    background: var(--ph-highlight);
}

body.phidea-refined.phidea-motion-perimeter .ph-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(209,196,181, .22), transparent 30%),
        #081824;
}

body.phidea-refined.phidea-motion-perimeter .ph-hero--home .ph-visual--hero::before {
    background:
        linear-gradient(90deg, #0b1d2c 0%, rgba(11, 29, 44, .9) 18%, rgba(11, 29, 44, .34) 58%, rgba(11, 29, 44, .22) 100%),
        linear-gradient(180deg, rgba(3, 15, 25, .24), transparent 46%, rgba(3, 15, 25, .5));
}

body.phidea-refined.phidea-motion-perimeter .ph-hero--home .ph-visual--hero::after {
    background: linear-gradient(90deg, transparent, var(--ph-cyan), transparent);
    filter: drop-shadow(0 0 8px var(--ph-cyan));
}

body.phidea-refined.phidea-motion-perimeter .ph-kicker {
    color: #725c4c;
}

body.phidea-refined.phidea-motion-perimeter .ph-kicker--light,
body.phidea-refined.phidea-motion-perimeter .ph-hero--home h1 em {
    color: var(--ph-highlight);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home {
    background: var(--ph-soft);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home::before {
    background-image:
        linear-gradient(rgba(43, 68, 94, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 68, 94, .18) 1px, transparent 1px);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home__services {
    border-color: rgba(43, 68, 94, .17);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home__services article {
    border-color: rgba(43, 68, 94, .17);
    background: rgba(248, 248, 244, .9);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home__services article:hover {
    background: #0b1d2c;
    box-shadow: 0 24px 52px rgba(8, 27, 42, .2);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home__card-body > span,
body.phidea-refined.phidea-motion-perimeter .ph-repair-code,
body.phidea-refined.phidea-motion-perimeter .ph-diagnostic-steps li > span {
    color: #0b2636;
    background: var(--ph-highlight);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-hub {
    background:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, rgba(209,196,181, .24), transparent 31%),
        #081824;
    background-size: 80px 80px, 80px 80px, auto, auto;
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-enquiry {
    color: #172331;
    background: var(--ph-highlight);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-enquiry h3,
body.phidea-refined.phidea-motion-perimeter .ph-repair-enquiry p {
    color: #172331;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero {
    --ph-motion-x: 0px;
    --ph-motion-y: 0px;
    z-index: 0;
    isolation: isolate;
    pointer-events: auto;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__stage,
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide {
    position: absolute;
    inset: 0;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__stage {
    z-index: 0;
    overflow: hidden;
    transform: translate3d(var(--ph-motion-x), var(--ph-motion-y), 0) scale(1.022);
    transition: transform .9s cubic-bezier(.2, .75, .2, 1);
    will-change: transform;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.25s cubic-bezier(.2, .75, .2, 1), visibility 1.25s step-end;
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.25s cubic-bezier(.2, .75, .2, 1), visibility 0s step-start;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: saturate(.88) contrast(1.05) brightness(.74);
    transform: scale(1.08);
    animation: none !important;
    will-change: transform;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide--night.is-active img {
    animation: phidea-motion-dolly-one 6.1s linear both !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide--boundary.is-active img {
    animation: phidea-motion-dolly-two 6.1s linear both !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide--commercial img {
    object-position: 50% 43%;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide--commercial.is-active img {
    animation: phidea-motion-dolly-three 6.1s linear both !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero[data-paused="true"] .ph-motion-hero__slide img,
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero[data-paused="true"] .ph-motion-hero__lens,
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero[data-paused="true"] .ph-motion-hero__wires i::after,
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero[data-paused="true"]::after {
    animation-play-state: paused !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__lens {
    position: absolute;
    z-index: 2;
    inset: -20% -35%;
    opacity: .34;
    background: radial-gradient(circle at 72% 55%, rgba(229, 199, 133, .3), transparent 24%);
    mix-blend-mode: screen;
    animation: phidea-motion-lens 8s ease-in-out infinite alternate;
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires {
    position: absolute;
    z-index: 3;
    inset: 35% -8% 8% 54%;
    opacity: .5;
    transform: rotate(-7deg);
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 133, .38), transparent);
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(1) { top: 6%; }
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(2) { top: 34%; }
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(3) { top: 62%; }
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(4) { top: 90%; }

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i::after {
    position: absolute;
    top: -2px;
    left: -2%;
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: #fff7e4;
    box-shadow: 0 0 16px 4px rgba(209,196,181, .78);
    animation: phidea-motion-wire-node 5.4s linear infinite;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(2)::after { animation-delay: -1.6s; }
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(3)::after { animation-delay: -3.2s; }
body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i:nth-child(4)::after { animation-delay: -4.5s; }

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__hud {
    position: absolute;
    z-index: 5;
    right: clamp(26px, 4vw, 74px);
    bottom: 12%;
    width: min(350px, 31vw);
    padding: 19px 20px 17px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    background: rgba(8, 27, 42, .48);
    box-shadow: 0 18px 45px rgba(3, 14, 23, .18);
    backdrop-filter: blur(12px);
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__counter {
    display: block;
    margin-bottom: 16px;
    color: var(--ph-highlight);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__caption {
    display: grid;
    gap: 7px;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__caption strong {
    font-size: 15px;
    font-weight: 750;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__caption span {
    color: rgba(255, 255, 255, .68);
    font-size: 12.5px;
    line-height: 1.55;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    padding: 7px 0;
    border: 0;
    color: rgba(255, 255, 255, .68);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__toggle span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ph-highlight);
    box-shadow: 0 0 12px rgba(209,196,181, .7);
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero[data-paused="true"] .ph-motion-hero__toggle span {
    background: rgba(255, 255, 255, .46);
    box-shadow: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots {
    position: absolute;
    z-index: 6;
    right: clamp(26px, 4vw, 74px);
    bottom: calc(12% - 25px);
    display: flex;
    gap: 8px;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots button {
    width: 48px;
    height: 18px;
    padding: 0;
    border: 0;
    background: linear-gradient(transparent 8px, rgba(255, 255, 255, .34) 8px, rgba(255, 255, 255, .34) 10px, transparent 10px);
    cursor: pointer;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots button::after {
    display: block;
    width: 0;
    height: 2px;
    margin-top: 8px;
    content: "";
    background: var(--ph-highlight);
    transition: width .32s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots button.is-active::after {
    width: 100%;
}

.phidea-motion-ready body.phidea-refined.phidea-motion-perimeter .phidea-site > .ph-section > .ph-wrap {
    opacity: 0;
    transform: translateY(34px);
    animation: none !important;
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .72, .25, 1);
}

.phidea-motion-ready body.phidea-refined.phidea-motion-perimeter .phidea-site > .ph-section > .ph-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes phidea-motion-dolly-one {
    from { transform: scale(1.1) translate3d(-1.1%, .7%, 0); }
    to { transform: scale(1.025) translate3d(.7%, -.4%, 0); }
}

@keyframes phidea-motion-dolly-two {
    from { transform: scale(1.085) translate3d(1.1%, -.4%, 0); }
    to { transform: scale(1.025) translate3d(-.7%, .5%, 0); }
}

@keyframes phidea-motion-dolly-three {
    from { transform: scale(1.12) translate3d(0, 1.1%, 0); }
    to { transform: scale(1.035) translate3d(.8%, -.5%, 0); }
}

@keyframes phidea-motion-lens {
    from { opacity: .22; transform: translate3d(-5%, -2%, 0); }
    to { opacity: .42; transform: translate3d(7%, 2%, 0); }
}

@keyframes phidea-motion-wire-node {
    from { left: -2%; opacity: 0; }
    10%, 88% { opacity: 1; }
    to { left: 102%; opacity: 0; }
}

@media (max-width: 1024px) {
    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__hud {
        right: 28px;
        width: 310px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots {
        right: 28px;
    }
}

@media (max-width: 767px) {
    body.phidea-refined.phidea-motion-perimeter .ph-hero--home .ph-visual--hero::before {
        background:
            linear-gradient(180deg, rgba(11, 29, 44, .2) 0%, rgba(11, 29, 44, .6) 35%, rgba(11, 29, 44, .96) 78%, #0b1d2c 100%),
            linear-gradient(90deg, rgba(11, 29, 44, .66), transparent);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide img {
        object-position: 62% center;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide--commercial img {
        object-position: 52% 42%;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires {
        display: none;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__hud {
        top: 88px;
        right: 18px;
        bottom: auto;
        width: auto;
        min-width: 142px;
        padding: 11px 13px;
        background: rgba(8, 27, 42, .58);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__counter {
        margin-bottom: 7px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__caption span {
        display: none;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__caption strong {
        font-size: 12px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__toggle {
        margin-top: 6px;
        padding-bottom: 0;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots {
        top: 178px;
        right: 18px;
        bottom: auto;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__dots button {
        width: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide.is-active img {
        transform: scale(1.025);
        animation: none !important;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__stage,
    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__slide,
    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__lens,
    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__wires i::after,
    .phidea-motion-ready body.phidea-refined.phidea-motion-perimeter .phidea-site > .ph-section > .ph-wrap {
        transition: none !important;
        animation: none !important;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-motion-hero__toggle {
        display: none;
    }

    .phidea-motion-ready body.phidea-refined.phidea-motion-perimeter .phidea-site > .ph-section > .ph-wrap {
        opacity: 1;
        transform: none;
    }
}

/* Motion-led homepage: navy blue, warm beige and reduced editorial copy. */
body.phidea-refined.phidea-motion-perimeter {
    --ph-navy: #121d32;
    --ph-navy-2: #1c2a43;
    --ph-ink: #182235;
    --ph-beige: #d1c4b5;
    --ph-beige-soft: #eee5da;
    --ph-cream: #f6f1ea;
    --ph-taupe: #725c4c;
}

body.phidea-refined.phidea-motion-perimeter #page,
body.phidea-refined.phidea-motion-perimeter .phidea-site,
body.phidea-refined.phidea-motion-perimeter .ph-section,
body.phidea-refined.phidea-motion-perimeter .ph-section--soft {
    background-color: var(--ph-cream);
}

body.phidea-refined.phidea-motion-perimeter #masthead {
    background: rgba(14, 24, 42, .96);
}

body.phidea-refined.phidea-motion-perimeter .ph-repair-home__services article:hover {
    background: var(--ph-navy);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero {
    position: relative;
    min-height: clamp(690px, calc(100svh - 80px), 920px);
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: var(--ph-navy);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    opacity: .13;
    background-image:
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: clamp(70px, 8vw, 112px) clamp(70px, 8vw, 112px);
    mask-image: linear-gradient(90deg, #000, transparent 76%);
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero > .ph-motion-hero {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--ph-navy);
    box-shadow: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__stage {
    inset: -1.5%;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__slide img {
    filter: saturate(.76) contrast(1.08) brightness(.62);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__shade {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,18,33,.96) 0%, rgba(10,18,33,.86) 31%, rgba(10,18,33,.39) 62%, rgba(10,18,33,.28) 100%),
        linear-gradient(180deg, rgba(9,17,31,.16), transparent 48%, rgba(9,17,31,.62));
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__layout {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: clamp(690px, calc(100svh - 80px), 920px);
    padding-top: 70px;
    padding-bottom: 82px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy {
    width: min(720px, 62%);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy h1 {
    max-width: 760px;
    margin: 22px 0 0;
    color: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(60px, 7.2vw, 112px);
    font-weight: 400;
    line-height: .91;
    letter-spacing: -.066em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy h1 em,
body.phidea-refined.phidea-motion-perimeter .ph-home-heading h2 em,
body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy h2 em,
body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading h2 em {
    color: var(--ph-beige);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.04em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy > p {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.65;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
    color: rgba(255,255,255,.56);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__proof i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ph-beige);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-scroll {
    position: absolute;
    z-index: 6;
    bottom: 34px;
    left: max(26px, calc((100vw - 1240px) / 2));
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-decoration: none;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-scroll span {
    display: block;
    width: 1px;
    height: 42px;
    background: linear-gradient(var(--ph-beige), transparent);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__hud {
    z-index: 7;
    border-color: rgba(209,196,181,.26);
    background: rgba(17,29,50,.56);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__dots {
    z-index: 8;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-heading {
    margin-bottom: clamp(42px, 5vw, 70px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-heading--split {
    display: grid;
    grid-template-columns: minmax(210px, .68fr) minmax(0, 1.32fr);
    align-items: end;
    gap: clamp(34px, 6vw, 96px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-heading small,
body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy > small,
body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading small {
    display: block;
    margin-top: 13px;
    color: var(--ph-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-heading h2,
body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy h2,
body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading h2 {
    margin: 0;
    color: var(--ph-ink);
    font-size: clamp(43px, 5.1vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.052em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-standard {
    padding-top: clamp(88px, 9vw, 140px);
    padding-bottom: clamp(88px, 9vw, 140px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(18,29,50,.18);
    border-bottom: 1px solid rgba(18,29,50,.18);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles article {
    min-height: 290px;
    padding: 28px 27px 32px;
    border-right: 1px solid rgba(18,29,50,.18);
    transition: color .28s ease, background .28s ease, transform .28s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:last-child {
    border-right: 0;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:hover {
    color: #fff;
    background: var(--ph-navy);
    transform: translateY(-8px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles article > span {
    color: var(--ph-taupe);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles h3 {
    margin: 80px 0 16px;
    color: inherit;
    font-size: clamp(25px, 2.25vw, 34px);
    font-weight: 500;
    letter-spacing: -.03em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles p {
    margin: 0;
    color: var(--ph-muted);
    font-size: 14px;
    line-height: 1.7;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:hover > span {
    color: var(--ph-beige);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:hover p {
    color: rgba(255,255,255,.68);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system {
    padding-top: clamp(84px, 8vw, 132px);
    padding-bottom: clamp(84px, 8vw, 132px);
    color: #fff;
    background:
        radial-gradient(circle at 84% 16%, rgba(209,196,181,.13), transparent 28%),
        var(--ph-navy) !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    align-items: center;
    gap: clamp(46px, 7vw, 104px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(209,196,181,.24);
    background: #0c1729;
    box-shadow: 0 36px 84px rgba(2,8,18,.35);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 52%, rgba(10,18,33,.78));
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(.8) contrast(1.05) brightness(.78);
    transition: transform .9s cubic-bezier(.2,.72,.2,1), filter .45s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual:hover img {
    transform: scale(1.04);
    filter: saturate(.9) contrast(1.04) brightness(.86);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual span {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 20px;
    left: 24px;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy h2,
body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading h2 {
    margin-top: 24px;
    color: #fff;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy > p,
body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading p {
    margin: 28px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.75;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy ul {
    display: grid;
    gap: 0;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,.14);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy li {
    position: relative;
    padding: 14px 0 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: var(--ph-beige);
    transform: translateY(-50%);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected {
    padding-top: clamp(84px, 8vw, 128px);
    padding-bottom: clamp(84px, 8vw, 128px);
    background: #e9e0d5 !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__layout {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(48px, 8vw, 118px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__copy > small {
    display: block;
    margin-top: 13px;
    color: #776e66;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__copy h2 {
    margin: 24px 0 0;
    color: var(--ph-ink);
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.052em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__copy h2 em {
    color: #776454;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__copy > p {
    margin: 28px 0 30px;
    color: #5f5a55;
    font-size: 15px;
    line-height: 1.72;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 54px);
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
        #1c2436;
    background-size: 58px 58px, 58px 58px, auto;
    box-shadow: 0 34px 70px rgba(18,29,50,.24);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 27px;
    border-bottom: 1px solid rgba(209,196,181,.2);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console header small {
    color: var(--ph-beige);
    font-size: 8.5px;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console h3 {
    margin: 9px 0 0;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 500;
    letter-spacing: -.03em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console header > span {
    width: 13px;
    height: 13px;
    margin-top: 5px;
    border: 3px solid rgba(209,196,181,.22);
    border-radius: 50%;
    background: var(--ph-beige);
    box-shadow: 0 0 0 7px rgba(209,196,181,.08), 0 0 20px rgba(209,196,181,.42);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console dl {
    position: relative;
    z-index: 2;
    margin: 14px 0 0;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console dl > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console dt {
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console dd {
    margin: 0;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: right;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__console > p {
    position: relative;
    z-index: 2;
    margin: 21px 0 0;
    color: rgba(255,255,255,.5);
    font-size: 11px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__signal {
    position: absolute;
    z-index: 1;
    top: 18%;
    right: -3%;
    width: 210px;
    aspect-ratio: 1;
    pointer-events: none;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__signal i {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(209,196,181,.24);
    border-radius: 50%;
    animation: phidea-connected-signal 3.8s ease-out infinite;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-connected__signal i:nth-child(2) { animation-delay: -1.25s; }
body.phidea-refined.phidea-motion-perimeter .ph-home-connected__signal i:nth-child(3) { animation-delay: -2.5s; }

@keyframes phidea-connected-signal {
    0% { inset: 50%; opacity: .72; }
    100% { inset: 0; opacity: 0; }
}

body.phidea-refined.phidea-motion-perimeter .ph-home-applications {
    padding-top: clamp(88px, 9vw, 140px);
    padding-bottom: clamp(88px, 9vw, 140px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    color: #fff;
    background: var(--ph-navy);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(180deg, rgba(9,17,31,.05) 34%, rgba(9,17,31,.9));
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.04);
    transition: transform .75s cubic-bezier(.2,.72,.2,1), filter .35s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article:hover img {
    transform: scale(1.055);
    filter: saturate(.94) contrast(1.02);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article > span {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    color: var(--ph-beige-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article > div {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    left: 24px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.03em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid p {
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 12.5px;
    line-height: 1.6;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-applications .ph-center-action {
    margin-top: 34px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service {
    padding-top: clamp(86px, 8vw, 132px);
    padding-bottom: clamp(90px, 9vw, 142px);
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 78% 8%, rgba(209,196,181,.15), transparent 28%),
        #1c2436 !important;
    background-size: 84px 84px, 84px 84px, auto, auto;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .72fr);
    align-items: end;
    gap: clamp(42px, 8vw, 118px);
    margin-bottom: clamp(46px, 6vw, 78px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading > div:last-child {
    padding-bottom: 7px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading .ph-btn {
    margin-top: 26px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article {
    overflow: hidden;
    border: 1px solid rgba(209,196,181,.18);
    background: rgba(255,255,255,.045);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article:hover {
    border-color: rgba(209,196,181,.52);
    background: rgba(255,255,255,.075);
    transform: translateY(-7px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(.72) contrast(1.08) brightness(.78);
    transition: transform .65s ease, filter .35s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article:hover img {
    transform: scale(1.04);
    filter: saturate(.86) contrast(1.05) brightness(.86);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article > div {
    padding: 22px 20px 25px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 12.5px;
    line-height: 1.55;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-paths {
    padding-top: clamp(88px, 9vw, 140px);
    padding-bottom: clamp(88px, 9vw, 140px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(18,29,50,.18);
    border-bottom: 1px solid rgba(18,29,50,.18);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: start;
    gap: 16px;
    min-height: 200px;
    padding: 28px 26px;
    border-right: 1px solid rgba(18,29,50,.18);
    color: var(--ph-ink);
    text-decoration: none;
    transition: color .28s ease, background .28s ease, transform .28s ease;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a:last-child {
    border-right: 0;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a:hover {
    color: #fff;
    background: var(--ph-navy);
    transform: translateY(-7px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(18,29,50,.22);
    color: var(--ph-taupe);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a:hover > span {
    border-color: rgba(209,196,181,.44);
    color: var(--ph-beige);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid h3 {
    margin: 2px 0 12px;
    color: inherit;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.025em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid p {
    margin: 0;
    color: var(--ph-muted);
    font-size: 13px;
    line-height: 1.6;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a:hover p {
    color: rgba(255,255,255,.65);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid b {
    color: var(--ph-taupe);
    font-size: 19px;
    font-weight: 400;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary {
    padding: clamp(58px, 6vw, 84px) 0;
    border-top: 1px solid rgba(18,29,50,.12);
    background: #e9e0d5 !important;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary .ph-wrap {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    gap: 26px clamp(38px, 7vw, 100px);
}

body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary h2 {
    margin: 0;
    color: var(--ph-ink);
    font-size: clamp(23px, 2.25vw, 32px);
    font-weight: 550;
    line-height: 1.24;
    letter-spacing: -.028em;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary p {
    margin: 0 0 12px;
    color: #5f5a55;
    font-size: 14.5px;
    line-height: 1.72;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary nav {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    padding-top: 4px;
}

body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary nav a {
    color: var(--ph-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-transform: uppercase;
}

body.phidea-refined.phidea-motion-perimeter .ph-cta {
    background:
        radial-gradient(circle at 78% 20%, rgba(209,196,181,.14), transparent 28%),
        var(--ph-navy) !important;
}

html[lang^="zh"] body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy h1 em,
html[lang^="zh"] body.phidea-refined.phidea-motion-perimeter .ph-home-heading h2 em,
html[lang^="zh"] body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy h2 em,
html[lang^="zh"] body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading h2 em {
    font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
}

@media (max-width: 1100px) {
    body.phidea-refined.phidea-motion-perimeter .ph-home-principles,
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:nth-child(2),
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article:nth-child(2) {
        border-right: 0;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(18,29,50,.18);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article {
        min-height: 520px;
    }
}

@media (max-width: 900px) {
    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy {
        width: min(680px, 76%);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__hud {
        right: 24px;
        bottom: 8%;
        width: 280px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__dots {
        right: 24px;
        bottom: calc(8% - 25px);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-heading--split,
    body.phidea-refined.phidea-motion-perimeter .ph-home-system__layout,
    body.phidea-refined.phidea-motion-perimeter .ph-home-connected__layout,
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading,
    body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary .ph-wrap {
        grid-template-columns: 1fr;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-heading--split {
        align-items: start;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual {
        order: 2;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading {
        align-items: start;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-seo-summary nav {
        grid-column: 1;
    }
}

@media (max-width: 767px) {
    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero {
        min-height: 790px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__layout {
        align-items: flex-end;
        min-height: 790px;
        padding-top: 220px;
        padding-bottom: 70px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy {
        width: 100%;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy h1 {
        margin-top: 17px;
        font-size: clamp(49px, 15.5vw, 72px);
        line-height: .95;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy > p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.58;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__proof {
        flex-wrap: wrap;
        gap: 9px 11px;
        margin-top: 25px;
        font-size: 8.5px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-scroll {
        display: none;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__shade {
        background:
            linear-gradient(180deg, rgba(10,18,33,.28) 0%, rgba(10,18,33,.48) 31%, rgba(10,18,33,.96) 65%, #121d32 100%),
            linear-gradient(90deg, rgba(10,18,33,.5), transparent);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__hud {
        top: 22px;
        right: 18px;
        bottom: auto;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero .ph-motion-hero__dots {
        top: 112px;
        right: 18px;
        bottom: auto;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-heading h2,
    body.phidea-refined.phidea-motion-perimeter .ph-home-system__copy h2,
    body.phidea-refined.phidea-motion-perimeter .ph-home-connected__copy h2,
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__heading h2 {
        font-size: clamp(37px, 10.5vw, 54px);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-principles,
    body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid,
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid,
    body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid {
        grid-template-columns: 1fr;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-principles article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid rgba(18,29,50,.18);
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-principles article:last-child {
        border-bottom: 0;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-principles h3 {
        margin-top: 45px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid article {
        min-height: 500px;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article {
        display: grid;
        grid-template-columns: 44% 56%;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid img {
        height: 100%;
        aspect-ratio: auto;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid {
        border-bottom: 0;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a {
        min-height: 166px;
        border-right: 0;
        border-bottom: 1px solid rgba(18,29,50,.18);
    }
}

@media (max-width: 480px) {
    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy .ph-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-motion-hero__copy .ph-btn {
        width: 100%;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article {
        grid-template-columns: 1fr;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.phidea-refined.phidea-motion-perimeter .ph-home-principles article,
    body.phidea-refined.phidea-motion-perimeter .ph-home-system__visual img,
    body.phidea-refined.phidea-motion-perimeter .ph-home-application-grid img,
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid article,
    body.phidea-refined.phidea-motion-perimeter .ph-home-service__grid img,
    body.phidea-refined.phidea-motion-perimeter .ph-home-path-grid > a {
        transition: none !important;
    }

    body.phidea-refined.phidea-motion-perimeter .ph-home-connected__signal i {
        animation: none !important;
    }
}

/* Electric Fence page: genuine Blender hero motion plus sequential component assembly. */
body.phidea-refined.phidea-electric-motion .ph-hero--inner .ph-visual--hero {
    overflow: hidden;
    transform: none;
}

body.phidea-refined.phidea-electric-motion .ph-hero--inner .ph-visual--hero > img,
body.phidea-refined.phidea-electric-motion .ph-hero--inner .ph-visual--hero > video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: 16 / 9;
    border-radius: inherit;
    background: #081824;
    object-fit: cover;
    transform: none;
}

body.phidea-refined.phidea-electric-motion .ph-electric-hero-video {
    pointer-events: none;
}

body.phidea-refined.phidea-electric-motion .ph-component-visual {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    perspective: 1200px;
    background:
        radial-gradient(circle at 42% 44%, rgba(43, 61, 94, .78), transparent 46%),
        #10192b;
}

body.phidea-refined.phidea-electric-motion .ph-component-visual > img {
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity .46s ease;
}

body.phidea-refined.phidea-electric-motion .ph-component-visual[data-ph-component-motion="true"]:not(.is-settled) > img {
    opacity: 0;
}

body.phidea-refined.phidea-electric-motion .ph-component-flight {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    opacity: 0;
    filter: blur(11px) brightness(1.08);
    mix-blend-mode: lighten;
    transform: translate3d(38%, 0, 100px) rotateY(-35deg) scale(.93);
    transform-origin: 70% 50%;
    will-change: transform, opacity, filter;
}

body.phidea-refined.phidea-electric-motion .ph-component-flight > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.phidea-refined.phidea-electric-motion .ph-component-flight--fence {
    clip-path: polygon(54% 8%, 97% 8%, 97% 92%, 53% 92%, 53% 33%, 56% 33%);
    transition: opacity .72s .10s ease, transform 1.45s .10s cubic-bezier(.16, .78, .2, 1), filter 1.10s .10s ease;
}

body.phidea-refined.phidea-electric-motion .ph-component-flight--battery {
    clip-path: polygon(38% 60%, 64% 60%, 64% 93%, 38% 93%);
    transition: opacity .72s 1.15s ease, transform 1.45s 1.15s cubic-bezier(.16, .78, .2, 1), filter 1.10s 1.15s ease;
}

body.phidea-refined.phidea-electric-motion .ph-component-flight--energizer {
    clip-path: polygon(13% 11%, 50% 11%, 50% 68%, 13% 68%);
    transition: opacity .72s 2.20s ease, transform 1.45s 2.20s cubic-bezier(.16, .78, .2, 1), filter 1.10s 2.20s ease;
}

body.phidea-refined.phidea-electric-motion .ph-component-flight--alarm {
    clip-path: polygon(6% 57%, 39% 57%, 39% 96%, 6% 96%);
    transition: opacity .72s 3.25s ease, transform 1.45s 3.25s cubic-bezier(.16, .78, .2, 1), filter 1.10s 3.25s ease;
}

body.phidea-refined.phidea-electric-motion .ph-component-visual.is-arriving .ph-component-flight {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translate3d(0, 0, 0) rotateY(0) scale(1);
}

body.phidea-refined.phidea-electric-motion .ph-component-visual.is-settled > img {
    opacity: 1;
}

body.phidea-refined.phidea-electric-motion .ph-component-visual.is-settled .ph-component-flight {
    opacity: 0;
    transition: opacity .65s ease;
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"] span {
    opacity: 0;
    transform: translate3d(58px, 0, 0);
    will-change: transform, opacity;
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"].is-arriving span,
body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"].is-settled span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"] span:nth-child(5) {
    transition: opacity .60s .25s ease, transform .90s .25s cubic-bezier(.16, .78, .2, 1);
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"] span:nth-child(4) {
    transition: opacity .60s 1.05s ease, transform .90s 1.05s cubic-bezier(.16, .78, .2, 1);
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"] span:nth-child(3) {
    transition: opacity .60s 1.85s ease, transform .90s 1.85s cubic-bezier(.16, .78, .2, 1);
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"] span:nth-child(2) {
    transition: opacity .60s 2.65s ease, transform .90s 2.65s cubic-bezier(.16, .78, .2, 1);
}

body.phidea-refined.phidea-electric-motion .ph-component-list[data-ph-component-labels="true"] span:nth-child(1) {
    transition: opacity .60s 3.45s ease, transform .90s 3.45s cubic-bezier(.16, .78, .2, 1);
}

@media (max-width: 767px) {
    body.phidea-refined.phidea-electric-motion .ph-component-flight {
        transform: translate3d(28%, 0, 60px) rotateY(-24deg) scale(.95);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.phidea-refined.phidea-electric-motion .ph-hero--inner .ph-visual--hero,
    body.phidea-refined.phidea-electric-motion .ph-hero--inner .ph-visual--hero > img,
    body.phidea-refined.phidea-electric-motion .ph-hero--inner .ph-visual--hero > video,
    body.phidea-refined.phidea-electric-motion .ph-component-visual > img,
    body.phidea-refined.phidea-electric-motion .ph-component-flight,
    body.phidea-refined.phidea-electric-motion .ph-component-list span {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    body.phidea-refined.phidea-electric-motion .ph-component-flight {
        display: none !important;
    }
}
