:root {
    --bg-color: #11121c;
    --accent-color: #452ff4;
    --text-color: #272320;
    --heading-color: #fff;
    --border-color: #343434;
    --light-border: rgba(151, 150, 233, .38);
    --white: #fff;
    --container-width: 1320px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
}

.asContainer {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


.asHeader {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.asHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asLogo {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.asLogo img {
    margin-right: 7px;
    width: 36px;
}

.asNav {
    display: flex;
    align-items: center;
}

.asNavList {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.asNavItem {
    margin-left: 30px;
}

.asNavLink {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.asNavLink:hover {
    color: var(--accent-color);
}

.asButton {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.asButtonPrimary {
    background-color: var(--accent-color);
    color: var(--white);
}

.asButtonSecondary {
    background-color: transparent;
    border: 1px solid var(--light-border);
    color: var(--heading-color);
}

.asButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(69, 47, 244, 0.2);
}

.asButtonIcon {
    margin-left: 8px;
    transition: transform 0.3s;
}

.asButton:hover .asButtonIcon {
    transform: translateX(4px);
}

.asMobileToggle {
    margin-left: 15px;
    display: none;
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 24px;
    cursor: pointer;
}


.asBanner {
    padding: 180px 0 100px;
    background: url('../img/drak-bg.jpg') no-repeat center top;
    position: relative;
    overflow: hidden;
}

.asBannerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asBannerContent {
    flex: 1;
    max-width: 600px;
    color: var(--heading-color);
}

.asBannerTitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.asBannerText {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.asBannerButtons {
    display: flex;
    gap: 20px;
}

.asBannerVisual {
    flex: 1;
    text-align: right;
    position: relative;
}

.asBannerVisual img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


.asAbout {
    padding: 100px 0;
}

.asSection {
    margin-bottom: 80px;
}

.asSectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.asSubtitle {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.asTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.asAboutInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.asAboutContent {
    flex: 1;
}

.asAboutText {
    margin-bottom: 30px;
    color: #fff;
}

.asAboutList {
    list-style: none;
    margin-bottom: 40px;
    color: #fff;
}

.asAboutItem {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.asAboutIcon {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 20px;
}

.asAboutVisual {
    flex: 1;
    text-align: center;
}

.asAboutVisual img {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
}


.asFeatures {
    padding: 100px 0;
    background: url('../img/drak-bg01.jpg') left bottom no-repeat;
    background-size: cover;
}

.asFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.asFeatureCard {
    background: rgba(17, 18, 28, 0.5);
    border: 2px solid #343434;
    border-radius: 10px;
    padding: 40px 20px;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.asFeatureCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.asFeatureIcon {
    font-size: 40px;
    color: var(--accent-color);
    margin-right: 25px;
    flex-shrink: 0;
}

.asFeatureContent {
    flex: 1;
}

.asFeatureTitle {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.asFeatureText {
    margin-bottom: 20px;
    color: #fff;
}

.asFeatureLink {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.asFeatureLinkIcon {
    margin-left: 8px;
    transition: transform 0.3s;
}

.asFeatureLink:hover .asFeatureLinkIcon {
    transform: translateX(4px);
}


.asTestimonials {
    padding: 100px 0;
}

.asTestimonialsSlider {
    position: relative;
}

.asTestimonialSlide {
    background: transparent;
    border: 2px solid #343434;
    border-radius: 10px;
    padding: 40px;
    margin: 0 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.asTestimonialText {
    font-style: italic;
    margin-bottom: 30px;
    color: #ddd;
}

.asTestimonialAuthor {
    display: flex;
    align-items: center;
}

.asTestimonialPhoto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}

.asTestimonialPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asTestimonialInfo h4 {
    font-weight: 600;
    color: #ddd;
    margin-bottom: 5px;
}

.asTestimonialInfo p {
    color: #ddd;
    opacity: 0.7;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--heading-color);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--accent-color);
}


.asFaq {
    padding: 100px 0;
    background: url('../img/bg-nuew.png') center top no-repeat;
}

.asFaqContainer {
    max-width: 800px;
    margin: 0 auto;
}

.asFaqItem {
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.asFaqQuestion {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--heading-color);
    font-weight: 600;
}

.asFaqIcon {
    transition: transform 0.3s;
}

.asFaqItem.active .asFaqIcon {
    transform: rotate(180deg);
}

.asFaqAnswer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #fff;
}

.asFaqItem.active .asFaqAnswer {
    padding: 0 30px 20px;
    max-height: 200px;
}

.asCta {
    margin: 0 0 100px 0;
}

.asCtaBlock {
    padding: 40px 14px;
    box-sizing: border-box;
    background: url('../img/bg-get.jpg') no-repeat center center;
    text-align: center;
    color: var(--heading-color);
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.asCtaTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.asCtaText {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.8;
}


.asFooter {
    padding: 80px 0 30px;
    background-color: #0a0b14;
}

.asFooterMain {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.asFooterAbout {
    flex: 1;
    max-width: 300px;
}

.asFooterLogo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    margin-bottom: 20px;

}

.asFooterLogo img {
    width: 36px;
    margin-right: 7px;
}

.asFooterText {
    color: #fff;
    opacity: 0.7;
}

.asFooterNav {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.asFooterNavColumn h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.asFooterNavList {
    list-style: none;
}

.asFooterNavItem {
    margin-bottom: 10px;
}

.asFooterNavLink {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.asFooterNavLink:hover {
    opacity: 1;
}

.asFooterContact {
    flex: 1;
    max-width: 250px;
}

.asFooterContact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.asFooterContactInfo {
    color: #fff;
    opacity: 0.7;
    margin-bottom: 10px;
}

.asFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.asFooterLinks {
    display: flex;
}

.asFooterLink {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    margin-right: 20px;
    transition: opacity 0.3s;
}

.asFooterLink:hover {
    opacity: 1;
}

.asCopyright {
    color: #fff;
    opacity: 0.7;
}


.asCookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(17, 18, 28, 0.9);
    border: 2px solid #343434;
    border-radius: 10px;
    padding: 25px;
    max-width: 460px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateY(150%);
    transition: transform 0.5s;
}

.asCookiePopup.active {
    transform: translateY(0);
}

.asCookieTitle {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.asCookieText {
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.8;
}

.asCookieButtons {
    display: flex;
    gap: 10px;
}



.asAboutPage {
    padding-top: 100px;
}

.asAboutHero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #11121c 0%, #1a1b2c 100%);
}

.asAboutHeroInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.asAboutHeroContent {
    flex: 1;
    color: var(--heading-color);
}

.asAboutHeroTitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.asAboutHeroText {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.asAboutHeroStats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.asAboutStat h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.asAboutStat p {
    font-size: 14px;
    opacity: 0.7;
}

.asAboutHeroVisual {
    flex: 1;
    position: relative;
}

.asAboutHeroImage {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.asAboutHeroImage img {
    width: 100%;
    height: auto;
    display: block;
}

.asAboutHeroCard {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.asAboutHeroCard p {
    font-weight: 600;
    color: #111;
    margin: 0;
    font-size: 14px;
}

.asAboutCard1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.asAboutCard2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

.asMission {
    padding: 100px 0;
}

.asMissionInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.asMissionContent {
    flex: 1;
}

.asMissionTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.asMissionText {
    font-size: 16px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.6;
}

.asMissionFeatures {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.asMissionFeature {
    display: flex;
    gap: 20px;
}

.asMissionIcon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(69, 47, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asMissionFeatureContent h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.asMissionFeatureContent p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.5;
}

.asMissionVisual {
    flex: 1;
}

.asMissionImage {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.asMissionImage img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {

    .asAboutHeroInner,
    .asMissionInner {
        flex-direction: column;
        text-align: center;
    }

    .asAboutHeroContent {
        margin-bottom: 50px;
    }

    .asAboutHeroStats {
        justify-content: center;
    }

    .asAboutHeroCard {
        position: relative;
        margin: 10px;
        display: inline-flex;
    }

    .asAboutCard1,
    .asAboutCard2 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

.asPossibilitiesPage {
    padding-top: 100px;
}

.asPossibilitiesHero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #11121c 0%, #1a1b2c 100%);
    text-align: center;
}

.asPossibilitiesHeroTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.asPossibilitiesHeroText {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    color: #fff;
    line-height: 1.6;
}

.asFeaturesDetail {
    padding: 100px 0;
}

.asFeaturesDetailInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.asFeaturesDetailContent {
    flex: 1;
}

.asFeaturesDetailTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.asFeaturesDetailText {
    font-size: 16px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.6;
}

.asFeaturesList {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.asFeatureDetail {
    display: flex;
    gap: 20px;
}

.asFeatureDetailIcon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(69, 47, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asFeatureDetailContent h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.asFeatureDetailContent p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.5;
}

.asFeaturesDetailVisual {
    flex: 1;
}

.asFeaturesDetailImage {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.asFeaturesDetailImage img {
    width: 100%;
    height: auto;
    display: block;
}

.asIntegration {
    padding: 100px 0;
    background: rgba(69, 47, 244, 0.03);
}

.asIntegrationInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.asIntegrationVisual {
    flex: 1;
}

.asIntegrationImage {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.asIntegrationImage img {
    width: 100%;
    height: auto;
    display: block;
}

.asIntegrationContent {
    flex: 1;
}

.asIntegrationTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.asIntegrationText {
    font-size: 16px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.6;
}

.asIntegrationList {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.asIntegrationItem h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.asIntegrationItem p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 992px) {

    .asFeaturesDetailInner,
    .asIntegrationInner {
        flex-direction: column;
    }

    .asFeaturesDetailContent,
    .asIntegrationContent {
        margin-bottom: 50px;
    }

    .asPossibilitiesHeroTitle {
        font-size: 36px;
    }
}


.asContactPage {
    padding-top: 100px;
}

.asContactHero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #11121c 0%, #1a1b2c 100%);
    text-align: center;
}

.asContactHeroTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.asContactHeroText {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--heading-color);
}

.asContactSection {
    padding: 100px 0;
}

.asContactInner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.asContactInfo {
    flex: 1;
    max-width: 400px;
}

.asContactInfoTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.asContactInfoText {
    font-size: 16px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.8;
}

.asContactMethods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.asContactMethod {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.asContactMethod:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(69, 47, 244, 0.1);
}

.asContactMethodIcon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(69, 47, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.asContactMethodContent h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.asContactMethodContent p {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.asContactMethodContent span {
    font-size: 14px;
    color: #fff;
    opacity: 0.7;
}


.asIconPhone::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, transparent 40%, var(--accent-color) 40%, var(--accent-color) 60%, transparent 60%),
        linear-gradient(135deg, transparent 40%, var(--accent-color) 40%, var(--accent-color) 60%, transparent 60%);
    border-radius: 50%;
    position: relative;
}

.asIconPhone::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
}

.asIconEmail::before {
    content: "";
    display: block;
    width: 24px;
    height: 18px;
    border: 2px solid var(--accent-color);
    border-radius: 3px;
    position: relative;
}

.asIconEmail::after {
    content: "";
    position: absolute;
    top: 8px;
    left: -2px;
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    transform: rotate(-45deg);
    transform-origin: left center;
}

.asIconLocation::before {
    content: "";
    display: block;
    width: 18px;
    height: 24px;
    border: 2px solid var(--accent-color);
    border-radius: 9px 9px 3px 3px;
    position: relative;
}

.asIconLocation::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.asIconSuccess::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid #10b981;
    border-radius: 50%;
    position: relative;
}

.asIconSuccess::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 7px;
    width: 12px;
    height: 20px;
    border: 3px solid #10b981;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}


.asContactFormContainer {
    flex: 1;
}

.asContactFormWrapper {
    background: transparent;
    border-radius: 15px;
    border: 2px solid #343434;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.asContactFormTitle {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.asContactForm {
    display: block;
}

.asFormRow {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.asFormGroup {
    flex: 1;
    margin-bottom: 20px;
}

.asFormLabel {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.asFormInput,
.asFormTextarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #343434;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background: transparent;
    color: #fff;
}

.asFormInput:focus,
.asFormTextarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(69, 47, 244, 0.1);
}

.asFormTextarea {
    resize: vertical;
    min-height: 120px;
}

.asFormSubmit {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}


.asFormSuccess {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.asFormSuccess.active {
    display: block;
}

.asSuccessIcon {
    margin-bottom: 20px;
}

.asFormSuccess h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.asFormSuccess p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
}


@media (max-width: 992px) {
    .asContactInner {
        flex-direction: column;
    }

    .asContactInfo {
        max-width: 100%;
    }

    .asContactHeroTitle {
        font-size: 36px;
    }

    .asFormRow {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .asContactFormWrapper {
        padding: 25px;
    }

    .asContactMethod {
        padding: 20px;
    }
}




.asTextPage {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--bg-color);
}

.asTextPageHeader {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.asTextPageTitle {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.asTextPageDate {
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
}

.asTextContent {
    max-width: 800px;
    margin: 0 auto;
}

.asTextSection {
    margin-bottom: 50px;
}

.asTextSection h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.asTextSection h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 25px 0 15px;
}

.asTextSection p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.asTextSection ul {
    margin: 20px 0;
    padding-left: 20px;
}

.asTextSection li {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.9;
}

.asTextSection strong {
    color: var(--heading-color);
    font-weight: 600;
}


@media (max-width: 768px) {
    .asTextPage {
        padding: 120px 0 60px;
    }

    .asTextPageTitle {
        font-size: 32px;
    }

    .asTextSection h2 {
        font-size: 24px;
    }

    .asTextSection h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .asTextPage {
        padding: 100px 0 40px;
    }

    .asTextPageTitle {
        font-size: 28px;
    }

    .asTextContent {
        padding: 0 10px;
    }
}








































@media (max-width: 1200px) {
    .asContainer {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {

    .asBannerInner,
    .asAboutInner {
        flex-direction: column;
        text-align: center;
    }

    .asContactFormContainer {
        width: 100%;
    }

    .asContactInfo {
        width: 100%;
    }

    .asBannerContent {
        margin-bottom: 50px;
    }

    .asAboutContent {
        margin-bottom: 50px;
    }

    .asFeaturesGrid {
        grid-template-columns: 1fr;
    }

    .asFooterMain {
        flex-wrap: wrap;
        gap: 20px;
    }

    .asFooterAbout,
    .asFooterContact {
        margin-bottom: 40px;
    }

    .asFooterNav {
        justify-content: flex-start;
        gap: 40px;
        margin-bottom: 40px;
    }

    .asBannerButtons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .asMobileToggle {
        display: block;
    }

    .asNavList {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        display: none;
        transition: transform 0.3s, opacity 0.3s;
        z-index: 999;
    }

    .asNavList.active {
        transform: translateY(0);
        display: flex;
    }

    .asNavItem {
        margin: 15px 0;
    }

    .asBannerTitle {
        font-size: 36px;
    }

    .asBannerButtons {
        flex-direction: column;
        align-items: center;
    }

    .asFooterBottom {
        flex-direction: column;
        text-align: center;
    }

    .asFooterLinks {
        margin-bottom: 20px;
    }

    .asCookiePopup {
        left: 15px;
        right: 15px;
        max-width: none;
    }

    .asFooterMain {
        flex-direction: column;
        gap: 20px;
    }

    .asFooterAbout,
    .asFooterContact {
        max-width: 100%;
    }

    .asFooterLinks {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .asBannerTitle {
        font-size: 28px;
    }

    .asTitle {
        font-size: 28px;
    }

    .asFeatureCard {
        padding: 25px;
    }

    .asTestimonialSlide {
        padding: 25px;
    }

    .asFaq {
        padding: 40px 0;
    }

    .asTestimonials {
        padding-top: 40px;
    }

    .asFeatureIcon {
        margin-right: 10px;
    }

    .asFeatureCard {
        padding: 20px;
    }

    .asFeatures {
        padding-top: 40px;
    }

    .asAboutList {
        text-align: left;
    }

    .asAbout {
        padding-top: 40px;
    }

    .asHeader .asButton {
        font-size: 14px;
    }

    .asFooterBottom {
        align-items: flex-start;
    }

    .asAboutHeroStats {
        gap: 20px;
    }

    .asAboutHero {
        padding-top: 50px;
    }

    .asAboutHeroTitle {
        font-size: 42px;
    }
}