* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c0c0c;
    background-image: url('../img/img_banner.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    font-family: 'Inter', sans-serif;
    color: #A6A6A6;
    line-height: 1.5;
    overflow-x: hidden;
}

.px-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.px-logo-area {
    text-decoration: none;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.px-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f25f30;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 22px;
    border-radius: 10px;
    line-height: 1;
    transition: opacity 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.px-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.px-btn-primary .px-arrow-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24' width='20' height='20'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.px-btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 500;
}

.px-btn-outline-light:hover {
    border-color: #f25f30;
    background: rgba(242, 95, 48, 0.1);
}


h1,
h2,
h3,
h4 {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.px-section-title {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.px-section-sub {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
}


.px-card {
    background: #111;
    border-radius: 10px;
    padding: 30px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.px-card h3 {
    margin-bottom: 12px;
}

.px-card:hover {
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
}


.px-icon-frame {
    width: 50px;
    height: 50px;
    background: #151515;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.px-icon-frame img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


.px-check-list {
    list-style: none;
    padding: 0;
}

.px-check-list li {
    padding-left: 34px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
}

.px-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url('../img/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}


.px-stats-divider {
    width: 1px;
    height: 60px;
    background: #2a2a2a;
    margin: 0 30px;
}


.px-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.px-mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: 0.2s;
}

.px-nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.px-nav-menu a {
    color: #e0e0e0;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
}

.px-nav-menu a:hover {
    color: #f25f30;
}

@media (max-width: 992px) {
    .px-mobile-toggle {
        display: flex;
    }

    .px-nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: auto;
        background: #0c0c0c;
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 28px;
        padding: 40px 30px;
        border-radius: 20px;
        transition: 0.3s;
        z-index: 1000;
        border: 1px solid #222;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
    }

    .px-nav-menu.px-open {
        left: 20px;
    }

    .px-nav-menu a {
        font-size: 18px;
    }

    .px-header-content {
        position: relative;
    }

    .px-btn-contact-header {
        margin-left: auto;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .px-container {
        padding: 0 24px;
    }

    .px-section-title {
        font-size: 32px;
    }

    .px-flex-row,
    .px-features-grid,
    .px-services-grid,
    .px-audience-grid,
    .px-stats-row {
        flex-direction: column;
        gap: 25px;
    }

    .px-stats-divider {
        display: none;
    }

    .px-about-wrapper {
        flex-direction: column;
    }

    .px-footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}


.px-features-grid,
.px-services-grid,
.px-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.px-services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.px-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.px-stat-item {
    text-align: center;
    flex: 1;
}

.px-stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.px-stat-label {
    font-size: 16px;
    color: #A6A6A6;
}

.px-service-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f25f30;
    font-weight: 500;
    font-size: 14px;
}

.px-about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.px-about-img {
    flex: 1;
}

.px-about-img img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.px-about-content {
    flex: 1;
}

.px-cta {
    text-align: center;
    background: #111 url('../img/img_cta.webp') center no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px 0;
}

.px-footer {
    background: #080808;
    padding: 60px 0 30px;
    border-top: 1px solid #1e1e1e;
}

.px-footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.px-footer-col {
    min-width: 160px;
}

.px-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.px-footer-logo img {
    height: 42px;
}

.px-footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.px-footer-text {
    max-width: 260px;
    font-size: 14px;
}

.px-footer-links a,
.px-footer-contacts p {
    display: block;
    margin-bottom: 12px;
    color: #A6A6A6;
    font-size: 14px;
}

.px-footer-contacts {
    max-width: 280px;
}

.px-footer-links a:hover {
    color: #f25f30;
}

.px-copyright {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #1c1c1c;
    text-align: center;
    font-size: 13px;
}

img {
    max-width: 100%;
    display: block;
}

.px-banner-center {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 0 60px;
}

.px-banner-image-full {
    margin-top: 10px;
    width: 100%;
}

.px-banner-image-full img {
    width: 100%;
    border-radius: 20px;
}

.px-flex-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.px-contact-page {
    padding: 80px 0 100px;
}

.px-contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.px-contact-left {
    flex: 1;
    min-width: 280px;
}

.px-contact-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.px-contact-desc {
    font-size: 18px;
    color: #A6A6A6;
    margin-bottom: 40px;
    line-height: 1.5;
}

.px-contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.px-contact-item {
    background: #111;
    border-radius: 10px;
    padding: 24px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.px-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.px-contact-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.px-contact-item a,
.px-contact-item p {
    color: #A6A6A6;
    font-size: 16px;
    text-decoration: none;
    margin: 0;
}

.px-contact-item a:hover {
    color: #f25f30;
}

.px-contact-right {
    flex: 1;
    min-width: 320px;
    background: #111;
    border-radius: 20px;
    padding: 40px;
}

.px-form-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.px-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.px-form-group {
    flex: 1;
}

.px-form-group.full-width {
    width: 100%;
    margin-bottom: 20px;
}

.px-form-input,
.px-form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.px-form-input:focus,
.px-form-textarea:focus {
    border-color: #f25f30;
}

.px-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.px-submit-btn {
    background: #f25f30;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.px-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


.px-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.px-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.px-popup {
    background: #111;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s;
    border: 1px solid #2a2a2a;
}

.px-popup-overlay.active .px-popup {
    transform: scale(1);
}

.px-popup-icon {
    width: 70px;
    height: 70px;
    background: #f25f30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

.px-popup h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.px-popup p {
    color: #A6A6A6;
    font-size: 16px;
    margin-bottom: 28px;
}

.px-popup-close {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.px-popup-close:hover {
    border-color: #f25f30;
    color: #f25f30;
}

@media (max-width: 768px) {
    .px-contact-page {
        padding: 50px 0 60px;
    }

    .px-contact-title {
        font-size: 36px;
    }

    .px-contact-right {
        padding: 28px;
    }

    .px-form-row {
        flex-direction: column;
        gap: 15px;
    }
}


.px-legal-page {
    padding: 80px 0 100px;
}

.px-legal-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.px-legal-header {
    margin-bottom: 50px;
    text-align: center;
}

.px-legal-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.px-legal-date {
    color: #f25f30;
    font-size: 16px;
    font-weight: 500;
}

.px-legal-content {
    background: #111;
    border-radius: 20px;
    padding: 50px 60px;
}

.px-legal-section {
    margin-bottom: 40px;
}

.px-legal-section:last-child {
    margin-bottom: 0;
}

.px-legal-section h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #2a2a2a;
}

.px-legal-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
}

.px-legal-section p {
    color: #A6A6A6;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.px-legal-section ul,
.px-legal-section ol {
    color: #A6A6A6;
    font-size: 16px;
    line-height: 1.7;
    margin: 16px 0 16px 24px;
}

.px-legal-section li {
    margin-bottom: 10px;
}

.px-legal-section a {
    color: #f25f30;
    text-decoration: none;
}

.px-legal-section a:hover {
    text-decoration: underline;
}

.px-legal-contacts-block {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.px-legal-contacts-block h3 {
    color: #fff;
    margin-top: 0;
}

.px-legal-contacts-block p {
    margin-bottom: 8px;
}

.px-legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f25f30;
    text-decoration: none;
    margin-top: 40px;
    font-weight: 500;
}

.px-legal-back-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .px-legal-title {
        font-size: 32px;
    }

    .px-legal-content {
        padding: 30px 24px;
    }

    .px-legal-section h2 {
        font-size: 24px;
    }
}



.px-about-us {
    padding: 80px 0 100px;
}

.px-about-header {
    text-align: center;
    margin-bottom: 50px;
}

.px-about-subtitle {
    color: #f25f30;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.px-about-title {
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.px-about-image-full {
    width: 100%;
    margin: 50px 0 60px;
}

.px-about-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.px-about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.px-about-text-block {
    margin-bottom: 48px;
}

.px-about-text-block h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.px-about-text-block p {
    color: #A6A6A6;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.px-about-text-block p:last-child {
    margin-bottom: 0;
}

.px-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.px-about-grid-item {
    background: #111;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.px-about-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
}

.px-about-grid-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.px-about-grid-item h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.px-about-grid-item p {
    color: #A6A6A6;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.px-about-quote {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-left: 1px solid #f25f30;
    border-radius: 16px;
    padding: 40px 48px;
    margin: 50px 0;
}

.px-about-quote p {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 0 20px;
    font-style: normal;
}

.px-about-quote-author {
    color: #f25f30;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.px-about-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    flex-wrap: wrap;
}

.px-about-stat {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.px-about-stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.px-about-stat-label {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .px-about-title {
        font-size: 42px;
    }

    .px-about-grid {
        gap: 20px;
    }

    .px-about-grid-item {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .px-about-us {
        padding: 50px 0 60px;
    }

    .px-about-title {
        font-size: 32px;
    }

    .px-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .px-about-text-block h2 {
        font-size: 26px;
    }

    .px-about-text-block p {
        font-size: 16px;
    }

    .px-about-quote {
        padding: 28px 24px;
    }

    .px-about-quote p {
        font-size: 20px;
    }

    .px-about-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .px-about-stat {
        width: 100%;
    }
}



.px-feature-page {
    padding: 80px 0 100px;
}

.px-feature-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.px-feature-title {
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.px-feature-subtitle {
    font-size: 18px;
    color: #A6A6A6;
    line-height: 1.6;
}

.px-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.px-feature-card {
    background: #111;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.px-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.5);
}

.px-feature-icon {
    width: 60px;
    height: 60px;
    background: #151515;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.px-feature-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.px-feature-card-title {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.px-feature-card-text {
    font-size: 16px;
    color: #A6A6A6;
    line-height: 1.6;
    margin-bottom: 24px;
}

.px-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.px-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #B0B0B0;
    line-height: 1.5;
}

.px-feature-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #f25f30;
    font-size: 14px;
}

.px-feature-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .px-feature-grid {
        gap: 30px;
    }

    .px-feature-card {
        padding: 30px;
    }

    .px-feature-card-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .px-feature-page {
        padding: 50px 0 60px;
    }

    .px-feature-title {
        font-size: 36px;
    }

    .px-feature-subtitle {
        font-size: 16px;
    }

    .px-feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .px-feature-card {
        padding: 24px;
    }

    .px-feature-card-title {
        font-size: 22px;
    }

    .px-feature-icon {
        width: 50px;
        height: 50px;
    }

    .px-feature-icon img {
        width: 28px;
        height: 28px;
    }

    .px-features-grid,
    .px-services-grid,
    .px-audience-grid {
        flex-direction: column;
        display: flex;
    }

    .px-banner-center h1 {
        font-size: 42px !important;
    }

    .px-cta h2 {
        font-size: 32px !important;
    }

    .px-cta {
        padding: 50px 30px;
    }

    .px-btn-contact-header {
        margin: 0 !important;
    }
}

@media(max-width: 480px) {
    .px-banner-center h1 {
        font-size: 38px !important;
    }

    .px-banner-center {
        padding-bottom: 0;
    }

    .px-logo-area img {
        height: 38px !important;
    }

    .px-stat-number {
        font-size: 40px;
    }

}