@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

body.pg-custom {
    --pg-navy: #081a38;
    --pg-navy-2: #0d2348;
    --pg-navy-3: #112c58;
    --pg-orange: #f39220;
    --pg-orange-deep: #dd7f13;
    --pg-white: #ffffff;
    --pg-light: #f5f7fb;
    --pg-light-2: #eef2f7;
    --pg-ink: #101828;
    --pg-muted: #61708a;
    --pg-border: rgba(8, 26, 56, 0.12);
    --pg-shadow: 0 22px 70px rgba(8, 26, 56, 0.12);
    --pg-shadow-soft: 0 12px 30px rgba(8, 26, 56, 0.08);
    --pg-radius-xs: 10px;
    --pg-radius-sm: 16px;
    --pg-radius: 24px;
    --pg-radius-lg: 32px;
    --pg-container: min(1140px, calc(100vw - 36px));
    margin: 0;
    color: var(--pg-ink);
    background: var(--pg-white);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

body.pg-custom a {
    color: inherit;
    text-decoration: none;
}

body.pg-custom img {
    display: block;
    max-width: 100%;
    height: auto;
}

body.pg-custom p,
body.pg-custom li,
body.pg-custom input,
body.pg-custom textarea,
body.pg-custom select,
body.pg-custom button {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

body.pg-custom p {
    margin: 0;
    line-height: 1.72;
}

body.pg-custom ul {
    margin: 0;
    padding: 0;
}

body.pg-custom h1,
body.pg-custom h2,
body.pg-custom h3,
body.pg-custom h4 {
    margin: 0;
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 800;
}

body.pg-custom .pg-container {
    width: var(--pg-container);
    margin: 0 auto;
}

body.pg-custom .pg-skip-link {
    position: absolute;
    top: -70px;
    left: 16px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--pg-white);
    background: var(--pg-navy);
}

body.pg-custom .pg-skip-link:focus {
    top: 14px;
}

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

body.pg-custom .pg-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--pg-orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

body.pg-custom .pg-eyebrow::before,
body.pg-custom .pg-eyebrow::after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

body.pg-custom .pg-section-head {
    max-width: 760px;
}

body.pg-custom .pg-section-head--center {
    margin: 0 auto 42px;
    text-align: center;
}

body.pg-custom .pg-section-head h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: var(--pg-navy);
}

body.pg-custom .pg-section-head p:last-child {
    color: var(--pg-muted);
}

body.pg-custom .pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

body.pg-custom .pg-btn--primary {
    color: var(--pg-white);
    background: var(--pg-orange);
    box-shadow: 0 14px 34px rgba(243, 146, 32, 0.28);
}

body.pg-custom .pg-btn--primary:hover,
body.pg-custom .pg-btn--primary:focus-visible {
    background: var(--pg-orange-deep);
}

body.pg-custom .pg-btn--dark {
    color: var(--pg-white);
    background: var(--pg-navy);
}

body.pg-custom .pg-btn--light {
    color: var(--pg-navy);
    background: var(--pg-white);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.14);
}

body.pg-custom .pg-btn--ghost,
body.pg-custom .pg-btn--ghost-light {
    background: transparent;
}

body.pg-custom .pg-btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--pg-white);
}

body.pg-custom .pg-btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--pg-white);
}

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

body.pg-custom .pg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pg-navy);
    color: var(--pg-white);
    box-shadow: 0 16px 40px rgba(8, 26, 56, 0.16);
}

body.pg-custom .pg-topbar {
    background: var(--pg-navy-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

body.pg-custom .pg-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 30px;
}

body.pg-custom .pg-topbar a {
    color: var(--pg-orange);
    font-weight: 800;
    white-space: nowrap;
}

body.pg-custom .pg-nav-wrap {
    background: var(--pg-navy);
}

body.pg-custom .pg-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
}

body.pg-custom .pg-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    max-width: 30vw;
    height: 58px;
    padding: 4px 6px;
    border-radius: 10px;
    background: var(--pg-white);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

body.pg-custom .pg-logo img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: none;
    transform-origin: center;
}

body.pg-custom .pg-desktop-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.88rem;
    font-weight: 700;
}

body.pg-custom .pg-desktop-menu a {
    color: rgba(255, 255, 255, 0.88);
}

body.pg-custom .pg-desktop-menu a:hover,
body.pg-custom .pg-desktop-menu a:focus-visible {
    color: var(--pg-orange);
}

body.pg-custom .pg-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--pg-orange);
    color: var(--pg-white);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
}

body.pg-custom .pg-menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

body.pg-custom .pg-menu-toggle span {
    position: absolute;
    left: 13px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--pg-white);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

body.pg-custom .pg-menu-toggle span:nth-child(1) { top: 16px; }
body.pg-custom .pg-menu-toggle span:nth-child(2) { top: 23px; }
body.pg-custom .pg-menu-toggle span:nth-child(3) { top: 30px; }

body.pg-custom.pg-menu-open .pg-menu-toggle span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

body.pg-custom.pg-menu-open .pg-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.pg-custom.pg-menu-open .pg-menu-toggle span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

body.pg-custom .pg-mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 999;
    padding: 12px 18px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

body.pg-custom.pg-menu-open .pg-mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.pg-custom .pg-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    border-radius: 24px;
    background: var(--pg-navy);
    box-shadow: 0 22px 50px rgba(8, 26, 56, 0.24);
}

body.pg-custom .pg-mobile-menu__nav > a {
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    color: var(--pg-white);
}

body.pg-custom .pg-mobile-menu__phone,
body.pg-custom .pg-mobile-menu__quote {
    min-width: 220px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
}

body.pg-custom .pg-mobile-menu__phone {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

body.pg-custom .pg-mobile-menu__quote {
    background: var(--pg-orange);
}

body.pg-custom .pg-hero {
    position: relative;
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
    padding: 34px 0 44px;
    color: var(--pg-white);
    background-color: var(--pg-navy);
    background-image:
        linear-gradient(90deg, rgba(8, 26, 56, 0.92) 0%, rgba(8, 26, 56, 0.84) 42%, rgba(8, 26, 56, 0.66) 100%),
        var(--pg-hero-image);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

body.pg-custom .pg-hero::before,
body.pg-custom .pg-hero::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

body.pg-custom .pg-hero::before {
    top: 28px;
    right: 9%;
    width: 86px;
    height: 86px;
    border-color: rgba(243, 146, 32, 0.65);
}

body.pg-custom .pg-hero::after {
    inset: auto auto 48px 6%;
    width: 90px;
    height: 90px;
    border-color: rgba(255, 255, 255, 0.1);
}

body.pg-custom .pg-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 400px);
    gap: 42px;
    align-items: center;
}

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

body.pg-custom .pg-hero h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 6vw, 4.35rem);
    color: var(--pg-white);
}

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

body.pg-custom .pg-hero__lead {
    max-width: 580px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
}

body.pg-custom .pg-hero__micro-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    max-width: 600px;
    margin-bottom: 24px;
}

body.pg-custom .pg-hero__micro-list span {
    position: relative;
    display: block;
    min-width: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
}

body.pg-custom .pg-hero__micro-list span::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--pg-orange);
    box-shadow: 0 0 0 5px rgba(243, 146, 32, 0.14);
}

body.pg-custom .pg-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

body.pg-custom .pg-quote-card {
    position: relative;
    padding: 24px 26px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--pg-ink);
    box-shadow: var(--pg-shadow);
    overflow: hidden;
}

body.pg-custom .pg-quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(8, 26, 56, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

body.pg-custom .pg-quote-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 7px;
    background: var(--pg-orange);
}

body.pg-custom .pg-quote-card__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(243, 146, 32, 0.14);
    color: var(--pg-orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.pg-custom .pg-quote-card h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: var(--pg-navy);
}

body.pg-custom .pg-quote-card > p:not(.pg-quote-card__eyebrow) {
    margin-bottom: 18px;
    color: var(--pg-muted);
    font-size: 0.95rem;
}

body.pg-custom .pg-quote-card form,
body.pg-custom .pg-quote-card .elementor-form,
body.pg-custom .pg-quote-card .elementor-widget-container {
    position: relative;
    z-index: 1;
}

body.pg-custom .pg-quote-card input,
body.pg-custom .pg-quote-card textarea,
body.pg-custom .pg-quote-card select,
body.pg-custom .pg-quote-card .elementor-field,
body.pg-custom .pg-quote-card .elementor-field-textual {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(8, 26, 56, 0.12) !important;
    border-radius: 12px !important;
    background: #f9fafc !important;
    box-shadow: none !important;
    color: var(--pg-ink) !important;
    font-size: 0.92rem !important;
}

body.pg-custom .pg-quote-card textarea,
body.pg-custom .pg-quote-card .elementor-field-type-textarea textarea {
    min-height: 92px;
}

body.pg-custom .pg-quote-card label,
body.pg-custom .pg-quote-card .elementor-field-label {
    display: block;
    margin-bottom: 6px;
    color: var(--pg-navy);
    font-size: 0.8rem;
    font-weight: 800;
}

body.pg-custom .pg-quote-card button[type='submit'],
body.pg-custom .pg-quote-card .elementor-button,
body.pg-custom .pg-quote-card .e-form__buttons__wrapper__button-next,
body.pg-custom .pg-quote-card .e-form__buttons__wrapper__button {
    min-height: 46px;
    border: 0 !important;
    border-radius: 6px !important;
    background: var(--pg-orange) !important;
    color: var(--pg-white) !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    box-shadow: 0 14px 28px rgba(243, 146, 32, 0.24) !important;
}

body.pg-custom .pg-mobile-form {
    display: none;
    padding: 28px 0 0;
    background: var(--pg-white);
}


body.pg-custom .pg-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

body.pg-custom .pg-split-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

body.pg-custom .pg-copy-block h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pg-navy);
}

body.pg-custom .pg-copy-block p:not(.pg-eyebrow) {
    margin-bottom: 16px;
    color: var(--pg-muted);
}

body.pg-custom .pg-copy-block .pg-btn {
    margin-top: 10px;
}

body.pg-custom .pg-copy-block--light h2,
body.pg-custom .pg-copy-block--light p:not(.pg-eyebrow) {
    color: var(--pg-white);
}

body.pg-custom .pg-photo-frame {
    position: relative;
}

body.pg-custom .pg-photo-frame img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--pg-shadow);
}


body.pg-custom .pg-photo-frame--intro {
    width: min(100%, 560px);
    justify-self: start;
}

body.pg-custom .pg-photo-frame--intro img {
    width: 100%;
    max-width: none;
}

body.pg-custom .pg-photo-frame--intro::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -16px;
    width: 86px;
    height: 86px;
    border: 3px solid var(--pg-orange);
    border-left: 0;
    border-bottom: 0;
    border-radius: 14px;
}


body.pg-custom .pg-stat-card {
    position: absolute;
    left: -22px;
    bottom: -24px;
    display: block;
    max-width: 230px;
    padding: 22px 24px;
    border-radius: 18px;
    background: var(--pg-navy);
    color: var(--pg-white);
    box-shadow: 0 18px 36px rgba(8, 26, 56, 0.26);
}

body.pg-custom .pg-stat-card strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--pg-orange);
}

body.pg-custom .pg-stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.84);
    font-size: 0.92rem;
    line-height: 1.55;
}

body.pg-custom .pg-services {
    background: var(--pg-light);
}

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

body.pg-custom .pg-service-card {
    padding: 28px 24px 24px;
    border: 1px solid rgba(8, 26, 56, 0.08);
    border-radius: 20px;
    background: var(--pg-white);
    box-shadow: var(--pg-shadow-soft);
}

body.pg-custom .pg-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(243, 146, 32, 0.12);
    color: var(--pg-orange);
    font-size: 0.82rem;
    font-weight: 800;
}

body.pg-custom .pg-service-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    color: var(--pg-navy);
}

body.pg-custom .pg-service-card p {
    margin-bottom: 16px;
    color: var(--pg-muted);
    font-size: 0.94rem;
}

body.pg-custom .pg-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pg-orange);
    font-size: 0.88rem;
    font-weight: 800;
}

body.pg-custom .pg-service-card a::after {
    content: '→';
    font-size: 0.95rem;
}

body.pg-custom .pg-why {
    background: var(--pg-navy);
}

body.pg-custom .pg-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 24px 0 10px;
    list-style: none;
}

body.pg-custom .pg-feature-list li {
    position: relative;
    min-width: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
    line-height: 1.6;
}

body.pg-custom .pg-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--pg-orange);
}

body.pg-custom .pg-photo-frame--dark {
    padding-right: 30px;
}

body.pg-custom .pg-photo-frame--dark::before,
body.pg-custom .pg-photo-frame--dark::after {
    content: '';
    position: absolute;
    border: 2px solid var(--pg-orange);
    border-radius: 20px;
}

body.pg-custom .pg-photo-frame--dark::before {
    right: 0;
    top: -20px;
    width: 98px;
    height: 98px;
}

body.pg-custom .pg-photo-frame--dark::after {
    left: 18px;
    bottom: 18px;
    width: 86px;
    height: 86px;
    border-right-width: 0;
    border-top-width: 0;
}

body.pg-custom .pg-solar {
    background: var(--pg-white);
}

body.pg-custom .pg-photo-frame--solar {
    max-width: 470px;
}

body.pg-custom .pg-photo-tag {
    position: absolute;
    top: -12px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--pg-orange);
    color: var(--pg-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.pg-custom .pg-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 18px;
}

body.pg-custom .pg-mini-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--pg-light);
    color: var(--pg-navy);
    font-size: 0.84rem;
    font-weight: 700;
}

body.pg-custom .pg-areas {
    background: var(--pg-light);
}

body.pg-custom .pg-area-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 34px;
    border: 1px solid rgba(8, 26, 56, 0.08);
    border-radius: 24px;
    background: var(--pg-white);
    box-shadow: var(--pg-shadow-soft);
}

body.pg-custom .pg-area-card__copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--pg-navy);
}

body.pg-custom .pg-area-card__copy p {
    margin-bottom: 14px;
    color: var(--pg-muted);
}

body.pg-custom .pg-area-card__copy .pg-btn {
    margin-top: 4px;
}

body.pg-custom .pg-area-card__pills {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
}

body.pg-custom .pg-area-card__pills span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(8, 26, 56, 0.1);
    border-radius: 999px;
    background: var(--pg-light);
    color: var(--pg-navy);
    font-size: 0.86rem;
    font-weight: 700;
}

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

body.pg-custom .pg-process-card {
    padding: 24px 22px;
    border-radius: 20px;
    background: var(--pg-white);
    border: 1px solid rgba(8, 26, 56, 0.08);
    box-shadow: var(--pg-shadow-soft);
    text-align: left;
}

body.pg-custom .pg-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(243, 146, 32, 0.12);
    color: var(--pg-orange);
    font-size: 0.84rem;
    font-weight: 800;
}

body.pg-custom .pg-process-card h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
    color: var(--pg-navy);
}

body.pg-custom .pg-process-card p {
    color: var(--pg-muted);
    font-size: 0.9rem;
}

body.pg-custom .pg-proof {
    background: var(--pg-light);
}

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

body.pg-custom .pg-mosaic-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--pg-shadow-soft);
}

body.pg-custom .pg-mosaic-grid img {
    width: 100%;
    height: 230px;
    min-height: 0;
    object-fit: cover;
}

body.pg-custom .pg-faq {
    background: var(--pg-white);
}

body.pg-custom .pg-faq-wrap {
    max-width: 860px;
}

body.pg-custom .pg-faq__items {
    display: grid;
    gap: 14px;
}

body.pg-custom .pg-faq__item {
    border: 1px solid rgba(8, 26, 56, 0.08);
    border-radius: 18px;
    background: var(--pg-white);
    box-shadow: var(--pg-shadow-soft);
    overflow: hidden;
}

body.pg-custom .pg-faq__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--pg-navy);
    text-align: left;
    cursor: pointer;
}

body.pg-custom .pg-faq__button span {
    min-width: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

body.pg-custom .pg-faq__button b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(243, 146, 32, 0.12);
    color: var(--pg-orange);
    font-size: 1rem;
}

body.pg-custom .pg-faq__button[aria-expanded='true'] b {
    transform: rotate(45deg);
}

body.pg-custom .pg-faq__answer {
    padding: 0 22px 22px;
}

body.pg-custom .pg-faq__answer p {
    color: var(--pg-muted);
}

body.pg-custom .pg-cta {
    position: relative;
    padding: 104px 0;
    color: var(--pg-white);
    background-color: var(--pg-orange);
    background-image:
        linear-gradient(90deg, rgba(243, 146, 32, 0.92) 0%, rgba(221, 127, 19, 0.9) 100%),
        var(--pg-cta-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

body.pg-custom .pg-cta::before {
    display: none;
}

body.pg-custom .pg-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

body.pg-custom .pg-cta h2 {
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    color: var(--pg-white);
}

body.pg-custom .pg-cta p:not(.pg-eyebrow) {
    color: rgba(255, 255, 255, 0.86);
}

body.pg-custom .pg-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

body.pg-custom .pg-contact {
    background: var(--pg-white);
}

body.pg-custom .pg-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.95fr);
    gap: 30px;
    align-items: start;
}

body.pg-custom .pg-contact__copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 2.85rem);
    color: var(--pg-navy);
}

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

body.pg-custom .pg-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

body.pg-custom .pg-contact-cards > a,
body.pg-custom .pg-contact-cards > div {
    display: block;
    padding: 18px;
    border-radius: 18px;
    background: var(--pg-light);
    border: 1px solid rgba(8, 26, 56, 0.08);
}

body.pg-custom .pg-contact-cards strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pg-navy);
    font-size: 0.95rem;
}

body.pg-custom .pg-contact-cards span {
    display: block;
    color: var(--pg-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

body.pg-custom .pg-footer {
    padding: 76px 0 28px;
    color: var(--pg-white);
    background: var(--pg-navy);
}

body.pg-custom .pg-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.8fr));
    gap: 28px;
    margin-bottom: 28px;
}

body.pg-custom .pg-footer__logo {
    display: inline-flex;
    width: 180px;
    height: 54px;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 12px;
    background: var(--pg-white);
    overflow: hidden;
}

body.pg-custom .pg-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.pg-custom .pg-footer__brand p,
body.pg-custom .pg-footer__col p,
body.pg-custom .pg-footer__col a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.7;
}

body.pg-custom .pg-footer__company {
    margin-top: 10px !important;
}

body.pg-custom .pg-footer__col h2 {
    margin-bottom: 14px;
    font-size: 1.08rem;
    color: var(--pg-white);
}

body.pg-custom .pg-footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.pg-custom .pg-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

body.pg-custom .pg-footer__bottom p {
    color: rgba(255, 255, 255, 0.78);
}

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

body.pg-custom .pg-footer__credit a {
    color: var(--pg-white);
    font-weight: 700;
}



body.pg-custom .pg-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

body.pg-custom .pg-float__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

body.pg-custom .pg-float.pg-open .pg-float__channels {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.pg-custom .pg-float__channel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

body.pg-custom .pg-float__channel:hover {
  transform: scale(1.1);
}

body.pg-custom .pg-float__channel--whatsapp { background: #25D366; }
body.pg-custom .pg-float__channel--phone { background: #2196F3; }
body.pg-custom .pg-float__channel--email { background: #f39220; }

body.pg-custom .pg-float__label {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: #081a38;
  color: #FFFFFF;
  font-family: 'Manrope', 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.pg-custom .pg-float__channel:hover .pg-float__label {
  opacity: 1;
}

body.pg-custom .pg-float__main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f39220;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(243,146,32,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

body.pg-custom .pg-float__main:hover {
  background: #dd7f13;
}

body.pg-custom .pg-float__main svg {
  transition: transform 0.3s ease;
}

body.pg-custom .pg-float.pg-open .pg-float__main svg {
  transform: rotate(90deg);
}

body.pg-custom .pg-float__main-icon-chat,
body.pg-custom .pg-float__main-icon-close {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.pg-custom .pg-float__main-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

body.pg-custom .pg-float.pg-open .pg-float__main-icon-chat {
  opacity: 0;
  transform: rotate(90deg);
}

body.pg-custom .pg-float.pg-open .pg-float__main-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

@media (max-width: 768px) {
  body.pg-custom .pg-float {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 1100px) {
    body.pg-custom .pg-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    body.pg-custom .pg-area-card,
    body.pg-custom .pg-contact__grid,
    body.pg-custom .pg-footer__grid,
    body.pg-custom .pg-split-grid,
    body.pg-custom .pg-split-grid--reverse,
    body.pg-custom .pg-hero__grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-hero__content {
        max-width: 100%;
    }

    body.pg-custom .pg-photo-frame--intro,
    body.pg-custom .pg-photo-frame--solar {
        max-width: 560px;
    }

    body.pg-custom .pg-photo-frame--intro img,
    body.pg-custom .pg-photo-frame--solar img {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    body.pg-custom .pg-desktop-menu,
    body.pg-custom .pg-header-cta {
        display: none;
    }

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

    body.pg-custom .pg-hero {
        padding: 58px 0 74px;
    }

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


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

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

}

@media (max-width: 767px) {
    body.pg-custom .pg-section,
    body.pg-custom .pg-cta,
    body.pg-custom .pg-footer {
        padding: 72px 0;
    }

    body.pg-custom .pg-hero {
        padding: 40px 0 30px;
        background-image:
            linear-gradient(180deg, rgba(8, 26, 56, 0.92) 0%, rgba(8, 26, 56, 0.84) 100%),
            var(--pg-hero-mobile-image);
    }

    body.pg-custom .pg-hero::before,
    body.pg-custom .pg-hero::after,
    body.pg-custom .pg-photo-frame__scaffold,
    body.pg-custom .pg-photo-frame--intro::before,
    body.pg-custom .pg-photo-frame--dark::before,
    body.pg-custom .pg-photo-frame--dark::after,
    body.pg-custom .pg-cta::before {
        display: none;
    }

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

    body.pg-custom .pg-nav {
        min-height: 70px;
    }

    body.pg-custom .pg-logo {
        width: 118px;
        height: 50px;
    }

    body.pg-custom .pg-hero__content,
    body.pg-custom .pg-section-head,
    body.pg-custom .pg-copy-block,
    body.pg-custom .pg-area-card__copy,
    body.pg-custom .pg-cta__inner,
    body.pg-custom .pg-contact__copy,
    body.pg-custom .pg-footer__brand,
    body.pg-custom .pg-footer__col,
    body.pg-custom .pg-footer__bottom,
    body.pg-custom .pg-section-head--center,
    body.pg-custom .pg-faq-wrap {
        text-align: center;
    }

    body.pg-custom .pg-hero__content h1 {
        margin-inline: auto;
        font-size: clamp(2.55rem, 13vw, 3.8rem);
    }

    body.pg-custom .pg-hero__lead,
    body.pg-custom .pg-copy-block p:not(.pg-eyebrow),
    body.pg-custom .pg-section-head p:last-child,
    body.pg-custom .pg-area-card__copy p,
    body.pg-custom .pg-cta p:not(.pg-eyebrow),
    body.pg-custom .pg-contact__copy p:not(.pg-eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }

    body.pg-custom .pg-hero__micro-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    body.pg-custom .pg-hero__actions,
    body.pg-custom .pg-cta__actions,
    body.pg-custom .pg-mini-points {
        justify-content: center;
    }

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

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

    body.pg-custom .pg-mobile-form {
        display: block;
    }

    body.pg-custom .pg-service-grid,
    body.pg-custom .pg-process-grid,
    body.pg-custom .pg-contact-cards,
    body.pg-custom .pg-mosaic-grid,
    body.pg-custom .pg-area-card,
    body.pg-custom .pg-footer__grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-trust-box,
    body.pg-custom .pg-service-card,
    body.pg-custom .pg-process-card,
    body.pg-custom .pg-contact-cards > a,
    body.pg-custom .pg-contact-cards > div {
        text-align: center;
    }

    body.pg-custom .pg-photo-frame {
        margin: 0 auto;
    }

    body.pg-custom .pg-stat-card {
        position: static;
        margin: 14px auto 0;
        justify-content: center;
        text-align: left;
    }

    body.pg-custom .pg-area-card {
        padding: 28px 22px;
    }

    body.pg-custom .pg-area-card__pills,
    body.pg-custom .pg-contact-cards,
    body.pg-custom .pg-footer__col {
        justify-content: center;
        align-items: center;
    }

    body.pg-custom .pg-footer__col a,
    body.pg-custom .pg-footer__col p,
    body.pg-custom .pg-footer__brand p {
        text-align: center;
    }

    body.pg-custom .pg-faq__button {
        padding: 18px;
    }

    body.pg-custom .pg-faq__answer {
        padding: 0 18px 18px;
        text-align: left;
    }
}

@media (max-width: 560px) {
    body.pg-custom .pg-container {
        width: min(100vw - 26px, 100%);
    }

    body.pg-custom .pg-section,
    body.pg-custom .pg-cta,
    body.pg-custom .pg-footer {
        padding: 62px 0;
    }

    body.pg-custom .pg-hero__actions,
    body.pg-custom .pg-cta__actions {
        flex-direction: column;
    }

    body.pg-custom .pg-btn,
    body.pg-custom .pg-mobile-menu__phone,
    body.pg-custom .pg-mobile-menu__quote {
        width: 100%;
    }

    body.pg-custom .pg-hero__micro-list span,
    body.pg-custom .pg-feature-list li,
    body.pg-custom .pg-contact-cards span,
    body.pg-custom .pg-footer__contact p,
    body.pg-custom .pg-footer__contact a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* V4 refinements */
body.pg-custom .pg-topbar { display: none !important; }

body.pg-custom .pg-section-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 32px 0 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

body.pg-custom .pg-section-divider span {
    width: 11px;
    height: 11px;
    background: var(--pg-navy);
    border: 2px solid rgba(243, 146, 32, 0.6);
    transform: rotate(45deg);
}

body.pg-custom .pg-why .pg-feature-list {
    margin-top: 0;
}

/* Keep reCAPTCHA v3 hidden inside Elementor forms. Prevents the blank field caused by global textarea/input styling. */
body.pg-custom .pg-quote-card textarea.g-recaptcha-response,
body.pg-custom .pg-quote-card .g-recaptcha-response,
body.pg-custom .pg-quote-card input[type='hidden'],
body.pg-custom .pg-quote-card .elementor-field-type-recaptcha,
body.pg-custom .pg-quote-card .elementor-field-type-recaptcha_v3 {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
}


@media (max-width: 900px) {
    body.pg-custom .pg-hero,
    body.pg-custom .pg-cta {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    body.pg-custom .pg-hero {
        min-height: auto;
        padding: 58px 0 36px;
    }

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

    body.pg-custom .pg-photo-frame--intro {
        justify-self: center;
    }
}

@media (max-width: 900px) {
    body.pg-custom .pg-mosaic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    body.pg-custom .pg-mosaic-grid img {
        height: 240px;
    }
}
