body.pg-custom {
    --pg-ink: #16120e;
    --pg-ink-soft: #211a14;
    --pg-ink-card: #2b2119;
    --pg-orange: #ed5a18;
    --pg-orange-dark: #c9460d;
    --pg-orange-pale: #fce8da;
    --pg-blue: #2f69df;
    --pg-paper: #fbf7f1;
    --pg-paper-deep: #f2e9dc;
    --pg-white: #ffffff;
    --pg-text: #28231e;
    --pg-muted: #6f665d;
    --pg-line: rgba(22, 18, 14, 0.12);
    --pg-line-light: rgba(255, 255, 255, 0.12);
    --pg-radius: 18px;
    --pg-radius-small: 12px;
    --pg-shadow: 0 18px 50px -28px rgba(22, 18, 14, 0.42);
    --pg-shadow-strong: 0 28px 70px -30px rgba(0, 0, 0, 0.62);
    --pg-container: 1180px;
    margin: 0;
    overflow-x: clip;
    background: var(--pg-paper);
    color: var(--pg-text);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.pg-custom *,
body.pg-custom *::before,
body.pg-custom *::after {
    box-sizing: border-box;
}

body.pg-custom .pg-main,
body.pg-custom .pg-header,
body.pg-custom .pg-footer,
body.pg-custom .pg-chats {
    font-family: "Inter", Arial, sans-serif;
}

body.pg-custom .pg-main h1,
body.pg-custom .pg-main h2,
body.pg-custom .pg-main h3,
body.pg-custom .pg-header,
body.pg-custom .pg-footer h2,
body.pg-custom .pg-button {
    font-family: "Sora", Arial, sans-serif;
}

body.pg-custom .pg-main h1,
body.pg-custom .pg-main h2,
body.pg-custom .pg-main h3,
body.pg-custom .pg-main p,
body.pg-custom .pg-main ul,
body.pg-custom .pg-main ol,
body.pg-custom .pg-main figure,
body.pg-custom .pg-footer p {
    margin-top: 0;
}

body.pg-custom .pg-main h1,
body.pg-custom .pg-main h2,
body.pg-custom .pg-main h3 {
    color: var(--pg-ink);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

body.pg-custom .pg-main h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
}

body.pg-custom .pg-main h3 {
    font-size: 1.14rem;
    font-weight: 700;
}

body.pg-custom .pg-main p {
    margin-bottom: 18px;
}

body.pg-custom .pg-main a,
body.pg-custom .pg-header a,
body.pg-custom .pg-footer a,
body.pg-custom .pg-chats a {
    color: inherit;
    text-decoration: none;
}

body.pg-custom .pg-main img,
body.pg-custom .pg-header img,
body.pg-custom .pg-footer img {
    display: block;
    max-width: 100%;
}

body.pg-custom .pg-container {
    width: min(100% - 40px, var(--pg-container));
    margin-inline: auto;
}

body.pg-custom .pg-section {
    position: relative;
    padding: 104px 0;
}

body.pg-custom .pg-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--pg-white);
    color: var(--pg-ink);
    padding: 10px 14px;
    font-weight: 700;
}

body.pg-custom .pg-skip-link:focus {
    transform: translateY(0);
}

body.pg-custom .pg-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--pg-orange-dark);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

body.pg-custom .pg-eyebrow::before {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pg-blue), var(--pg-orange));
    content: "";
}

body.pg-custom .pg-eyebrow--light {
    color: #ffb28e;
}

body.pg-custom .pg-eyebrow--light span {
    color: rgba(255, 255, 255, 0.55);
}

body.pg-custom .pg-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 23px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.pg-custom .pg-button:hover,
body.pg-custom .pg-button:focus-visible {
    transform: translateY(-2px);
}

body.pg-custom .pg-button--primary {
    background: var(--pg-orange);
    box-shadow: 0 12px 28px -14px rgba(237, 90, 24, 0.92);
    color: var(--pg-white);
}

body.pg-custom .pg-button--primary:hover,
body.pg-custom .pg-button--primary:focus-visible {
    background: var(--pg-orange-dark);
    color: var(--pg-white);
}

body.pg-custom .pg-button--outline-light {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.08);
    color: var(--pg-white);
}

body.pg-custom .pg-button--outline-light:hover,
body.pg-custom .pg-button--outline-light:focus-visible {
    border-color: var(--pg-white);
    background: var(--pg-white);
    color: var(--pg-ink);
}

body.pg-custom .pg-button--light {
    background: var(--pg-white);
    color: var(--pg-ink);
}

body.pg-custom .pg-button--light:hover,
body.pg-custom .pg-button--light:focus-visible {
    box-shadow: var(--pg-shadow);
    color: var(--pg-ink);
}

body.pg-custom .pg-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(201, 70, 13, 0.36);
    color: var(--pg-orange-dark);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

body.pg-custom .pg-text-link span {
    transition: transform 180ms ease;
}

body.pg-custom .pg-text-link:hover span,
body.pg-custom .pg-text-link:focus-visible span {
    transform: translateX(3px);
}

body.pg-custom .pg-text-link--center {
    width: fit-content;
    margin: 28px auto 0;
}

body.pg-custom .pg-mobile-only {
    display: none;
}

body.pg-custom :focus-visible {
    outline: 3px solid var(--pg-blue);
    outline-offset: 3px;
}

/* Header */
body.pg-custom .pg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #000000;
    color: var(--pg-white);
    transition: box-shadow 180ms ease;
}

body.pg-custom .pg-header.pg-header--scrolled {
    box-shadow: 0 10px 34px -24px rgba(0, 0, 0, 0.86);
}

body.pg-custom .pg-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

body.pg-custom .pg-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

body.pg-custom .pg-brand img {
    width: auto;
    height: 49px;
    object-fit: contain;
}

body.pg-custom .pg-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

body.pg-custom .pg-nav a {
    border-radius: 8px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.83rem;
    font-weight: 600;
    transition: background-color 160ms ease, color 160ms ease;
}

body.pg-custom .pg-nav a:hover,
body.pg-custom .pg-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.07);
    color: var(--pg-white);
}

body.pg-custom .pg-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
}

body.pg-custom .pg-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pg-white);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
}

body.pg-custom .pg-header__phone svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--pg-orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

body.pg-custom .pg-header__quote {
    min-height: 42px;
    padding: 10px 19px;
    font-size: 0.78rem;
}

body.pg-custom .pg-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
}

body.pg-custom .pg-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--pg-white);
    transition: transform 180ms ease, opacity 180ms ease;
}

body.pg-custom .pg-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.pg-custom .pg-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

body.pg-custom .pg-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.pg-custom .pg-mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1001;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #000000;
    padding: 22px 20px 26px;
    box-shadow: 0 22px 38px -25px rgba(0, 0, 0, 0.92);
}

body.pg-custom .pg-mobile-menu[hidden] {
    display: none;
}

body.pg-custom .pg-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

body.pg-custom .pg-mobile-menu__nav a {
    width: 100%;
    padding: 12px;
    color: var(--pg-white);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    text-align: center;
}

body.pg-custom .pg-mobile-menu__actions {
    display: grid;
    max-width: 420px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px auto 0;
}

/* Hero */
body.pg-custom .pg-hero {
    position: relative;
    overflow: hidden;
    background: var(--pg-ink);
    color: var(--pg-white);
}

body.pg-custom .pg-hero__background {
    position: absolute;
    inset: 0;
    background-image: var(--pg-hero-desktop);
    background-position: center;
    background-size: cover;
}

body.pg-custom .pg-hero__background::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 7, 9, 0.94) 0%, rgba(8, 9, 12, 0.82) 42%, rgba(8, 9, 12, 0.47) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.52));
    content: "";
}

body.pg-custom .pg-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 670px;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.78fr);
    align-items: center;
    gap: 70px;
    padding-top: 78px;
    padding-bottom: 84px;
}

body.pg-custom .pg-hero__content {
    max-width: 670px;
}

body.pg-custom .pg-hero h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--pg-white);
    font-size: clamp(2.7rem, 5.3vw, 4.85rem);
    font-weight: 800;
    text-shadow: 0 5px 34px rgba(0, 0, 0, 0.3);
}

body.pg-custom .pg-hero h1 span {
    color: #ffac83;
}

body.pg-custom .pg-hero__description {
    max-width: 610px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.07rem;
    line-height: 1.72;
}

body.pg-custom .pg-hero__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

body.pg-custom .pg-hero__trust li {
    position: relative;
    min-width: 0;
    padding-left: 23px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.45;
}

body.pg-custom .pg-hero__trust li::before {
    position: absolute;
    top: 0.03em;
    left: 0;
    color: var(--pg-orange);
    content: "✓";
    font-weight: 800;
}

body.pg-custom .pg-hero__trust a {
    color: inherit;
}

body.pg-custom .pg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Form cards and Elementor shortcode styling */
body.pg-custom .pg-form-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--pg-radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--pg-shadow-strong);
    color: var(--pg-text);
    padding: 29px;
}

body.pg-custom .pg-form-card__heading {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    margin-bottom: 6px;
}

body.pg-custom .pg-form-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--pg-blue), var(--pg-orange));
    color: var(--pg-white);
}

body.pg-custom .pg-form-card__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

body.pg-custom .pg-form-card__eyebrow {
    margin-bottom: 2px;
    color: var(--pg-orange-dark);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

body.pg-custom .pg-form-card h2 {
    min-width: 0;
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.24;
}

body.pg-custom .pg-form-card__intro {
    margin-bottom: 18px;
    color: var(--pg-muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

body.pg-custom .pg-form-card__note {
    margin: 11px 0 0;
    color: var(--pg-muted);
    font-size: 0.72rem;
    text-align: center;
}

body.pg-custom .pg-form-shell {
    min-width: 0;
    width: 100%;
    text-align: left;
}

body.pg-custom .pg-form-shell .elementor,
body.pg-custom .pg-form-shell .elementor-widget-template,
body.pg-custom .pg-form-shell .elementor-widget-container,
body.pg-custom .pg-form-shell .elementor-form,
body.pg-custom .pg-form-shell .elementor-form-fields-wrapper {
    min-width: 0;
    width: 100%;
}

body.pg-custom .pg-form-shell .elementor-section,
body.pg-custom .pg-form-shell .e-con,
body.pg-custom .pg-form-shell .elementor-widget,
body.pg-custom .pg-form-shell .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

body.pg-custom .pg-form-shell .elementor-field-group {
    min-width: 0;
    margin-bottom: 11px !important;
    padding: 0 !important;
}

body.pg-custom .pg-form-shell .elementor-field-label {
    display: block;
    margin-bottom: 5px !important;
    color: var(--pg-ink) !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

body.pg-custom .pg-form-shell .elementor-field,
body.pg-custom .pg-form-shell input,
body.pg-custom .pg-form-shell select,
body.pg-custom .pg-form-shell textarea {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    border: 1px solid rgba(22, 18, 14, 0.16) !important;
    border-radius: 9px !important;
    background: #fffdfa !important;
    color: var(--pg-text) !important;
    padding: 10px 12px !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
    box-shadow: none !important;
}

body.pg-custom .pg-form-shell textarea {
    min-height: 78px !important;
    resize: vertical;
}

body.pg-custom .pg-form-shell .elementor-field:focus,
body.pg-custom .pg-form-shell input:focus,
body.pg-custom .pg-form-shell select:focus,
body.pg-custom .pg-form-shell textarea:focus {
    border-color: var(--pg-orange) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(237, 90, 24, 0.13) !important;
}

body.pg-custom .pg-form-shell .elementor-button,
body.pg-custom .pg-form-shell button[type="submit"] {
    width: 100% !important;
    min-height: 48px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--pg-orange) !important;
    color: var(--pg-white) !important;
    padding: 12px 20px !important;
    font-family: "Sora", Arial, sans-serif !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    box-shadow: 0 12px 28px -14px rgba(237, 90, 24, 0.92) !important;
}

body.pg-custom .pg-form-shell .elementor-button:hover,
body.pg-custom .pg-form-shell button[type="submit"]:hover {
    background: var(--pg-orange-dark) !important;
}

/* Trust strip */
body.pg-custom .pg-trust-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--pg-ink);
    color: var(--pg-white);
    padding: 30px 0;
}

body.pg-custom .pg-trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

body.pg-custom .pg-trust-score {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 15px;
}

body.pg-custom .pg-trust-score > strong {
    color: var(--pg-white);
    font-family: "Sora", Arial, sans-serif;
    font-size: 2.55rem;
    font-weight: 800;
    line-height: 1;
}

body.pg-custom .pg-stars {
    display: block;
    margin-bottom: 3px;
    color: #ffaf7f;
    font-size: 0.91rem;
    letter-spacing: 0.09em;
    line-height: 1;
}

body.pg-custom .pg-trust-score p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.35;
}

body.pg-custom .pg-trust-score b {
    color: var(--pg-white);
}

body.pg-custom .pg-trust-strip__divider {
    width: 1px;
    height: 47px;
    background: rgba(255, 255, 255, 0.15);
}

body.pg-custom .pg-trust-badges {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: space-around;
    gap: 25px;
}

body.pg-custom .pg-trust-badges a {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
}

body.pg-custom .pg-trust-badges img {
    width: auto;
    max-width: 190px;
    height: 46px;
    object-fit: contain;
}

/* Shared section layouts */
body.pg-custom .pg-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 68px;
}

body.pg-custom .pg-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

body.pg-custom .pg-section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--pg-muted);
    font-size: 1.03rem;
}

body.pg-custom .pg-section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

body.pg-custom .pg-section-heading--center .pg-eyebrow {
    justify-content: center;
}

body.pg-custom .pg-section-heading--dark h2 {
    color: var(--pg-white);
}

body.pg-custom .pg-section-heading--dark > p:last-child {
    color: rgba(255, 255, 255, 0.65);
}

/* About */
body.pg-custom .pg-about {
    background: var(--pg-paper);
}

body.pg-custom .pg-about__media {
    position: relative;
}

body.pg-custom .pg-about__media > img {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: var(--pg-radius);
    object-fit: cover;
    box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-experience-badge {
    position: absolute;
    right: -18px;
    bottom: -22px;
    display: flex;
    width: 160px;
    min-height: 102px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 16px;
    background: var(--pg-ink);
    box-shadow: var(--pg-shadow-strong);
    color: var(--pg-white);
    padding: 17px 20px;
}

body.pg-custom .pg-experience-badge strong {
    color: #ffad81;
    font-family: "Sora", Arial, sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
}

body.pg-custom .pg-experience-badge span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.74rem;
    line-height: 1.35;
}

body.pg-custom .pg-about__content > p:not(.pg-eyebrow),
body.pg-custom .pg-brands__content > p:not(.pg-eyebrow),
body.pg-custom .pg-areas__content > p:not(.pg-eyebrow),
body.pg-custom .pg-contact__details > p:not(.pg-eyebrow) {
    color: var(--pg-muted);
}

body.pg-custom .pg-check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

body.pg-custom .pg-check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--pg-text);
    font-size: 0.91rem;
}

body.pg-custom .pg-check-list li::before {
    position: absolute;
    top: -0.01em;
    left: 0;
    color: var(--pg-orange);
    content: "✓";
    font-size: 1.05rem;
    font-weight: 800;
}

/* Services */
body.pg-custom .pg-services {
    background: var(--pg-paper-deep);
}

body.pg-custom .pg-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

body.pg-custom .pg-service-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(22, 18, 14, 0.07);
    border-radius: var(--pg-radius-small);
    background: var(--pg-white);
    box-shadow: 0 12px 34px -28px rgba(22, 18, 14, 0.54);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

body.pg-custom .pg-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-service-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

body.pg-custom .pg-service-card__body {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 21px 21px 23px;
}

body.pg-custom .pg-service-card h3 {
    margin-bottom: 9px;
    font-size: 1rem;
    line-height: 1.28;
}

body.pg-custom .pg-service-card p {
    flex: 1 1 auto;
    margin-bottom: 17px;
    color: var(--pg-muted);
    font-size: 0.82rem;
    line-height: 1.58;
}

body.pg-custom .pg-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pg-orange-dark);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
}

body.pg-custom .pg-service-card a span {
    transition: transform 180ms ease;
}

body.pg-custom .pg-service-card a:hover span,
body.pg-custom .pg-service-card a:focus-visible span {
    transform: translateX(3px);
}

body.pg-custom .pg-section-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 44px;
}

/* Why */
body.pg-custom .pg-why {
    background: var(--pg-ink);
    color: var(--pg-white);
}

body.pg-custom .pg-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.pg-custom .pg-feature-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--pg-radius-small);
    background: var(--pg-ink-soft);
    padding: 28px 26px;
}

body.pg-custom .pg-feature-card__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 11px;
    background: rgba(237, 90, 24, 0.14);
    color: #ffac7e;
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

body.pg-custom .pg-feature-card h3 {
    margin: 18px 0 9px;
    color: var(--pg-white);
    font-size: 1rem;
}

body.pg-custom .pg-feature-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.83rem;
    line-height: 1.58;
}

/* Reviews */
body.pg-custom .pg-reviews {
    background: var(--pg-paper);
}

body.pg-custom .pg-review-carousel {
    overflow: hidden;
}

body.pg-custom .pg-review-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 5px 3px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

body.pg-custom .pg-review-track::-webkit-scrollbar {
    display: none;
}

body.pg-custom .pg-review-card {
    display: flex;
    min-width: calc((100% - 44px) / 3);
    flex: 0 0 calc((100% - 44px) / 3);
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(22, 18, 14, 0.08);
    border-radius: var(--pg-radius);
    background: var(--pg-white);
    box-shadow: 0 14px 36px -30px rgba(22, 18, 14, 0.52);
    padding: 28px;
    scroll-snap-align: start;
}

body.pg-custom .pg-review-card__source {
    margin-bottom: 18px;
    color: var(--pg-muted);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
}

body.pg-custom .pg-review-card__source--google {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--pg-blue);
}

body.pg-custom .pg-review-card__source--google span {
    color: var(--pg-orange);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

body.pg-custom .pg-review-card__source--facebook {
    color: var(--pg-blue);
}

body.pg-custom .pg-review-card blockquote {
    margin: 0 0 23px;
    color: var(--pg-ink);
    font-size: 0.99rem;
    line-height: 1.6;
}

body.pg-custom .pg-review-card footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(22, 18, 14, 0.08);
    padding-top: 16px;
}

body.pg-custom .pg-review-card footer strong {
    color: var(--pg-ink);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.8rem;
}

body.pg-custom .pg-review-card footer span {
    margin-top: 2px;
    color: var(--pg-muted);
    font-size: 0.72rem;
}

body.pg-custom .pg-review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

body.pg-custom .pg-review-controls button {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--pg-line);
    border-radius: 50%;
    background: var(--pg-white);
    color: var(--pg-ink);
    cursor: pointer;
}

body.pg-custom .pg-review-controls button:hover,
body.pg-custom .pg-review-controls button:focus-visible {
    border-color: var(--pg-orange);
    color: var(--pg-orange-dark);
}

body.pg-custom .pg-review-controls svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

body.pg-custom .pg-review-controls p {
    min-width: 250px;
    margin: 0;
    color: var(--pg-muted);
    font-size: 0.82rem;
    text-align: center;
}

body.pg-custom .pg-review-controls strong {
    color: var(--pg-ink);
}

body.pg-custom .pg-reviews__note {
    margin: 22px 0 0;
    color: var(--pg-muted);
    font-size: 0.75rem;
    text-align: center;
}

/* Brands */
body.pg-custom .pg-brands {
    background: var(--pg-paper-deep);
}

body.pg-custom .pg-brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

body.pg-custom .pg-brand-pills span {
    border: 1px solid var(--pg-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--pg-ink);
    padding: 10px 19px;
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
}

body.pg-custom .pg-brands__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.pg-custom .pg-brands__images img {
    width: 100%;
    height: 360px;
    border-radius: var(--pg-radius-small);
    object-fit: cover;
    box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-brands__images img:nth-child(2) {
    margin-top: 35px;
}

/* Gallery */
body.pg-custom .pg-gallery {
    background: var(--pg-paper);
}

body.pg-custom .pg-gallery-grid {
    display: grid;
    grid-auto-rows: 190px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

body.pg-custom .pg-gallery-item {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--pg-radius-small);
    background: var(--pg-paper-deep);
}

body.pg-custom .pg-gallery-item--feature {
    grid-column: span 2;
    grid-row: span 2;
}

body.pg-custom .pg-gallery-item--wide {
    grid-column: span 2;
}

body.pg-custom .pg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

body.pg-custom .pg-gallery-item:hover img {
    transform: scale(1.035);
}

/* Process */
body.pg-custom .pg-process {
    background: var(--pg-ink-soft);
    color: var(--pg-white);
}

body.pg-custom .pg-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.pg-custom .pg-process-grid li {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--pg-radius-small);
    background: var(--pg-ink);
    padding: 27px 25px;
}

body.pg-custom .pg-process-grid li > span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pg-orange);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

body.pg-custom .pg-process-grid li > span::after {
    flex: 1 1 auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(237, 90, 24, 0.72), transparent);
    content: "";
}

body.pg-custom .pg-process-grid h3 {
    margin: 17px 0 8px;
    color: var(--pg-white);
    font-size: 0.99rem;
}

body.pg-custom .pg-process-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.82rem;
    line-height: 1.58;
}

/* Areas */
body.pg-custom .pg-areas {
    background: var(--pg-paper-deep);
}

body.pg-custom .pg-areas__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 62px;
}

body.pg-custom .pg-areas__content {
    max-width: 690px;
}

body.pg-custom .pg-areas__content .pg-button {
    margin-top: 8px;
}

body.pg-custom .pg-area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

body.pg-custom .pg-area-list span {
    display: flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 18, 14, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--pg-ink);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

/* FAQ */
body.pg-custom .pg-faq {
    background: var(--pg-paper);
}

body.pg-custom .pg-faq__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 65px;
}

body.pg-custom .pg-faq__intro {
    position: sticky;
    top: 112px;
}

body.pg-custom .pg-faq__intro > p:not(.pg-eyebrow) {
    color: var(--pg-muted);
}

body.pg-custom .pg-faq__intro .pg-button {
    margin-top: 8px;
}

body.pg-custom .pg-faq__list {
    display: grid;
    min-width: 0;
    gap: 10px;
}

body.pg-custom .pg-faq-item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 18, 14, 0.09);
    border-radius: 10px;
    background: var(--pg-white);
}

body.pg-custom .pg-faq-item h3 {
    min-width: 0;
    margin: 0;
}

body.pg-custom .pg-faq-item button {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--pg-ink);
    padding: 18px 20px;
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

body.pg-custom .pg-faq-item button > span {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
}

body.pg-custom .pg-faq-item button i {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--pg-paper-deep);
}

body.pg-custom .pg-faq-item button i::before,
body.pg-custom .pg-faq-item button i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 99px;
    background: var(--pg-orange-dark);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

body.pg-custom .pg-faq-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.pg-custom .pg-faq-item button[aria-expanded="true"] i {
    background: var(--pg-orange);
}

body.pg-custom .pg-faq-item button[aria-expanded="true"] i::before,
body.pg-custom .pg-faq-item button[aria-expanded="true"] i::after {
    background: var(--pg-white);
}

body.pg-custom .pg-faq-item button[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

body.pg-custom .pg-faq-item__answer {
    min-width: 0;
}

body.pg-custom .pg-faq-item__answer[hidden] {
    display: none;
}

body.pg-custom .pg-faq-item__answer p {
    margin: 0;
    color: var(--pg-muted);
    padding: 0 20px 20px;
    font-size: 0.87rem;
    line-height: 1.65;
}

/* CTA */
body.pg-custom .pg-cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--pg-ink);
    color: var(--pg-white);
    padding: 94px 0;
}

body.pg-custom .pg-cta-banner__background {
    position: absolute;
    inset: 0;
    background-image: var(--pg-cta-background);
    background-position: center;
    background-size: cover;
}

body.pg-custom .pg-cta-banner__background::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(82, 22, 3, 0.88), rgba(22, 18, 14, 0.77));
    content: "";
}

body.pg-custom .pg-cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

body.pg-custom .pg-cta-banner .pg-eyebrow {
    justify-content: center;
}

body.pg-custom .pg-cta-banner h2 {
    margin-bottom: 18px;
    color: var(--pg-white);
    font-size: clamp(2rem, 4vw, 3.25rem);
}

body.pg-custom .pg-cta-banner__content > p:not(.pg-eyebrow) {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

body.pg-custom .pg-cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

body.pg-custom .pg-cta-banner__phone {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--pg-white);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
}

/* Contact */
body.pg-custom .pg-contact {
    background: var(--pg-paper-deep);
}

body.pg-custom .pg-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    align-items: start;
    gap: 56px;
}

body.pg-custom .pg-contact-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

body.pg-custom .pg-contact-list > a,
body.pg-custom .pg-contact-list > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
}

body.pg-custom .pg-contact-list > a > span,
body.pg-custom .pg-contact-list > div > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--pg-line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--pg-orange-dark);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
}

body.pg-custom .pg-contact-list div div,
body.pg-custom .pg-contact-list a div {
    min-width: 0;
}

body.pg-custom .pg-contact-list small {
    display: block;
    margin-bottom: 1px;
    color: var(--pg-muted);
    font-size: 0.72rem;
}

body.pg-custom .pg-contact-list strong {
    display: block;
    min-width: 0;
    color: var(--pg-ink);
    font-family: "Sora", Arial, sans-serif;
    font-size: clamp(0.82rem, 1.5vw, 0.96rem);
    line-height: 1.4;
    overflow-wrap: anywhere;
}

body.pg-custom .pg-map {
    height: 260px;
    overflow: hidden;
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius-small);
    background: var(--pg-white);
    box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

body.pg-custom .pg-contact__form {
    position: sticky;
    top: 108px;
}

/* Footer */
body.pg-custom .pg-footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.64);
    padding: 68px 0 25px;
}

body.pg-custom .pg-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, minmax(0, 0.75fr));
    gap: 44px;
    padding-bottom: 46px;
}

body.pg-custom .pg-footer__brand {
    display: inline-flex;
    margin-bottom: 16px;
}

body.pg-custom .pg-footer__brand img {
    width: auto;
    height: 50px;
}

body.pg-custom .pg-footer__about p {
    max-width: 320px;
    margin-bottom: 13px;
    font-size: 0.82rem;
    line-height: 1.65;
}

body.pg-custom .pg-footer__registration strong {
    color: var(--pg-white);
}

body.pg-custom .pg-footer__column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

body.pg-custom .pg-footer__column h2 {
    margin: 0 0 7px;
    color: var(--pg-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.4;
    text-transform: uppercase;
}

body.pg-custom .pg-footer__column a,
body.pg-custom .pg-footer__column p {
    min-width: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

body.pg-custom .pg-footer__column a:hover,
body.pg-custom .pg-footer__column a:focus-visible {
    color: #ffad82;
}

body.pg-custom .pg-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 0;
}

body.pg-custom .pg-footer__bottom p {
    margin: 0;
    font-size: 0.72rem;
}

body.pg-custom .pg-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 17px;
}

body.pg-custom .pg-footer__legal a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.72rem;
}

body.pg-custom .pg-webwizard-credit {
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 7px auto 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    text-align: center;
}

body.pg-custom .pg-webwizard-credit img {
    width: auto;
    max-width: 135px;
    height: 31px;
    object-fit: contain;
}

body.pg-custom .pg-webwizard-credit:hover,
body.pg-custom .pg-webwizard-credit:focus-visible {
    color: var(--pg-white);
}

/* Floating contact widget */
body.pg-custom .pg-chats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
}

body.pg-custom .pg-chats__bubble {
    position: absolute;
    right: 68px;
    bottom: 10px;
    width: max-content;
    border-radius: 9px;
    background: var(--pg-ink);
    box-shadow: var(--pg-shadow);
    color: var(--pg-white);
    padding: 8px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    transition: opacity 180ms ease, transform 180ms ease;
}

body.pg-custom .pg-chats.pg-chats--open .pg-chats__bubble {
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
}

body.pg-custom .pg-chats__options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

body.pg-custom .pg-chats.pg-chats--open .pg-chats__options {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

body.pg-custom .pg-chats__option {
    display: flex;
    align-items: center;
    gap: 9px;
}

body.pg-custom .pg-chats__option > span {
    border-radius: 8px;
    background: var(--pg-ink);
    box-shadow: var(--pg-shadow);
    color: var(--pg-white);
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

body.pg-custom .pg-chats__option svg {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: var(--pg-shadow-strong);
    fill: none;
    stroke: var(--pg-white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    padding: 12px;
}

body.pg-custom .pg-chats__option--whatsapp svg {
    background: #25d366;
    fill: var(--pg-white);
    stroke: none;
}

body.pg-custom .pg-chats__option--phone svg {
    background: var(--pg-orange);
}

body.pg-custom .pg-chats__option--email svg {
    background: var(--pg-blue);
}

body.pg-custom .pg-chats__toggle {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--pg-ink);
    box-shadow: var(--pg-shadow-strong);
    color: var(--pg-white);
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

body.pg-custom .pg-chats__toggle:hover,
body.pg-custom .pg-chats__toggle:focus-visible {
    transform: scale(1.04);
}

body.pg-custom .pg-chats.pg-chats--open .pg-chats__toggle {
    background: var(--pg-orange-dark);
}

body.pg-custom .pg-chats__icon {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

body.pg-custom .pg-chats__icon--close {
    display: none;
}

body.pg-custom .pg-chats.pg-chats--open .pg-chats__icon--chat {
    display: none;
}

body.pg-custom .pg-chats.pg-chats--open .pg-chats__icon--close {
    display: block;
}

@media (max-width: 1100px) {
    body.pg-custom .pg-nav--desktop,
    body.pg-custom .pg-header__phone {
        display: none;
    }

    body.pg-custom .pg-menu-toggle {
        display: flex;
    }

    body.pg-custom .pg-hero__grid {
        gap: 42px;
        grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.82fr);
    }

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

    body.pg-custom .pg-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    body.pg-custom .pg-section {
        padding: 82px 0;
    }

    body.pg-custom .pg-hero__grid,
    body.pg-custom .pg-split,
    body.pg-custom .pg-areas__grid,
    body.pg-custom .pg-faq__grid,
    body.pg-custom .pg-contact__grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-hero__grid {
        min-height: 0;
        gap: 36px;
        padding-top: 62px;
        padding-bottom: 64px;
    }

    body.pg-custom .pg-hero__content {
        max-width: 720px;
    }

    body.pg-custom .pg-form-card {
        max-width: 600px;
    }

    body.pg-custom .pg-trust-strip__inner {
        flex-wrap: wrap;
    }

    body.pg-custom .pg-trust-strip__divider {
        display: none;
    }

    body.pg-custom .pg-trust-badges {
        width: 100%;
        flex: 1 0 100%;
    }

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

    body.pg-custom .pg-review-card {
        min-width: calc((100% - 22px) / 2);
        flex-basis: calc((100% - 22px) / 2);
    }

    body.pg-custom .pg-faq__intro,
    body.pg-custom .pg-contact__form {
        position: static;
    }

    body.pg-custom .pg-contact__form {
        max-width: none;
    }
}

@media (max-width: 680px) {
    body.pg-custom {
        font-size: 15px;
    }

    body.pg-custom .pg-container {
        width: min(100% - 30px, var(--pg-container));
    }

    body.pg-custom .pg-section {
        padding: 68px 0;
    }

    body.pg-custom .pg-main h2 {
        font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    }

    body.pg-custom .pg-header__inner {
        min-height: 68px;
    }

    body.pg-custom .pg-brand img {
        height: 43px;
    }

    body.pg-custom .pg-header__quote {
        display: none;
    }

    body.pg-custom .pg-mobile-menu__actions {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-mobile-only {
        display: inline-flex;
    }

    body.pg-custom .pg-hero__background {
        background-image: var(--pg-hero-mobile);
        background-position: center;
    }

    body.pg-custom .pg-hero__background::after {
        background: linear-gradient(180deg, rgba(6, 7, 9, 0.88) 0%, rgba(6, 7, 9, 0.78) 62%, rgba(6, 7, 9, 0.96) 100%);
    }

    body.pg-custom .pg-hero__grid {
        padding-top: 50px;
        padding-bottom: 52px;
    }

    body.pg-custom .pg-hero__content,
    body.pg-custom .pg-about__content,
    body.pg-custom .pg-brands__content,
    body.pg-custom .pg-areas__content,
    body.pg-custom .pg-faq__intro,
    body.pg-custom .pg-contact__details,
    body.pg-custom .pg-section-heading,
    body.pg-custom .pg-footer__about,
    body.pg-custom .pg-footer__column {
        text-align: center;
    }

    body.pg-custom .pg-eyebrow,
    body.pg-custom .pg-hero__content .pg-eyebrow,
    body.pg-custom .pg-about__content .pg-eyebrow,
    body.pg-custom .pg-brands__content .pg-eyebrow,
    body.pg-custom .pg-areas__content .pg-eyebrow,
    body.pg-custom .pg-faq__intro .pg-eyebrow,
    body.pg-custom .pg-contact__details .pg-eyebrow {
        justify-content: center;
    }

    body.pg-custom .pg-hero h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(2.35rem, 11vw, 3.25rem);
        text-align: center;
    }

    body.pg-custom .pg-hero__description {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    body.pg-custom .pg-hero__trust {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 9px;
    }

    body.pg-custom .pg-hero__trust li {
        width: fit-content;
        max-width: 100%;
        padding-left: 22px;
        text-align: center;
    }

    body.pg-custom .pg-hero__actions,
    body.pg-custom .pg-section-actions,
    body.pg-custom .pg-brand-pills {
        justify-content: center;
    }

    body.pg-custom .pg-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    body.pg-custom .pg-form-card {
        max-width: 100%;
        border-radius: 15px;
        padding: 22px 18px;
    }

    body.pg-custom .pg-form-card__heading {
        justify-content: center;
        text-align: left;
    }

    body.pg-custom .pg-trust-strip {
        padding: 26px 0;
    }

    body.pg-custom .pg-trust-strip__inner,
    body.pg-custom .pg-trust-score,
    body.pg-custom .pg-trust-badges {
        justify-content: center;
    }

    body.pg-custom .pg-trust-score {
        width: 100%;
    }

    body.pg-custom .pg-trust-score p {
        text-align: left;
    }

    body.pg-custom .pg-trust-badges {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    body.pg-custom .pg-trust-badges img {
        width: 100%;
        max-width: 130px;
        height: 38px;
    }

    body.pg-custom .pg-split,
    body.pg-custom .pg-areas__grid,
    body.pg-custom .pg-faq__grid,
    body.pg-custom .pg-contact__grid {
        gap: 38px;
    }

    body.pg-custom .pg-about__media {
        max-width: 540px;
        margin-inline: auto;
    }

    body.pg-custom .pg-experience-badge {
        right: 12px;
        bottom: -18px;
        width: 145px;
        min-height: 91px;
        align-items: center;
        padding: 15px;
        text-align: center;
    }

    body.pg-custom .pg-check-list {
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-check-list li {
        padding-left: 0;
        text-align: center;
    }

    body.pg-custom .pg-check-list li::before {
        position: static;
        display: inline-block;
        margin-right: 7px;
    }

    body.pg-custom .pg-service-grid,
    body.pg-custom .pg-feature-grid,
    body.pg-custom .pg-process-grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-service-card__body,
    body.pg-custom .pg-feature-card,
    body.pg-custom .pg-process-grid li {
        align-items: center;
        text-align: center;
    }

    body.pg-custom .pg-service-card__body a {
        align-self: center;
    }

    body.pg-custom .pg-section-actions {
        flex-direction: column;
        gap: 18px;
    }

    body.pg-custom .pg-feature-card__icon {
        margin-inline: auto;
    }

    body.pg-custom .pg-review-card {
        min-width: 100%;
        flex-basis: 100%;
        text-align: center;
    }

    body.pg-custom .pg-review-card__source--google {
        justify-content: center;
        flex-wrap: wrap;
    }

    body.pg-custom .pg-review-controls {
        gap: 12px;
    }

    body.pg-custom .pg-review-controls p {
        min-width: 0;
        font-size: 0.72rem;
    }

    body.pg-custom .pg-brands__images {
        max-width: 540px;
        margin-inline: auto;
    }

    body.pg-custom .pg-brands__images img {
        height: 245px;
    }

    body.pg-custom .pg-brands__images img:nth-child(2) {
        margin-top: 20px;
    }

    body.pg-custom .pg-gallery-grid {
        grid-auto-rows: 145px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    body.pg-custom .pg-gallery-item--feature,
    body.pg-custom .pg-gallery-item--wide {
        grid-column: span 2;
    }

    body.pg-custom .pg-process-grid li > span {
        justify-content: center;
    }

    body.pg-custom .pg-process-grid li > span::after {
        display: none;
    }

    body.pg-custom .pg-area-list {
        max-width: 540px;
        margin-inline: auto;
    }

    body.pg-custom .pg-faq-item button {
        align-items: flex-start;
        padding: 17px 16px;
        font-size: 0.85rem;
        text-align: left;
    }

    body.pg-custom .pg-faq-item__answer p {
        padding: 0 16px 18px;
        text-align: left;
    }

    body.pg-custom .pg-cta-banner {
        padding: 72px 0;
    }

    body.pg-custom .pg-cta-banner__content {
        text-align: center;
    }

    body.pg-custom .pg-cta-banner__actions {
        flex-direction: column;
    }

    body.pg-custom .pg-contact-list {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-contact-list > a,
    body.pg-custom .pg-contact-list > div {
        justify-content: center;
        text-align: left;
    }

    body.pg-custom .pg-map {
        height: 240px;
    }

    body.pg-custom .pg-footer {
        padding-top: 56px;
    }

    body.pg-custom .pg-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    body.pg-custom .pg-footer__about p,
    body.pg-custom .pg-footer__brand {
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-footer__column {
        align-items: center;
    }

    body.pg-custom .pg-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    body.pg-custom .pg-footer__legal {
        justify-content: center;
    }

    body.pg-custom .pg-chats__bubble {
        display: none;
    }

    body.pg-custom .pg-chats__option > span {
        display: none;
    }
}

@media (max-width: 430px) {
    body.pg-custom .pg-hero__actions {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-trust-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    body.pg-custom .pg-trust-badges img {
        max-width: 180px;
        height: 42px;
    }

    body.pg-custom .pg-brands__images {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-brands__images img,
    body.pg-custom .pg-brands__images img:nth-child(2) {
        height: 260px;
        margin-top: 0;
    }

    body.pg-custom .pg-area-list {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-chats {
        right: 14px;
        bottom: 14px;
    }

    body.pg-custom .pg-chats__toggle {
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pg-custom *,
    body.pg-custom *::before,
    body.pg-custom *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}


/* ==========================================================
   LCOM GAS — APPROVED HOMEPAGE REVISION OVERRIDES
   ========================================================== */

/* Strong, consistent CTA contrast */
body.pg-custom .pg-button--primary,
body.pg-custom .pg-button--primary:visited {
    color: var(--pg-white) !important;
}

body.pg-custom .pg-button--light,
body.pg-custom .pg-button--light:visited {
    background: var(--pg-white) !important;
    color: var(--pg-ink) !important;
}

/* Larger header logo */
body.pg-custom .pg-header__inner {
    min-height: 84px;
}

body.pg-custom .pg-brand img {
    height: 62px;
}

/* Click-controlled services dropdowns */
body.pg-custom .pg-nav-dropdown {
    position: relative;
}

body.pg-custom .pg-nav-dropdown__toggle,
body.pg-custom .pg-mobile-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
}

body.pg-custom .pg-nav-dropdown__toggle {
    border-radius: 8px;
    padding: 9px 12px;
}

body.pg-custom .pg-nav-dropdown__toggle:hover,
body.pg-custom .pg-nav-dropdown__toggle:focus-visible,
body.pg-custom .pg-nav-dropdown__toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.07);
    color: var(--pg-white);
}

body.pg-custom .pg-nav-dropdown__toggle svg,
body.pg-custom .pg-mobile-dropdown__toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

body.pg-custom .pg-nav-dropdown__toggle[aria-expanded="true"] svg,
body.pg-custom .pg-mobile-dropdown__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

body.pg-custom .pg-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 1100;
    width: 310px;
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: #0c0c0c;
    box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.95);
    padding: 8px;
}

body.pg-custom .pg-nav-dropdown__menu[hidden],
body.pg-custom .pg-mobile-dropdown__menu[hidden] {
    display: none;
}

body.pg-custom .pg-nav-dropdown__menu a {
    display: block;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    line-height: 1.35;
}

body.pg-custom .pg-nav-dropdown__menu a:hover,
body.pg-custom .pg-nav-dropdown__menu a:focus-visible {
    background: rgba(237, 90, 24, 0.14);
    color: var(--pg-white);
}

body.pg-custom .pg-mobile-dropdown {
    width: 100%;
}

body.pg-custom .pg-mobile-dropdown__toggle {
    width: 100%;
    padding: 12px;
    color: var(--pg-white);
    font-size: 0.96rem;
}

body.pg-custom .pg-mobile-dropdown__menu {
    width: min(100%, 440px);
    margin: 0 auto 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
}

body.pg-custom .pg-mobile-dropdown__menu a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}

/* Brighter desktop hero with desktop-only fixed background */
body.pg-custom .pg-hero__background {
    background-attachment: fixed;
}

body.pg-custom .pg-hero__background::after {
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.74) 0%, rgba(7, 9, 13, 0.56) 45%, rgba(8, 10, 14, 0.16) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

body.pg-custom .pg-hero h1 span {
    color: var(--pg-orange);
}

body.pg-custom .pg-hero__badges {
    display: flex;
    max-width: 620px;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin: 4px 0 25px;
}

body.pg-custom .pg-hero__badges a {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
}

body.pg-custom .pg-hero__badges img {
    width: auto;
    max-width: 158px;
    height: 39px;
    object-fit: contain;
}

/* Dedicated mobile form stays hidden on desktop */
body.pg-custom .pg-mobile-quote {
    display: none;
}

/* Trusted Trader-only review slider */
body.pg-custom .pg-review-card {
    justify-content: flex-start;
}

body.pg-custom .pg-review-card__badge {
    display: inline-flex;
    width: fit-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 9px;
    background: var(--pg-ink);
    padding: 7px 11px;
}

body.pg-custom .pg-review-card__badge img {
    width: auto;
    max-width: 145px;
    height: 27px;
    object-fit: contain;
}

body.pg-custom .pg-review-card__stars {
    margin-bottom: 12px;
    color: var(--pg-orange);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

body.pg-custom .pg-review-card blockquote {
    flex: 1 1 auto;
}

body.pg-custom .pg-reviews__cta,
body.pg-custom .pg-gallery__cta {
    display: flex;
    width: fit-content;
    margin: 30px auto 0;
}

/* Remove unused visual-pill footprint */
body.pg-custom .pg-brand-pills {
    display: none !important;
}

/* Desktop-only parallax on CTA */
body.pg-custom .pg-cta-banner__background {
    background-attachment: fixed;
}

/* Orange Chaty-style main button */
body.pg-custom .pg-chats__toggle,
body.pg-custom .pg-chats.pg-chats--open .pg-chats__toggle {
    background: var(--pg-orange);
}

body.pg-custom .pg-chats__toggle:hover,
body.pg-custom .pg-chats__toggle:focus-visible {
    background: var(--pg-orange-dark);
}

/* Larger but still compact Web Wizard credit */
body.pg-custom .pg-webwizard-credit {
    gap: 3px;
    margin-top: 4px;
}

body.pg-custom .pg-webwizard-credit img {
    max-width: 190px;
    height: 48px;
}

@media (max-width: 1100px) {
    body.pg-custom .pg-brand img {
        height: 56px;
    }
}

@media (max-width: 680px) {
    body.pg-custom .pg-header__inner {
        min-height: 70px;
    }

    body.pg-custom .pg-brand img {
        height: 47px;
    }

    body.pg-custom .pg-hero__background,
    body.pg-custom .pg-cta-banner__background {
        background-attachment: scroll;
    }

    body.pg-custom .pg-hero__background::after {
        background: linear-gradient(180deg, rgba(6, 7, 9, 0.62) 0%, rgba(6, 7, 9, 0.55) 58%, rgba(6, 7, 9, 0.78) 100%);
    }

    body.pg-custom .pg-hero__grid {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    body.pg-custom .pg-hero__form {
        display: none;
    }

    body.pg-custom .pg-mobile-quote {
        display: block;
        background: var(--pg-paper-deep);
        padding: 28px 0 36px;
    }

    body.pg-custom .pg-mobile-quote__card {
        margin-inline: auto;
    }

    body.pg-custom .pg-hero__badges {
        display: grid;
        width: min(100%, 390px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        gap: 12px 10px;
        margin: 4px auto 24px;
    }

    body.pg-custom .pg-hero__badges a:nth-child(3) {
        grid-column: 1 / -1;
    }

    body.pg-custom .pg-hero__badges img {
        width: 100%;
        max-width: 150px;
        height: 40px;
    }

    body.pg-custom .pg-area-list {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    body.pg-custom .pg-area-list span {
        min-width: 0;
        min-height: 50px;
        padding: 10px 6px;
        font-size: clamp(0.62rem, 2.55vw, 0.75rem);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    body.pg-custom .pg-contact-list {
        width: min(100%, 360px);
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    body.pg-custom .pg-contact-list > a,
    body.pg-custom .pg-contact-list > div {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        justify-content: stretch;
        gap: 14px;
        text-align: left;
    }

    body.pg-custom .pg-contact-list > a > span,
    body.pg-custom .pg-contact-list > div > span {
        align-self: start;
    }

    body.pg-custom .pg-contact-list div div,
    body.pg-custom .pg-contact-list a div {
        text-align: left;
    }

    body.pg-custom .pg-webwizard-credit img {
        max-width: 176px;
        height: 44px;
    }
}

@media (max-width: 430px) {
    body.pg-custom .pg-area-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.pg-custom .pg-hero__badges img {
        max-width: 138px;
        height: 38px;
    }
}

/* =========================================================
   V3 refinement pass: forms, logos, gallery, widget and areas
   ========================================================= */

/* Larger Lcom branding without allowing the agency credit to dominate. */
body.pg-custom .pg-header__inner {
    min-height: 104px;
}

body.pg-custom .pg-brand img {
    height: 86px;
    max-width: 290px;
}

body.pg-custom .pg-footer__brand img {
    height: 78px;
    max-width: 255px;
}

body.pg-custom .pg-webwizard-credit img {
    width: auto;
    max-width: 220px;
    height: 62px;
}

/* Keep Elementor honeypot / reCAPTCHA internals from inheriting visible form-field styling. */
body.pg-custom .pg-form-shell .elementor-field-type-honeypot,
body.pg-custom .pg-form-shell .elementor-field-type-recaptcha_v3,
body.pg-custom .pg-form-shell .elementor-field-type-hidden,
body.pg-custom .pg-form-shell textarea[name="g-recaptcha-response"],
body.pg-custom .pg-form-shell .g-recaptcha-response,
body.pg-custom .pg-form-shell input[type="hidden"] {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    min-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

body.pg-custom .grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.pg-custom .pg-recaptcha-notice {
    margin: 9px auto 0;
    color: var(--pg-muted);
    font-size: 0.61rem;
    line-height: 1.45;
    text-align: center;
}

body.pg-custom .pg-recaptcha-notice a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Review badge alignment. */
body.pg-custom .pg-review-card__badge {
    margin-right: auto;
    margin-left: auto;
}

/* Give the real boiler photographs more visual weight. */
body.pg-custom .pg-brands > .pg-container.pg-split {
    grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
    gap: 44px;
}

body.pg-custom .pg-brands__images {
    gap: 16px;
}

body.pg-custom .pg-brands__images img,
body.pg-custom .pg-brands__images img:nth-child(2) {
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

/* Natural-proportion masonry gallery. */
body.pg-custom .pg-gallery-grid {
    display: block;
    column-count: 4;
    column-gap: 14px;
}

body.pg-custom .pg-gallery-item,
body.pg-custom .pg-gallery-item--feature,
body.pg-custom .pg-gallery-item--wide {
    display: block;
    width: 100%;
    margin: 0 0 14px;
    break-inside: avoid;
    overflow: hidden;
    border: 0;
    border-radius: var(--pg-radius-small);
    background: var(--pg-paper-deep);
    padding: 0;
    cursor: zoom-in;
    box-shadow: none;
    text-align: left;
}

body.pg-custom .pg-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 260ms ease, filter 260ms ease;
}

body.pg-custom .pg-gallery-item:hover img,
body.pg-custom .pg-gallery-item:focus-visible img {
    transform: scale(1.025);
    filter: brightness(0.94);
}

/* Accessible gallery lightbox. */
body.pg-custom.pg-lightbox-open {
    overflow: hidden;
}

body.pg-custom .pg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 24px;
}

body.pg-custom .pg-lightbox[hidden] {
    display: none;
}

body.pg-custom .pg-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

body.pg-custom .pg-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(1180px, 94vw);
    min-width: 0;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 14px;
}

body.pg-custom .pg-lightbox figure {
    min-width: 0;
    margin: 0;
    text-align: center;
}

body.pg-custom .pg-lightbox figure img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 82vh;
    margin: 0 auto;
    border-radius: 10px;
    background: #111;
    object-fit: contain;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

body.pg-custom .pg-lightbox figcaption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    line-height: 1.5;
}

body.pg-custom .pg-lightbox__close,
body.pg-custom .pg-lightbox__nav {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.82);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

body.pg-custom .pg-lightbox__close:hover,
body.pg-custom .pg-lightbox__close:focus-visible,
body.pg-custom .pg-lightbox__nav:hover,
body.pg-custom .pg-lightbox__nav:focus-visible {
    border-color: var(--pg-orange);
    background: var(--pg-orange);
}

body.pg-custom .pg-lightbox__close {
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 3;
    width: 48px;
    height: 48px;
    transform: translateY(-100%);
}

body.pg-custom .pg-lightbox__nav {
    width: 52px;
    height: 52px;
}

body.pg-custom .pg-lightbox__close svg,
body.pg-custom .pg-lightbox__nav svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

/* Crisp icon wrappers instead of padded SVG circles. */
body.pg-custom .pg-chats__option > .pg-chats__option-label {
    border-radius: 8px;
    background: var(--pg-ink);
    box-shadow: var(--pg-shadow);
    color: var(--pg-white);
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

body.pg-custom .pg-chats__option > .pg-chats__option-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0;
}

body.pg-custom .pg-chats__option--whatsapp > .pg-chats__option-icon {
    background: #25d366;
}

body.pg-custom .pg-chats__option--phone > .pg-chats__option-icon {
    background: var(--pg-orange);
}

body.pg-custom .pg-chats__option--email > .pg-chats__option-icon {
    background: #356ee8;
}

body.pg-custom .pg-chats__option .pg-chats__option-icon svg {
    width: 25px !important;
    height: 25px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    fill: currentColor !important;
    stroke: none !important;
    padding: 0 !important;
}

body.pg-custom .pg-chats__icon--chat {
    fill: currentColor;
    stroke: none;
}

body.pg-custom .pg-chats__icon--close {
    fill: none;
    stroke: currentColor;
}

@media (max-width: 1100px) {
    body.pg-custom .pg-header__inner {
        min-height: 86px;
    }

    body.pg-custom .pg-brand img {
        height: 68px;
        max-width: 230px;
    }

    body.pg-custom .pg-mobile-dropdown__menu {
        display: block;
        width: min(100% - 18px, 420px);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 13px;
        background: #111111;
        padding: 7px 14px;
    }

    body.pg-custom .pg-mobile-dropdown__menu[hidden] {
        display: none;
    }

    body.pg-custom .pg-mobile-dropdown__menu a {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 13px 8px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.83rem;
        line-height: 1.35;
        text-align: center;
        white-space: normal;
    }

    body.pg-custom .pg-mobile-dropdown__menu a:last-child {
        border-bottom: 0;
    }

    body.pg-custom .pg-gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 860px) {
    body.pg-custom .pg-brands > .pg-container.pg-split {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body.pg-custom .pg-brands__images {
        width: min(100%, 700px);
        margin-inline: auto;
    }

    body.pg-custom .pg-footer__brand img {
        height: 72px;
    }
}

@media (max-width: 680px) {
    body.pg-custom .pg-header__inner {
        min-height: 72px;
    }

    body.pg-custom .pg-brand img {
        height: 54px;
        max-width: 185px;
    }

    /* Slightly stronger mobile contrast without returning to the original heavy overlay. */
    body.pg-custom .pg-hero__background::after {
        background: linear-gradient(180deg, rgba(6, 7, 9, 0.73) 0%, rgba(6, 7, 9, 0.68) 58%, rgba(6, 7, 9, 0.86) 100%);
    }

    body.pg-custom .pg-brands__images {
        display: grid;
        width: 100%;
        max-width: 560px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.pg-custom .pg-brands__images img,
    body.pg-custom .pg-brands__images img:nth-child(2) {
        width: 100%;
        height: auto;
        margin: 0;
        aspect-ratio: 3 / 4;
    }

    body.pg-custom .pg-gallery-grid {
        column-count: 2;
        column-gap: 9px;
    }

    body.pg-custom .pg-gallery-item {
        margin-bottom: 9px;
    }

    body.pg-custom .pg-lightbox {
        padding: 14px;
    }

    body.pg-custom .pg-lightbox__dialog {
        width: 100%;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 6px;
    }

    body.pg-custom .pg-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    body.pg-custom .pg-lightbox__close {
        top: 3px;
        right: 3px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    body.pg-custom .pg-lightbox figure img {
        max-height: 76vh;
    }

    body.pg-custom .pg-area-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.pg-custom .pg-area-list span {
        padding: 10px 8px;
    }

    body.pg-custom .pg-footer__brand img {
        height: 68px;
        max-width: 225px;
    }

    body.pg-custom .pg-webwizard-credit img {
        max-width: 205px;
        height: 56px;
    }

    body.pg-custom .pg-chats__option > .pg-chats__option-label {
        display: none;
    }

    body.pg-custom .pg-chats__option > .pg-chats__option-icon {
        display: grid;
    }
}

@media (max-width: 360px) {
    body.pg-custom .pg-brands__images {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-brands__images img,
    body.pg-custom .pg-brands__images img:nth-child(2) {
        aspect-ratio: 4 / 5;
    }
}


/* =========================================================
   INNER PAGE PRODUCTION TEMPLATES
   ========================================================= */
body.pg-custom .pg-inner-page { min-height: 65vh; }
body.pg-custom .pg-inner-hero { position: relative; overflow: hidden; min-height: 520px; display: grid; align-items: center; color: #fff; }
body.pg-custom .pg-inner-hero__background { position: absolute; inset: 0; background-image: var(--pg-inner-hero-bg); background-position: center; background-size: cover; background-attachment: fixed; }
body.pg-custom .pg-inner-hero__background::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5,7,10,.82) 0%, rgba(5,7,10,.64) 58%, rgba(5,7,10,.48) 100%); }
body.pg-custom .pg-inner-hero__content { position: relative; z-index: 1; max-width: 820px; padding-top: 90px; padding-bottom: 90px; }
body.pg-custom .pg-inner-hero h1, body.pg-custom .pg-conversion-hero h1, body.pg-custom .pg-simple-thankyou h1 { margin: 0 0 20px; color: #fff; font-size: clamp(2.65rem, 6vw, 5rem); font-weight: 800; }
body.pg-custom .pg-inner-hero__content > p:not(.pg-eyebrow) { max-width: 720px; margin-bottom: 28px; color: rgba(255,255,255,.84); font-size: 1.08rem; }
body.pg-custom .pg-about-story__media { position: relative; }
body.pg-custom .pg-about-story__media > img { width: 100%; aspect-ratio: 5/4; border-radius: var(--pg-radius); object-fit: cover; box-shadow: var(--pg-shadow); }
body.pg-custom .pg-about-story__copy > p:not(.pg-eyebrow), body.pg-custom .pg-service-detail__copy > p:not(.pg-eyebrow), body.pg-custom .pg-services-intro p { color: var(--pg-muted); }
body.pg-custom .pg-credentials { background: var(--pg-paper-deep); }
body.pg-custom .pg-credentials__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
body.pg-custom .pg-credential-card { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 24px; align-items: center; padding: 24px; border: 1px solid var(--pg-line); border-radius: var(--pg-radius); background: #fff; box-shadow: var(--pg-shadow); }
body.pg-custom .pg-credential-card img { width: 100%; max-height: 220px; object-fit: contain; border-radius: 10px; }
body.pg-custom .pg-credential-card p { color: var(--pg-muted); }
body.pg-custom .pg-company-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 26px; }
body.pg-custom .pg-company-facts span { border: 1px solid var(--pg-line); border-radius: 10px; background: rgba(255,255,255,.7); padding: 15px 17px; color: var(--pg-muted); }
body.pg-custom .pg-company-facts strong { display: block; margin-bottom: 3px; color: var(--pg-ink); font-family: Sora,Arial,sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
body.pg-custom .pg-values { background: var(--pg-paper); }
body.pg-custom .pg-value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
body.pg-custom .pg-value-grid article { border: 1px solid var(--pg-line); border-radius: var(--pg-radius-small); background: #fff; padding: 28px 25px; box-shadow: 0 14px 35px -30px rgba(22,18,14,.55); }
body.pg-custom .pg-value-grid article > span { color: var(--pg-orange); font-family: Sora,Arial,sans-serif; font-size: .78rem; font-weight: 800; }
body.pg-custom .pg-value-grid h3 { margin: 12px 0 8px; }
body.pg-custom .pg-value-grid p { margin: 0; color: var(--pg-muted); font-size: .9rem; }
body.pg-custom .pg-value-grid__discount { background: var(--pg-orange-pale) !important; border-color: rgba(237,90,24,.22) !important; }
body.pg-custom .pg-value-grid--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
body.pg-custom .pg-service-jump { position: sticky; top: 92px; z-index: 100; border-bottom: 1px solid var(--pg-line); background: rgba(251,247,241,.94); backdrop-filter: blur(12px); }
body.pg-custom .pg-service-jump__inner { display: flex; gap: 8px; overflow-x: auto; padding-top: 13px; padding-bottom: 13px; scrollbar-width: thin; }
body.pg-custom .pg-service-jump a { flex: 0 0 auto; border: 1px solid var(--pg-line); border-radius: 999px; background: #fff; padding: 8px 13px; color: var(--pg-ink); font-family: Sora,Arial,sans-serif; font-size: .72rem; font-weight: 700; }
body.pg-custom .pg-service-jump a:hover { border-color: var(--pg-orange); color: var(--pg-orange-dark); }
body.pg-custom .pg-services-intro { background: var(--pg-paper-deep); }
body.pg-custom .pg-services-intro__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); gap: 58px; align-items: center; }
body.pg-custom .pg-services-intro__grid > img { width: 100%; height: 430px; border-radius: var(--pg-radius); object-fit: cover; box-shadow: var(--pg-shadow); }
body.pg-custom .pg-service-detail { padding: 88px 0; scroll-margin-top: 155px; background: var(--pg-paper); }
body.pg-custom .pg-service-detail--alt { background: var(--pg-paper-deep); }
body.pg-custom .pg-service-detail--dark { background: var(--pg-ink-soft); color: #fff; }
body.pg-custom .pg-service-detail__grid { display: grid; grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); gap: 64px; align-items: center; }
body.pg-custom .pg-service-detail__grid--reverse .pg-service-detail__media { order: 2; }
body.pg-custom .pg-service-detail__media img { width: 100%; max-height: 520px; border-radius: var(--pg-radius); object-fit: cover; box-shadow: var(--pg-shadow); }
body.pg-custom .pg-service-detail__media--pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
body.pg-custom .pg-service-detail__media--pair img { height: 430px; object-fit: cover; }
body.pg-custom .pg-service-detail__copy h2 { font-size: clamp(2rem,4vw,3.1rem); }
body.pg-custom .pg-service-detail--dark h2, body.pg-custom .pg-service-detail--dark h3 { color: #fff; }
body.pg-custom .pg-service-detail--dark .pg-service-detail__copy > p:not(.pg-eyebrow), body.pg-custom .pg-service-detail--dark .pg-check-list li { color: rgba(255,255,255,.7); }
body.pg-custom .pg-safety-notice { margin: 0 0 22px; border-left: 4px solid var(--pg-orange); border-radius: 0 10px 10px 0; background: #fff3e9; padding: 16px 18px; }
body.pg-custom .pg-safety-notice strong { display: block; margin-bottom: 4px; color: var(--pg-orange-dark); font-family: Sora,Arial,sans-serif; }
body.pg-custom .pg-safety-notice p { margin: 0; color: var(--pg-text); }
body.pg-custom .pg-safety-notice a { color: var(--pg-orange-dark); font-weight: 800; }
body.pg-custom .pg-gallery-page { background: var(--pg-paper); }
body.pg-custom .pg-gallery-grid--large { column-count: 4; }
body.pg-custom .pg-section-actions--center { justify-content: center; }
body.pg-custom .pg-conversion-hero, body.pg-custom .pg-simple-thankyou { position: relative; overflow: hidden; color: #fff; }
body.pg-custom .pg-conversion-hero__background { position: absolute; inset: 0; background-image: var(--pg-conversion-bg); background-position: center; background-size: cover; }
body.pg-custom .pg-conversion-hero__background::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5,7,10,.88), rgba(5,7,10,.66)); }
body.pg-custom .pg-conversion-hero__grid { position: relative; z-index: 1; display: grid; min-height: calc(100vh - 92px); grid-template-columns: minmax(0,1fr) minmax(390px,.82fr); gap: 58px; align-items: center; padding-top: 44px; padding-bottom: 44px; }
body.pg-custom .pg-conversion-hero__copy > p:not(.pg-eyebrow) { max-width: 680px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
body.pg-custom .pg-contact-list--dark a, body.pg-custom .pg-contact-list--dark > div { color: #fff; }
body.pg-custom .pg-contact-list--dark > a > span, body.pg-custom .pg-contact-list--dark > div > span { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #ffad81; }
body.pg-custom .pg-contact-list--dark small { display: block; color: rgba(255,255,255,.58); font-size: .72rem; }
body.pg-custom .pg-contact-list--dark strong { color: #fff; font-size: .96rem; overflow-wrap: anywhere; }
body.pg-custom .pg-contact-info-page { background: var(--pg-paper-deep); }
body.pg-custom .pg-contact-info-page__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: 55px; align-items: center; }
body.pg-custom .pg-contact-info-page__grid p { color: var(--pg-muted); }
body.pg-custom .pg-map-card { overflow: hidden; min-height: 390px; border-radius: var(--pg-radius); box-shadow: var(--pg-shadow); }
body.pg-custom .pg-map-card iframe { display: block; width: 100%; height: 390px; border: 0; }
body.pg-custom .pg-service-summary { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 25px; }
body.pg-custom .pg-service-summary span { border: 1px solid var(--pg-line); border-radius: 9px; background: #fff; padding: 11px 13px; color: var(--pg-ink); font-family: Sora,Arial,sans-serif; font-size: .76rem; font-weight: 700; }
body.pg-custom .pg-success-mark { display: grid; width: 64px; height: 64px; place-items: center; margin-bottom: 20px; border: 2px solid rgba(255,255,255,.45); border-radius: 50%; background: var(--pg-orange); color: #fff; font-family: Sora,Arial,sans-serif; font-size: 2rem; font-weight: 800; }
body.pg-custom .pg-thankyou-links { display: grid; gap: 9px; margin-top: 28px; }
body.pg-custom .pg-thankyou-links a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.36); color: #fff; font-weight: 700; }
body.pg-custom .pg-thankyou-next { background: var(--pg-paper-deep); }
body.pg-custom .pg-simple-thankyou { min-height: calc(100vh - 92px); display: grid; align-items: center; padding: 70px 0; }
body.pg-custom .pg-simple-thankyou__card { position: relative; z-index: 1; max-width: 820px; text-align: center; }
body.pg-custom .pg-simple-thankyou__card .pg-success-mark, body.pg-custom .pg-simple-thankyou__card .pg-eyebrow { margin-right: auto; margin-left: auto; justify-content: center; }
body.pg-custom .pg-simple-thankyou__card > p:not(.pg-eyebrow) { max-width: 650px; margin-right: auto; margin-left: auto; color: rgba(255,255,255,.82); font-size: 1.08rem; }
body.pg-custom .pg-simple-thankyou__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 28px; }
body.pg-custom .pg-legal-hero { background: var(--pg-ink-soft); color: #fff; padding: 95px 0 76px; }
body.pg-custom .pg-legal-hero h1 { margin: 0 0 18px; color: #fff; font-size: clamp(2.6rem,6vw,4.8rem); }
body.pg-custom .pg-legal-hero > .pg-container > p:last-child { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 1.05rem; }
body.pg-custom .pg-legal { background: var(--pg-paper); }
body.pg-custom .pg-legal__layout { display: grid; grid-template-columns: 250px minmax(0,800px); gap: 68px; align-items: start; justify-content: center; }
body.pg-custom .pg-legal__aside { position: sticky; top: 125px; display: grid; gap: 8px; border: 1px solid var(--pg-line); border-radius: var(--pg-radius-small); background: #fff; padding: 22px; }
body.pg-custom .pg-legal__aside strong { font-family: Sora,Arial,sans-serif; color: var(--pg-ink); }
body.pg-custom .pg-legal__aside span { color: var(--pg-muted); }
body.pg-custom .pg-legal__aside a { margin-top: 12px; color: var(--pg-orange-dark); font-weight: 700; overflow-wrap: anywhere; }
body.pg-custom .pg-legal__content { min-width: 0; }
body.pg-custom .pg-legal__content h2 { font-size: clamp(2rem,4vw,3rem); }
body.pg-custom .pg-legal__content h3 { margin: 35px 0 10px; font-size: 1.25rem; }
body.pg-custom .pg-legal__content p { color: var(--pg-muted); }
body.pg-custom .pg-legal__content a { color: var(--pg-orange-dark); text-decoration: underline; text-underline-offset: 2px; overflow-wrap: anywhere; }

@media (max-width: 1020px) {
 body.pg-custom .pg-inner-hero__background { background-attachment: scroll; }
 body.pg-custom .pg-credentials__grid, body.pg-custom .pg-services-intro__grid, body.pg-custom .pg-service-detail__grid, body.pg-custom .pg-contact-info-page__grid { grid-template-columns: 1fr; }
 body.pg-custom .pg-service-detail__grid--reverse .pg-service-detail__media { order: 0; }
 body.pg-custom .pg-service-detail__media { max-width: 760px; }
 body.pg-custom .pg-company-facts { grid-template-columns: 1fr; }
 body.pg-custom .pg-conversion-hero__grid { min-height: auto; grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 70px; }
 body.pg-custom .pg-conversion-hero__copy { text-align: center; }
 body.pg-custom .pg-conversion-hero__copy .pg-eyebrow { justify-content: center; }
 body.pg-custom .pg-conversion-hero__copy .pg-contact-list { width: min(100%,560px); margin-right: auto; margin-left: auto; text-align: left; }
 body.pg-custom .pg-conversion-hero__form { width: min(100%,620px); margin-inline: auto; }
 body.pg-custom .pg-legal__layout { grid-template-columns: 1fr; gap: 35px; }
 body.pg-custom .pg-legal__aside { position: static; }
}
@media (max-width: 760px) {
 body.pg-custom .pg-inner-hero { min-height: 460px; text-align: center; }
 body.pg-custom .pg-inner-hero__content { padding-top: 70px; padding-bottom: 70px; }
 body.pg-custom .pg-inner-hero .pg-eyebrow { justify-content: center; }
 body.pg-custom .pg-inner-hero__background::after { background: rgba(5,7,10,.76); }
 body.pg-custom .pg-split, body.pg-custom .pg-credentials__grid { grid-template-columns: 1fr; gap: 38px; }
 body.pg-custom .pg-credential-card { grid-template-columns: 1fr; text-align: center; }
 body.pg-custom .pg-credential-card img { max-width: 240px; margin-inline: auto; }
 body.pg-custom .pg-credential-card .pg-text-link { margin-inline: auto; }
 body.pg-custom .pg-value-grid, body.pg-custom .pg-value-grid--three { grid-template-columns: 1fr; }
 body.pg-custom .pg-service-jump { top: 72px; }
 body.pg-custom .pg-service-detail { padding: 68px 0; scroll-margin-top: 140px; }
 body.pg-custom .pg-service-detail__media--pair { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
 body.pg-custom .pg-service-detail__media--pair img { height: auto; aspect-ratio: 3/4; }
 body.pg-custom .pg-gallery-grid--large { column-count: 2; }
 body.pg-custom .pg-contact-info-page__grid { gap: 35px; }
 body.pg-custom .pg-service-summary { grid-template-columns: 1fr; }
 body.pg-custom .pg-map-card, body.pg-custom .pg-map-card iframe { height: 330px; min-height: 330px; }
 body.pg-custom .pg-conversion-hero__grid { padding-top: 45px; padding-bottom: 45px; }
 body.pg-custom .pg-conversion-hero h1 { font-size: clamp(2.3rem,12vw,3.5rem); }
 body.pg-custom .pg-legal-hero { text-align: center; padding: 72px 0 60px; }
 body.pg-custom .pg-legal-hero .pg-eyebrow { justify-content: center; }
}
@media (max-width: 420px) {
 body.pg-custom .pg-service-detail__media--pair { grid-template-columns: 1fr; }
 body.pg-custom .pg-gallery-grid--large { column-count: 2; }
}

@media (max-width: 760px) {
    /* Keep the form visible within the first mobile viewport on conversion pages. */
    body.pg-custom .pg-conversion-hero__copy .pg-contact-list--dark,
    body.pg-custom .pg-conversion-hero--thankyou .pg-thankyou-links {
        display: none;
    }

    body.pg-custom .pg-conversion-hero__grid {
        gap: 28px;
    }

    body.pg-custom .pg-conversion-hero__copy > p:not(.pg-eyebrow) {
        margin-bottom: 0;
    }
}


/* =========================================================
   V5 FINAL CONTENT, ANCHOR AND MOBILE ALIGNMENT REFINEMENTS
   ========================================================= */
body.pg-custom .pg-section-actions--center {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

body.pg-custom .pg-about-page .pg-about-story__copy .pg-button {
    margin-top: 8px;
}

body.pg-custom .pg-services-page,
body.pg-custom .pg-services-page *,
body.pg-custom .pg-services-page *::before,
body.pg-custom .pg-services-page *::after {
    animation: none !important;
    transition: none !important;
}

body.pg-custom .pg-services-page {
    scroll-behavior: auto !important;
}

body.pg-custom .pg-services-page .pg-service-detail {
    scroll-margin-top: 108px;
}

body.pg-custom .pg-services-page .pg-service-detail__grid {
    grid-template-areas:
        "media heading"
        "media body";
    grid-template-rows: auto 1fr;
}

body.pg-custom .pg-services-page .pg-service-detail--reverse .pg-service-detail__grid {
    grid-template-areas:
        "heading media"
        "body media";
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
}

body.pg-custom .pg-services-page .pg-service-detail__heading {
    grid-area: heading;
    align-self: end;
}

body.pg-custom .pg-services-page .pg-service-detail__heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

body.pg-custom .pg-services-page .pg-service-detail__media {
    grid-area: media;
    align-self: stretch;
}

body.pg-custom .pg-services-page .pg-service-detail__media:not(.pg-service-detail__media--pair) {
    min-height: 390px;
}

body.pg-custom .pg-services-page .pg-service-detail__media:not(.pg-service-detail__media--pair) img {
    height: 100%;
    min-height: 390px;
}

body.pg-custom .pg-services-page .pg-service-detail__body {
    grid-area: body;
    align-self: start;
}

body.pg-custom .pg-services-page .pg-service-detail__body > p {
    color: var(--pg-muted);
}

body.pg-custom .pg-services-page .pg-service-detail--dark .pg-service-detail__body > p,
body.pg-custom .pg-services-page .pg-service-detail--dark .pg-check-list li {
    color: rgba(255,255,255,.72);
}

body.pg-custom .pg-services-page .pg-service-detail--dark h2 {
    color: #fff;
}

@media (max-width: 1020px) {
    body.pg-custom .pg-services-page .pg-service-detail__grid,
    body.pg-custom .pg-services-page .pg-service-detail--reverse .pg-service-detail__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "media"
            "body";
        gap: 25px;
    }

    body.pg-custom .pg-services-page .pg-service-detail__media {
        width: min(100%, 760px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    body.pg-custom .pg-brand img {
        height: 68px;
        max-width: 235px;
    }

    body.pg-custom .pg-header__inner {
        min-height: 84px;
    }

    body.pg-custom .pg-hero__grid {
        padding-top: 56px;
        padding-bottom: 57px;
    }

    body.pg-custom .pg-hero h1 {
        margin-bottom: 28px;
    }

    body.pg-custom .pg-hero__description {
        margin-bottom: 29px;
    }

    body.pg-custom .pg-about-page .pg-about-story__copy,
    body.pg-custom .pg-about-page .pg-credential-card,
    body.pg-custom .pg-about-page .pg-section-heading,
    body.pg-custom .pg-about-page .pg-values,
    body.pg-custom .pg-services-page .pg-services-intro__copy,
    body.pg-custom .pg-services-page .pg-service-detail__heading,
    body.pg-custom .pg-services-page .pg-service-detail__body {
        text-align: center;
    }

    body.pg-custom .pg-about-page .pg-about-story__copy .pg-eyebrow,
    body.pg-custom .pg-services-page .pg-services-intro__copy .pg-eyebrow,
    body.pg-custom .pg-services-page .pg-service-detail__heading .pg-eyebrow {
        justify-content: center;
    }

    body.pg-custom .pg-about-page .pg-about-story__copy .pg-button,
    body.pg-custom .pg-services-page .pg-services-intro__copy .pg-button,
    body.pg-custom .pg-services-page .pg-service-detail__body .pg-button {
        margin-inline: auto;
    }

    body.pg-custom .pg-services-page .pg-services-intro__grid {
        gap: 30px;
        text-align: center;
    }

    body.pg-custom .pg-services-page .pg-services-intro__grid > img {
        height: auto;
        max-height: 430px;
        aspect-ratio: 4 / 3;
    }

    body.pg-custom .pg-services-page .pg-service-detail {
        scroll-margin-top: 92px;
    }

    body.pg-custom .pg-services-page .pg-service-detail__grid,
    body.pg-custom .pg-services-page .pg-service-detail--reverse .pg-service-detail__grid {
        gap: 22px;
    }

    body.pg-custom .pg-services-page .pg-service-detail__media:not(.pg-service-detail__media--pair),
    body.pg-custom .pg-services-page .pg-service-detail__media:not(.pg-service-detail__media--pair) img {
        min-height: 0;
    }

    body.pg-custom .pg-services-page .pg-service-detail__media img {
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    body.pg-custom .pg-services-page .pg-service-detail__media--pair img {
        aspect-ratio: 3 / 4;
    }

    body.pg-custom .pg-services-page .pg-check-list {
        width: min(100%, 560px);
        margin-inline: auto;
        text-align: left;
    }

    body.pg-custom .pg-services-page .pg-safety-notice {
        text-align: left;
    }

    body.pg-custom .pg-conversion-hero__copy .pg-success-mark {
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-footer__brand img {
        height: 82px;
        max-width: 270px;
    }
}
