* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.5;
    scroll-behavior: smooth;
}


.faWrapper {
    max-width: 1140px;
    width: 98%;
    margin: 30px auto;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid #ffffff1f;
    border-radius: 18px;
    backdrop-filter: blur(2px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.faContainer {
    padding: 0 32px;
}


.faHeader {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: transparent;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faLogoArea {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.faLogoImg {
    height: 42px;
    width: auto;
    margin-top: -2px;
}

.faBrand {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    color: transparent;
}

.faNav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.faNavMenu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.faNavMenu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
}

.faNavMenu li a:hover {
    color: #fff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.faBtnLink {
    display: inline-block;
    background: #000000fc;
    background: radial-gradient(circle, rgba(19, 19, 19, 0.81) 0%, rgba(61, 61, 61, 0.73) 100%);


    border: 1px solid #ffffff3d;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(2px);
}

.faBtnLink:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}


.faMenuToggle {
    display: none;
    background: none;
    border: 1px solid #ffffff3d;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    font-size: 1.4rem;
}


.faBanner {
    position: relative;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faBgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.faBannerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.faBannerContent {
    max-width: 800px;
    padding: 20px;
    padding-top: 70px;
    z-index: 2;
}

.faSubtitle {
    display: inline-block;
    border: 1px solid #ffffff1f;
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.8rem;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    margin-bottom: 24px;
    color: #ddd;
}

.faTitle {
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.faText {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.faButtonGroup {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.faStatsRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    margin: 50px 0 30px;
    padding: 25px 20px;
    border-radius: 20px;
    flex-wrap: wrap;
}

.faStatItem {
    flex: 1;
    text-align: center;
}

.faStatValue {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.faStatLabel {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.faDividerVert {
    width: 1px;
    height: 62px;
    background: linear-gradient(#ffffff00, #fff 50%, #ffffff00);
}


.faAbout {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 70px 0;
    flex-wrap: wrap;
}

.faAboutLeft {
    flex: 1;
}

.faAboutRight {
    flex: 1;
}

.faAboutRight img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid #ffffff1f;
    background: linear-gradient(#fff, #99999980);
    padding: 6px;
}

.faSectionSub {
    border: 1px solid #ffffff1f;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0px !important;
}

.faHeading {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
}

.faDesc {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.6;
}


.faToolsSection {
    margin: 100px 0 60px;
}

.faToolsGrid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.faToolsLeft {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faToolsRight {
    flex: 1.2;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(153, 153, 153, 0.2));
    border: 1px solid #ffffff1f;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faToolCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid #ffffff1f;
    border-radius: 16px;
    padding: 24px 20px;
    transition: 0.2s;
}

.faToolCard:hover,
.faToolsRight:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(153, 153, 153, 0.25));
    border-color: #ffffff3d;
}

.faToolIcon {
    width: 48px;
    margin-bottom: 20px;
}

.faToolTitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.1;
}

.faToolText {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.faLinkRight {
    text-align: right;
    margin-top: 24px;
}

.faLinkRight a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}


.faRecommendations {
    margin: 70px 0;
}

.faRecGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faRecCard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #ffffff1f;
    border-radius: 20px;
    padding: 28px 20px;
    transition: 0.2s;
}

.faRecCard h4 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 12px;
}


.faCta {
    background: url("../imgs/cta_bg.svg") center bottom / cover no-repeat;
    border-radius: 28px;
    padding: 70px 20px;
    text-align: center;
    margin: 50px 0 40px;
    border: 1px solid #ffffff1f;
}


.faFooter {
    margin-top: 60px;
    border-top: 1px solid #ffffff1f;
    padding: 48px 0 32px;
}

.faFooterTop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.faFooterLogoCol {
    max-width: 280px;
}

.faFooterLogo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faFooterLogo img {
    height: 40px;
}

.faFooterLinks {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.faLinksCol h4,
.faContactCol h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.faLinksCol ul {
    list-style: none;
    padding-left: 0;
}

.faLinksCol li {
    margin-bottom: 12px;
}

.faLinksCol a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.faLinksCol a:hover {
    color: white;
}

.faContactCol p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.faFooterBottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid #ffffff1f;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    gap: 20px;
}

.faLegalLinks {
    display: flex;
    gap: 28px;
}

.faLegalLinks a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}


.faContactSection {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin: 100px 0 60px;
}


.faContactInfo {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid #ffffff1f;
}

.faContactSub {
    display: inline-block;
    border: 1px solid #ffffff1f;
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.faContactHeading {
    font-size: 2.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.faContactDetails {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 20px;
}

.faContactItem {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #ffffff1f;
    transition: all 0.2s ease;
}

.faContactItem:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff3d;
}

.faContactIcon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.faContactItemContent {
    flex: 1;
}

.faContactItemLabel {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.faContactItemValue {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
}

.faContactItemValue a {
    color: #fff;
    text-decoration: none;
}

.faContactItemValue a:hover {
    text-decoration: underline;
}


.faContactFormBox {
    flex: 1.5;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid #ffffff1f;
    backdrop-filter: blur(2px);
}

.faFormGroup {
    margin-bottom: 22px;
}

.faFormGroup label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.faFormGroup input,
.faFormGroup textarea,
.faFormGroup select {
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid #ffffff2a;
    border-radius: 14px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.2s;
    outline: none;
}

.faFormGroup input:focus,
.faFormGroup textarea:focus,
.faFormGroup select:focus {
    border-color: #ffffffaa;
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.faFormGroup textarea {
    resize: vertical;
    min-height: 110px;
}

.faSubmitBtn {
    background: #000000fc;
    background: radial-gradient(circle, rgba(19, 19, 19, 0.81) 0%, rgba(61, 61, 61, 0.73) 100%);
    border: 1px solid #ffffff3d;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #fff;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.faSubmitBtn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    background: linear-gradient(350deg, #f5f5f5, #ffffffaa);
    color: #000;
}

.faThankYouMsg {
    margin-top: 22px;
    padding: 14px 18px;
    background: rgba(46, 204, 113, 0.12);
    border-radius: 12px;
    color: #d0ffd0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.faErrorMsg {
    background: rgba(231, 76, 60, 0.12);
    color: #ffb8b8;
}


@media (max-width: 850px) {
    .faContactSection {
        flex-direction: column;
    }

    .faContactHeading {
        font-size: 1.9rem;
    }

    .faContactFormBox {
        padding: 28px 22px;
    }
}

.faAboutPage {
    margin: 100px 0 70px;
}


.faAboutHero {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 70px auto;
}

.faAboutSub {
    display: inline-block;
    border: 1px solid #ffffff1f;
    border-radius: 100px;
    padding: 6px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.faAboutTitle {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faAboutDescription {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 36px;
}

.faAboutDescription p {
    margin-bottom: 20px;
}

.faAboutBtnCenter {
    display: inline-block;
    background: #000000fc;
    background: radial-gradient(circle, rgba(19, 19, 19, 0.81) 0%, rgba(61, 61, 61, 0.73) 100%);
    border: 1px solid #ffffff3d;
    border-radius: 12px;
    padding: 14px 38px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.faAboutBtnCenter:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(350deg, #f5f5f5, #ffffffbb);
    color: #000;
}


.faWhyUs {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    border-radius: 32px;
    padding: 48px 40px;
    margin-top: 20px;
    border: 1px solid #ffffff1f;
}

.faWhyImage {
    flex: 1.2;
}

.faWhyImage img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #ffffff0c, #99999920);
    padding: 6px;
    display: block;
}

.faWhyContent {
    flex: 1;
}

.faWhyHeading {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.faWhyText {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.faWhyList {
    list-style: none;
    padding: 0;
}

.faWhyList li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.faWhyList li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    min-width: 24px;
    min-height: 24px;
    border-radius: 30px;
    font-weight: bold;
    color: #fff;
    font-size: 0.9rem;
    border: 1px solid #ffffff3d;
}


@media (max-width: 900px) {
    .faWhyUs {
        flex-direction: column;
        padding: 32px 24px;
    }

    .faAboutTitle {
        font-size: 2.2rem;
    }

    .faAboutDescription {
        font-size: 0.95rem;
    }
}

@media (max-width: 550px) {
    .faWhyHeading {
        font-size: 1.7rem;
    }

    .faAboutTitle {
        font-size: 1.9rem;
    }
}



.faToolsHeader {
    text-align: center;
    margin-bottom: 56px;
}

.faToolsSub {
    display: inline-block;
    border: 1px solid #ffffff1f;
    border-radius: 100px;
    padding: 6px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.faToolsTitle {
    font-size: 2.8rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faToolsTitle span {
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.faToolsMainGrid {
    display: flex;
    gap: 36px;
    flex-direction: column;
    flex-wrap: wrap;
}


.faToolsCardsGrid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


.faToolCardPremium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid #ffffff1f;
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(2px);
}

.faToolCardPremium:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(153, 153, 153, 0.2));
    border-color: #ffffff4d;
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

.faToolIconLarge {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.faToolCardTitle {
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.3px;
}

.faToolCardDesc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.faToolFeatureList {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.faToolFeatureList li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.faToolFeatureList li::before {
    content: "▹";
    color: #fff;
    font-size: 0.8rem;
    opacity: 0.8;
}


.faToolsHeroRight {
    flex: 1.3;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(153, 153, 153, 0.2));
    border: 1px solid #ffffff1f;
    border-radius: 28px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.25s;
    position: relative;
    overflow: hidden;
}

.faToolsHeroRight::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.faToolsHeroRight:hover {
    border-color: #ffffff5e;
    transform: scale(1.01);
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.12), rgba(153, 153, 153, 0.28));
}

.faHeroIcon {
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
}

.faHeroTitle {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.4px;
}

.faHeroText {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 28px;
    font-size: 1rem;
}

.faHeroDetailList {
    margin: 20px 0 25px;
}

.faHeroDetailItem {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: baseline;
}

.faHeroDetailItem strong {
    color: white;
    font-weight: 600;
    min-width: 105px;
    font-size: 0.85rem;
}

.faHeroDetailItem span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.faToolsLinkWrap {
    text-align: right;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.faToolsLinkWrap a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.2s;
    padding-bottom: 2px;
}

.faToolsLinkWrap a:hover {
    border-bottom-color: #fff;
    letter-spacing: 0.3px;
}


@media (max-width: 1050px) {
    .faToolsCardsGrid {
        gap: 20px;
    }

    .faToolCardPremium {
        padding: 24px 20px;
    }

    .faToolCardTitle {
        font-size: 1.35rem;
    }

    .faHeroTitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    .faToolsMainGrid {
        flex-direction: column;
    }

    .faToolsCardsGrid {
        grid-template-columns: 1fr;
    }

    .faToolsTitle {
        font-size: 2rem;
    }
}

@media (max-width: 550px) {
    .faToolsHeroRight {
        padding: 28px 22px;
    }

    .faHeroDetailItem {
        flex-direction: column;
        gap: 4px;
    }

    .faHeroDetailItem strong {
        min-width: auto;
    }
}


.faLegalWrapper {
    max-width: 1140px;
    width: 92%;
    margin: 100px auto 30px auto;
    background: rgba(10, 10, 10, 0.75);
    border-radius: 28px;
    backdrop-filter: blur(2px);
    overflow: hidden;
}

.faLegalContainer {
    padding: 48px 22px;
}


.faLegalHeader {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid #ffffff1f;
}

.faLegalLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.faLegalLogo img {
    height: 48px;
    width: auto;
}

.faLegalLogo span {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faLegalTitle {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.faLegalUpdate {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    border: 1px solid #ffffff1f;
    display: inline-block;
    padding: 4px 18px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
}


.faLegalContent {
    color: rgba(255, 255, 255, 0.85);
}

.faLegalContent h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 32px 0 16px 0;
    color: #fff;
    letter-spacing: -0.2px;
}

.faLegalContent h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #fff;
}

.faLegalContent p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.faLegalContent ul,
.faLegalContent ol {
    margin: 12px 0 20px 28px;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 0;
}

.faLegalContent li {
    margin-bottom: 8px;
}

.faLegalContent strong {
    color: #fff;
    font-weight: 600;
}

.faContactBlock {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid #ffffff1f;
    border-radius: 20px;
    padding: 28px 32px;
    margin: 40px 0 20px;
}

.faContactBlock h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.faContactBlock p {
    margin-bottom: 10px;
}

.faBackLink {
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: 0.2s;
}

.faBackLink:hover {
    border-bottom-color: #fff;
}

hr {
    border-color: #ffffff1f;
    margin: 24px 0;
}

@media (max-width: 750px) {
    .faLegalContainer {
        padding: 32px 24px;
    }

    .faLegalTitle {
        font-size: 1.8rem;
    }

    .faLegalContent h2 {
        font-size: 1.4rem;
    }
}











































@media (max-width: 950px) {
    .faContainer {
        padding: 0 24px;
    }

    .faHeader {
        padding: 18px 24px;
    }

    .faNavMenu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a0a0ae6;
        backdrop-filter: blur(12px);
        padding: 24px;
        border-bottom: 1px solid #ffffff1f;
    }

    .faNavMenu.active {
        display: flex;
    }

    .faMenuToggle {
        display: block;
    }

    .faStatsRow {
        flex-direction: column;
        gap: 20px;
    }

    .faDividerVert {
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, #fff0, #fff, #fff0);
    }

    .faRecGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faToolsLeft {
        grid-template-columns: 1fr;
    }

    .faToolsGrid {
        flex-direction: column;
    }

    .faTitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .faRecGrid {
        grid-template-columns: 1fr;
    }

    .faAbout {
        flex-direction: column;
    }

    .faFooterTop {
        flex-direction: column;
    }

    .faNav .faBtnLink {
        display: none;
    }

    .faFooterTop {
        gap: 20px;
    }

    .faFooterLinks {
        gap: 20px;
    }

    .faBannerContent {
        padding-top: 100px;
    }

    .faTitle {
        font-size: 2.3rem;
    }
}