* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff url('../images/hero.jpg') center top no-repeat;
    background-size: 100%;
    font-family: 'Cal Sans', 'Inter', system-ui, -apple-system, sans-serif;
    color: #232931;
    line-height: 1.5;
}

.peWrapper {
    max-width: 1180px;
    width: 98%;
    margin: 0 auto;
    background: #fff;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 500 !important;
    line-height: 1.1;
}


.peHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 20px;
    flex-wrap: wrap;
}

.peLogo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #232931;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.3px;
}

.peLogo img {
    height: 30px;
    width: auto;
}

.peNav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.peNav a {
    text-decoration: none;
    color: #232931;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.2s;
}

.peNav a:hover {
    opacity: 0.6;
}

.peNav .peContactBtn {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 24px;
    border-radius: 34px;
    font-weight: 500;
    transition: 0.3s;
}

.peNav .peContactBtn:hover {
    opacity: 0.8;
    background: #232931;
}


.peHamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 6px;
}

.peHamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #232931;
    border-radius: 4px;
    transition: 0.3s;
}


.peBanner {
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
    background: url('../images/main.jpg') center bottom no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.peBannerSub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6e8eb;
    color: #232931;
    font-size: 12px;
    padding: 0 14px 0 8px;
    border-radius: 20px;
    height: 28px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.peBannerSub::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #232931;
    border-radius: 50%;
}

.peBannerTitle {
    font-family: 'Cal Sans', sans-serif;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #232931;
    max-width: 900px;
    margin: 0 auto 20px;
    position: relative;
    display: block;
}


.peBannerText {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 30px;
    color: #232931;
    opacity: 0.8;
}

.peBtnGroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.peBtn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 34px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg, rgba(250, 6, 87, 1) 0%, rgba(254, 109, 45, 1) 50%, rgba(244, 101, 189, 1) 100%);
    color: #fff;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.peBtnOutline {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
    background: #fff;
}

.peBtnOutline:hover {
    background: #f5f5f5;
}

.peBannerImg {
    margin-top: 16px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.peBannerImg img {
    width: 100%;
    display: block;
}


.peAbout {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 70px 0 50px;
}

.peAboutContent {
    flex: 1;
}

.peAboutContent h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.peAboutContent p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    opacity: 0.85;
}

.peAboutImage {
    flex: 1;
}

.peAboutImage img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}


.peAdvantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 0 60px;
}

.peAdvItem {
    background: #fff;
    background-image: url('../images/block_bg.jpg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    border-radius: 15px;
    padding: 28px 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
    transition: 0.2s;
    border: 1px solid #f0f0f0;
}

.peAdvItem .peNumber {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: 'Cal Sans', sans-serif;
    background: linear-gradient(90deg, rgba(250, 6, 87, 1) 0%, rgba(254, 109, 45, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.peAdvItem h4 {
    font-size: 1.4rem;
    margin: 6px 0 10px;
}

.peAdvItem p {
    opacity: 0.7;
}


.peServices {
    padding: 50px 0 40px;
    text-align: center;
}

.peServices h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.8rem;
}

.peServices>p {
    max-width: 700px;
    margin: 12px auto 40px;
    opacity: 0.75;
    font-size: 1.1rem;
}

.peServicesGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.peServiceBig {
    grid-row: span 2;
    background: #fff;
    background-image: url('../images/block_bg.jpg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    border-radius: 15px;
    padding: 32px 28px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.peServiceSmall {
    background: #fff;
    background-image: url('../images/block_bg.jpg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    border-radius: 15px;
    padding: 28px 22px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.peServiceIcon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: #cdc7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.peServiceIcon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.peServiceBig h4,
.peServiceSmall h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.peServiceBig p,
.peServiceSmall p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.peReadMore {
    text-decoration: none;
    font-weight: 600;
    color: #232931;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.peReadMore:hover {
    border-bottom-color: #232931;
}


.peWhy {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0 50px;
}

.peWhyImage {
    flex: 1;
}

.peWhyImage img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

.peWhyContent {
    flex: 1;
}

.peWhyContent h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.peWhyContent p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.peWhyList {
    list-style: none;
    margin-bottom: 28px;
}

.peWhyList li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 450;
}

.peWhyList li::before {
    content: '✓';
    font-weight: 700;
    color: #fa0657;
    font-size: 1.3rem;
}


.peSteps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0 60px;
}

.peStep {
    background: #fff;
    background-image: url('../images/block_bg.jpg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    border-radius: 15px;
    padding: 30px 24px;
    border: 1px solid #f0f0f0;
}

.peStep .peStepNum {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Cal Sans', sans-serif;
    color: #232931;
    opacity: 0.15;
    margin-bottom: 4px;
}

.peStep h4 {
    font-size: 1.4rem;
    margin: 4px 0 10px;
}

.peStep p {
    opacity: 0.7;
}


.peCta {
    background: linear-gradient(90deg, rgba(250, 6, 87, 1) 0%, rgba(254, 109, 45, 1) 50%, rgba(244, 101, 189, 1) 100%);
    background-size: contain;
    border-radius: 20px;
    padding: 50px 48px;
    margin: 30px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    background-blend-mode: overlay;
}

.peCtaLeft {
    max-width: 60%;
}

.peCtaLeft h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.peCtaLeft p {
    opacity: 0.8;
}

.peCta .peBtn {
    background: #fff;
    color: #232931;
    padding: 16px 44px;
}

.peCta .peBtn:hover {
    background: #f0f0f0;
}


.peFooter {
    background: #232931;
    color: #eaeaea;
    border-radius: 32px 32px 0 0;
    padding: 50px 40px 30px;
    margin-top: 30px;
}

.peFooterTop {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.peFooterBrand {
    max-width: 260px;
}

.peFooterBrand img {
    height: 38px;
}

.peFooterBrand p {
    opacity: 0.6;
    margin-top: 12px;
    font-size: 0.9rem;
}

.peFooterLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.peFooterLinks ul {
    list-style: none;
}

.peFooterLinks ul li {
    margin-bottom: 10px;
}

.peFooterLinks a {
    text-decoration: none;
    color: #eaeaea;
    opacity: 0.6;
    transition: 0.2s;
    font-size: 0.95rem;
}

.peFooterLinks a:hover {
    opacity: 1;
}

.peFooterContact {
    opacity: 0.6;
    max-width: 230px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.peFooterContact div {
    margin-bottom: 5px;
}

.peFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.85rem;
    opacity: 0.4;
    flex-wrap: wrap;
    gap: 12px;
}

.peContact {
    padding: 50px 0 70px;
}

.peContactGrid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}


.peContactInfo {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.peContactItem {
    padding: 8px 0;
}

.peContactLabel {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.4;
    font-weight: 600;
    margin-bottom: 4px;
}

.peContactValue {
    font-size: 1.05rem;
    font-weight: 500;
    color: #232931;
    line-height: 1.6;
}

.peContactDivider {
    height: 1px;
    background: #e8e8e8;
    margin: 20px 0;
}


.peContactForm h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.peContactForm>p {
    opacity: 0.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.peFormGroup {
    margin-bottom: 18px;
}

.peFormGroup input,
.peFormGroup textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fafafa;
    transition: 0.25s;
    color: #232931;
    outline: none;
}

.peFormGroup input:focus,
.peFormGroup textarea:focus {
    border-color: #fa0657;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(250, 6, 87, 0.06);
}

.peFormGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.peBtnSubmit {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.05rem;
    border: 0;
    cursor: pointer;
    margin-top: 6px;
    transition: 0.3s;
}

.peBtnSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(250, 6, 87, 0.25);
}

.peThankYou {
    margin-top: 24px;
    padding: 24px 20px;
    background: #f0f9f0;
    border-radius: 14px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a7a3a;
    border: 1px solid #c8e6c8;
}

.peThankYou span {
    display: block;
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 6px;
}

@media (max-width: 992px) {
    .peContactGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .peContactForm h2 {
        font-size: 2rem;
    }

    .peContactInfo {
        padding: 28px 20px;
    }
}






.peLegalPage {
    padding: 40px 0 70px;
}

.peLegalHeader {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 2px solid #f0f0f0;
}

.peLegalHeader h1 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #232931;
}

.peLegalMeta {
    font-size: 0.9rem;
    color: #232931;
    opacity: 0.5;
    font-weight: 500;
}



.peLegalIntro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 36px;
    padding: 20px 28px;
    background: #f8f8fa;
    border-radius: 12px;
    border-left: 4px solid #fa0657;
    opacity: 0.85;
}

.peLegalContent h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.8rem;
    margin: 38px 0 16px;
    color: #232931;
}

.peLegalContent h3 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.3rem;
    margin: 28px 0 12px;
    color: #232931;
}

.peLegalContent p {
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.85;
    font-size: 1.02rem;
}

.peLegalContent ul {
    margin: 16px 0 22px 24px;
    line-height: 1.8;
}

.peLegalContent ul li {
    margin-bottom: 8px;
    opacity: 0.85;
    font-size: 1.02rem;
}

.peLegalContent ul li strong {
    color: #232931;
    opacity: 1;
}

.peLegalContact {
    margin-top: 20px;
    padding: 20px 28px;
    background: #f8f8fa;
    border-radius: 12px;
    line-height: 1.9;
    font-weight: 500;
}

.peLegalContact div {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .peLegalHeader h1 {
        font-size: 2.2rem;
    }

    .peLegalContent h2 {
        font-size: 1.5rem;
    }

    .peLegalIntro {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .peLegalContent p,
    .peLegalContent ul li {
        font-size: 0.95rem;
    }
}




.peAboutPage {
    padding: 40px 0 70px;
}


.peAboutHeader {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.peAboutHeader h1 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 3rem;
    margin-bottom: 16px;
    color: #232931;
}

.peAboutHeader p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.75;
}


.peAboutValues {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.peAboutValue {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1px solid #f0f0f0;
    transition: 0.25s;
}

.peAboutValue:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.peAboutValueIcon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #cdc7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.peAboutValue h3 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #232931;
}

.peAboutValue p {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.98rem;
}


.peAboutDetailed {
    max-width: 900px;
    margin: 0 auto 60px;
}

.peAboutDetailed h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 24px;
    text-align: center;
    color: #232931;
}

.peAboutDetailed p {
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.82;
    font-size: 1.05rem;
}


.peAboutStats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background: #f8f8fa;
    border-radius: 20px;
    padding: 36px 20px;
    max-width: 860px;
    margin: 0 auto;
}

.peAboutStat {
    text-align: center;
    padding: 8px 12px;
}

.peStatNumber {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #232931;
    margin-bottom: 4px;
    background: linear-gradient(90deg, rgba(250, 6, 87, 1) 0%, rgba(254, 109, 45, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.peStatLabel {
    font-size: 0.95rem;
    opacity: 0.5;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.peStatDivider {
    width: 1px;
    height: 50px;
    background: #ddd;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .peAboutValues {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .peAboutHeader h1 {
        font-size: 2.2rem;
    }

    .peAboutValues {
        grid-template-columns: 1fr;
    }

    .peAboutDetailed h2 {
        font-size: 1.8rem;
    }

    .peAboutStats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 16px;
    }

    .peStatDivider {
        display: none;
    }

    .peStatNumber {
        font-size: 2rem;
    }
}



.peServicesPage {
    padding: 40px 0 0px;
}


.peServicesHeader {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.peServicesSubtitle {
    display: inline-block;
    background: #e6e8eb;
    color: #232931;
    font-size: 12px;
    padding: 0 16px 0 8px;
    border-radius: 20px;
    height: 28px;
    line-height: 28px;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.peServicesSubtitle::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #232931;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.peServicesHeader h1 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: #232931;
}

.peServicesHeader p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.7;
}


.peFeaturesTabs {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 20px;
}


.peFeaturesNav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f8f8fa;
    border-radius: 16px;
    padding: 10px;
    height: fit-content;
}

.peFeaturesNavItem {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
    text-align: left;
    width: 100%;
    font-family: inherit;
    color: #232931;
}

.peFeaturesNavItem:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.peFeaturesNavItem.active {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.peFeaturesNavItem .peNavNumber {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.3;
    min-width: 28px;
    letter-spacing: 0.5px;
}

.peFeaturesNavItem.active .peNavNumber {
    opacity: 0.8;
    background: linear-gradient(90deg, rgba(250, 6, 87, 1) 0%, rgba(254, 109, 45, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.peFeaturesNavItem .peNavTitle {
    font-size: 1rem;
    font-weight: 500;
}


.peFeaturesContent {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px;
    border: 1px solid #f0f0f0;
    min-height: 420px;
}

.peFeaturesTab {
    display: none;
    animation: peFadeIn 0.4s ease;
}

.peFeaturesTab.active {
    display: block;
}

@keyframes peFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.peTabSubtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.4;
    font-weight: 600;
    margin-bottom: 6px;
}

.peFeaturesTab h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #232931;
}

.peFeaturesTab p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.peFeaturesTab ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.peFeaturesTab ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.98rem;
}

.peFeaturesTab ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #fa0657;
    font-weight: 700;
    font-size: 1.1rem;
}

.peBtnTab {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .peFeaturesTabs {
        grid-template-columns: 1fr;
    }

    .peFeaturesNav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        padding: 8px;
    }

    .peFeaturesNavItem {
        flex: 1;
        min-width: 140px;
        padding: 12px 16px;
        justify-content: center;
    }

    .peFeaturesContent {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .peServicesHeader h1 {
        font-size: 2rem;
    }

    .peFeaturesNav {
        flex-direction: column;
    }

    .peFeaturesNavItem {
        justify-content: flex-start;
        min-width: unset;
    }

    .peFeaturesContent {
        padding: 20px 16px;
    }

    .peFeaturesTab h2 {
        font-size: 1.6rem;
    }
}













@media (max-width: 992px) {

    .peAbout,
    .peWhy {
        flex-direction: column;
        gap: 30px;
    }

    .peServicesGrid {
        grid-template-columns: 1fr 1fr;
    }

    .peServiceBig {
        grid-row: auto;
    }

    .peCta {
        background: #232931;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .peCtaLeft {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .peNav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 18px;
        padding: 18px 0 10px;
        background: #fff;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .peNav.peOpen {
        display: flex;
    }

    .peHamburger {
        display: flex;
    }

    .peBannerTitle {
        font-size: 2.6rem;
    }

    .peAdvantages {
        grid-template-columns: 1fr;
    }

    .peSteps {
        grid-template-columns: 1fr;
    }

    .peServicesGrid {
        grid-template-columns: 1fr;
    }

    .peFooterTop {
        flex-direction: column;
    }

    .peFooterLinks {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width: 500px) {
    .peWhyContent h2 {
        font-size: 2.2rem;
    }

    .peCta {
        padding: 30px;
    }

    .peFooter {
        padding: 40px 20px;
    }
    .peCtaLeft h2{
        font-size: 2rem;
    }
}