* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background: linear-gradient(100deg, rgba(74, 36, 36, 1) 10%, rgba(32, 32, 32, 1) 36%);
    color: #999;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

.aipContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.aipBanner-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left {
    max-width: 600px;
    width: 100%;
}

.aipBanner-img {
    max-width: 500px;
    width: 100%;
}

.aipHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.aipLogo a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.aipLogo span,
.aipFooterLogo span {
    color: #f43334;
}

.aipNav ul {
    display: flex;
    list-style: none;
}

.aipNav li {
    margin: 0 15px;
}

.aipNav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.aipFooterLogo {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}


.aipNav a:hover {
    color: #f43334;
}

.aipContactBtn {
    background: #f43334;
    color: #fff;
    border: none;
    text-decoration: none;
    text-align: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.aipContactBtn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 51, 52, 0.3);
}

.aipContactBtn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.aipContactBtn:hover i {
    transform: translateX(5px);
}


.aipBanner {
    padding: 60px 15px;
}

.aipBannerSubtitle {
    color: #f43334;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.btn-nav {
    display: none;
    border: none;
    background: transparent;
    outline: none;
}

.aipBannerTitle {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.aipBannerText {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 40px auto;
    font-size: 18px;
}

.aipTags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.aipTag {
    background: rgba(244, 51, 52, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(244, 51, 52, 0.3);
}


.aipSection {
    padding: 60px 15px;
}

.aipSectionTitle {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.aipSectionTitle:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f43334;
}


.aipWhyUsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aipWhyUsItem {
    background: #191919;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.aipWhyUsItem:hover {
    transform: translateY(-10px);
}

.aipWhyUsIcon {
    font-size: 40px;
    color: #f43334;
    margin-bottom: 20px;
    line-height: 0;
    background: #202020;
    padding: 15px;
    border-radius: 5px;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.aipWhyUsIcon img {}

.aipWhyUsItemTitle {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}


.aipAbout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.aipAboutContent {
    flex: 1;
}

.aipAboutTitle {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.aipAboutText {
    margin-bottom: 25px;
}

.aipAboutList {
    list-style: none;
}

.aipAboutList li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.aipAboutList li:before {
    content: '✓';
    color: #f43334;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.aipAboutImage {
    flex: 1;
}

.aipAboutImage img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
}


.aipServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aipServiceItem {
    background: #191919;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.aipServiceItem:hover {
    transform: translateY(-10px);
}

.aipServiceIcon {
    font-size: 40px;
    color: #f43334;
    margin-bottom: 20px;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    background: #202020;
    width: 80px;
    height: 80px;
}

.aipServiceTitle {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.aipServiceLink {
    color: #f43334;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.aipServiceLink i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.aipServiceLink:hover i {
    transform: translateX(5px);
}


.aipProcess {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
}

.aipProcess:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
    z-index: 1;
}

.aipProcessStep {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.aipProcessNumber {
    width: 80px;
    height: 80px;
    background: #191919;
    border: 2px solid #f43334;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.aipProcessTitle {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}


.aipPricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aipPricingPlan .aipContactBtn {
    display: inline-block;
}

.aipCta .aipContactBtn {
    display: inline-block;
}

.aipPricingPlan {
    background: #191919;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.aipPricingPlan:hover {
    transform: translateY(-10px);
}

.aipPricingPlan:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f43334;
}

.aipPlanName {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.aipPlanPrice {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.aipPlanPrice span {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.aipPlanFeatures {
    list-style: none;
    margin-bottom: 30px;
}

.aipPlanFeatures li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.aipPlanFeatures li:last-child {
    border-bottom: none;
}


.aipFaq {
    max-width: 800px;
    margin: 0 auto;
}

.aipFaqItem {
    background: #191919;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.aipFaqQuestion {
    color: #fff;
    font-size: 18px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aipFaqAnswer {
    padding: 0 20px 20px;
    display: none;
}


.aipCta {
    text-align: center;
    padding: 80px 15px;
    background: #191919;
    border-radius: 15px;
    margin: 80px 0;
}

.aipCtaSubtitle {
    color: #f43334;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.aipCtaTitle {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}


.aipFooter {
    background: #191919;
    padding: 80px 0 30px;
}

.aipFooterGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.aipFooterLogo {
    margin-bottom: 20px;
}

.aipFooterLogo img {
    height: 40px;
}

.aipFooterText {
    margin-bottom: 20px;
}

.aipFooterTitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.aipFooterLinks {
    list-style: none;
}

.aipFooterLinks li {
    margin-bottom: 10px;
}

.aipFooterLinks a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.aipFooterLinks a:hover {
    color: #f43334;
}

.aipFooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aipAnimated {
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.aipDelay1 {
    animation-delay: 0.2s;
}

.aipDelay2 {
    animation-delay: 0.4s;
}

.aipDelay3 {
    animation-delay: 0.6s;
}


.aipBreadcrumbs {
    padding: 20px 15px;
}

.aipBreadcrumbsNav {
    color: #999;
}

.aipBreadcrumbsNav a {
    color: #f43334;
    text-decoration: none;
}

.aipBreadcrumbsNav a:hover {
    text-decoration: underline;
}

.aipContactInfo {
    margin: 30px 0;
}

.aipContactItem {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
}

.aipContactItem i {
    color: #f43334;
    margin-right: 15px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.aipContactForm {
    background: #191919;
    padding: 30px;
    border-radius: 10px;
}

.aipContactForm h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.aipFormGroup {
    margin-bottom: 20px;
}

.aipFormGroup input,
.aipFormGroup textarea {
    width: 100%;
    padding: 12px 15px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: 'Jost', sans-serif;
}

.aipFormGroup input:focus,
.aipFormGroup textarea:focus {
    outline: none;
    border-color: #f43334;
}

.aipSuccessMessage {
    text-align: center;
    padding: 20px;
}

.aipSuccessMessage i {
    font-size: 50px;
    color: #f43334;
    margin-bottom: 15px;
}

.aipSuccessMessage h3 {
    color: #fff;
    margin-bottom: 10px;
}


.aipText {
    padding: 60px 0;
}

.aipLastUpdated {
    color: #999;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
}

.aipPolicyContent {
    max-width: 800px;
    margin: 0 auto;
}

.aipContentTitle {
    color: #fff;
    font-size: 24px;
    margin: 30px 0 15px;
}

.aipContentSubtitle {
    color: #f43334;
    font-size: 20px;
    margin: 20px 0 10px;
}

.aipPolicyContent p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.aipContactList {
    list-style: none;
    margin: 20px 0;
}

.aipContactList li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.aipContactList li:before {
    content: "•";
    color: #f43334;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.aipContactList a {
    color: #f43334;
    text-decoration: none;
}

.aipContactList a:hover {
    text-decoration: underline;
}


.aipPolicyList {
    list-style: none;
    margin: 15px 0;
}

.aipPolicyList li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.aipPolicyList li:before {
    content: "•";
    color: #f43334;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}



.aipCookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: #191919;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-family: 'Jost', sans-serif;
    color: #999;
    display: none;
    animation: aipSlideIn 0.5s ease-out;
}

@keyframes aipSlideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.aipCookieTitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.aipCookieText {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.aipCookieText::-webkit-scrollbar {
    width: 5px;
}

.aipCookieText::-webkit-scrollbar-track {
    background: #252525;
    border-radius: 10px;
}

.aipCookieText::-webkit-scrollbar-thumb {
    background: #f43334;
    border-radius: 10px;
}

.aipCookieButtons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.aipCookieBtn {
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.aipCookieAccept {
    background: #f43334;
    color: #fff;
    flex: 1;
}

.aipCookieAccept:hover {
    background: #ff5252;
}

.aipCookieSettings {
    background: transparent;
    color: #999;
    border: 1px solid #333;
}

.aipCookieSettings:hover {
    background: #252525;
}


@media (max-width: 768px) {
    .aipCookiePopup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
}


























@media (max-width: 992px) {

    .aipWhyUsGrid,
    .aipServicesGrid,
    .aipPricingGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aipAbout {
        flex-direction: column;
    }

    .aipFooterGrid {
        grid-template-columns: 1fr 1fr;
    }

    .aipBanner-block {
        flex-direction: column;
    }

    .left {
        max-width: 100%;
    }

    .aipBanner-img {
        display: none;
    }
    .aipDelay2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .aipNav {
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        top: 70px;
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
        box-sizing: border-box;
        z-index: 2;
        border-radius: 8px;
    }

    .aipNav ul {
        flex-direction: column;
    }

    .aipNav ul li {
        margin: 10px 0;
        font-size: 17px;
    }

    .btn-nav {
        display: block;
        margin-left: 14px;
    }

    .btnMob {
        padding: 8px 17px;
        font-size: 15px;
    }

    .btn-nav img {
        width: 30px;
    }

    .btnMob {
        margin-left: auto;
    }

    .aipWhyUsGrid,
    .aipServicesGrid,
    .aipPricingGrid {
        grid-template-columns: 1fr;
    }

    .aipProcess {
        flex-direction: column;
        gap: 40px;
    }

    .aipProcess:before {
        display: none;
    }

    .aipFooterGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aipBannerTitle {
        font-size: 36px;
    }
}