/* ==============================
   Global
============================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #ffffff;
    color: #171717;

    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}


/* ==============================
   Header
============================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
}

.headerFrame {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;

    background-color: #F7F7F7;
    border-bottom: 1px solid #080616;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logoLink {
    margin-left: 10%;

    display: flex;
    align-items: center;
}

.headerLogo {
    width: 180px;
    height: auto;
    display: block;
}

.headerLinks {
    margin-left: auto;
    margin-right: 10%;

    display: flex;
    align-items: center;

    gap: 30px;
}

.headerLinks a {
    color: #393E46;

    font-size: 16px;
    font-weight: 500;

    text-decoration: none;

    transition: color 0.2s ease;
}

.headerLinks a:hover {
    color: #a0a0a0;
}

/* ==============================
   Banner
============================== */

.banner {
    width: 100%;
    height: 400px;

    background-color: #EEEEEE;

    overflow: hidden;
}

.bannerImage {
    width: 100%;
    height: 100%;

    display: flex;

    object-fit: cover;
}


/* ==============================
   Introduction
============================== */

.introduction {
    width: 100%;

    padding: 120px 0;

    background-color: #ffffff;
}

.introductionInner {
    width: 80%;
    max-width: 1000px;

    margin: 0 auto;
}

.sectionLabel {
    margin: 0 0 15px;

    color: #777777;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.introduction h1 {
    max-width: 800px;

    margin: 0 0 30px;

    font-size: 52px;
    line-height: 1.05;
    font-weight: 700;
}

.introductionText {
    max-width: 750px;

    margin: 0 0 20px;

    color: #555555;

    font-size: 18px;
    line-height: 1.7;
}

.mainButton {
    display: inline-block;

    margin-top: 15px;
    padding: 14px 28px;

    background-color: #111111;
    color: #ffffff;

    border-radius: 5px;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition: background-color 0.2s ease;
}

.mainButton:hover {
    background-color: #333333;
}

/* ==============================
   Why Us
============================== */

.whyUs {
    width: 100%;

    padding: 120px 0;

    background-color: #f7f7f7;
}

.whyUsInner {
    width: 80%;
    max-width: 1100px;

    margin: 0 auto;
}

.whyUs h2 {
    margin: 0 0 60px;

    font-size: 40px;
    line-height: 1.1;
}

.benefits {
    display: flex;
    gap: 60px;
}

.benefit {
    flex: 1;
}

.benefit h3 {
    margin: 0 0 15px;

    font-size: 22px;
}

.benefit p {
    margin: 0;

    color: #666666;

    font-size: 16px;
    line-height: 1.7;
}


/* ==============================
   Footer
============================== */

footer {
    width: 100%;

    background-color: #171717;
    color: #ffffff;
}


/* ---------- Footer Content ---------- */

.footerInner {
    width: 80%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 80px 0;

    display: flex;
    justify-content: space-between;

    gap: 80px;
}


/* ---------- Footer Columns ---------- */

.footerColumn {
    display: flex;
    flex-direction: column;
}

.footerBrand {
    max-width: 350px;
}


/* ---------- Footer Logo ---------- */

.footerLogoLink {
    display: inline-flex;

    margin-bottom: 20px;
}

.footerLogo {
    width: 180px;
    height: auto;
}


/* ---------- Footer Text ---------- */

.footerBrand p {
    margin: 0;

    color: #aaaaaa;

    font-size: 15px;
    line-height: 1.7;
}


/* ---------- Footer Headings ---------- */

.footerColumn h3 {
    margin: 0 0 20px;

    font-size: 16px;
    font-weight: 600;
}


/* ---------- Footer Links ---------- */

.footerLinks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footerLinks a {
    color: #aaaaaa;

    font-size: 15px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footerLinks a:hover {
    color: #ffffff;
}


/* ---------- Contact Details ---------- */

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contactDetails a,
.contactDetails span {
    color: #aaaaaa;

    font-size: 15px;
    line-height: 1.5;

    text-decoration: none;
}

.contactDetails a:hover {
    color: #ffffff;
}


/* ---------- Footer Bottom ---------- */

.footerBottom {
    width: 80%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 25px 0;

    border-top: 1px solid #333333;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerBottom p {
    margin: 0;

    color: #777777;

    font-size: 13px;
}

.footerBottom a {
    color: #777777;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footerBottom a:hover {
    color: #ffffff;
}


/* ==============================
Contact Page
============================== */

.contactHero {
width: 100%;

padding: 120px 0;

background-color: #ffffff;

}

.contactHeroInner {
width: 80%;
max-width: 1000px;

margin: 0 auto;

}

.contactHero h1 {
max-width: 800px;

margin: 0 0 30px;

font-size: 52px;
line-height: 1.05;
font-weight: 700;

}

/* ---------- Contact Form Section ---------- */

.contactSection {
width: 100%;

padding: 120px 0;

background-color: #f7f7f7;

}

.contactSectionInner {
width: 80%;
max-width: 1000px;

margin: 0 auto;

}

.contactFormContainer {
max-width: 750px;
}

.contactFormContainer h2 {
margin: 0 0 20px;

font-size: 40px;
line-height: 1.1;

}

.contactFormIntro {
margin: 0 0 50px;

color: #666666;

font-size: 16px;
line-height: 1.7;

}

/* ---------- Form ---------- */

.contactForm {
width: 100%;
}

.formGroup {
display: flex;
flex-direction: column;

margin-bottom: 28px;

}

.formGroup label {
margin-bottom: 10px;

color: #171717;

font-size: 15px;
font-weight: 600;

}

.formGroup label span {
color: #777777;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
width: 100%;

padding: 15px 16px;

background-color: #ffffff;
color: #171717;

border: 1px solid #d6d6d6;
border-radius: 5px;

font-family: Arial, Helvetica, sans-serif;
font-size: 16px;

outline: none;

transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;

}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
color: #999999;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
border-color: #777777;

box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);

}

.formGroup textarea {
min-height: 180px;

resize: vertical;

line-height: 1.6;

}

.formGroup select {
cursor: pointer;
}

/* ---------- Privacy Notice ---------- */

.formPrivacy {
margin: 5px 0 10px;
}

.formPrivacy p {
margin: 0;

color: #777777;

font-size: 13px;
line-height: 1.6;

}

.formPrivacy a {
color: #555555;

text-decoration: underline;

transition: color 0.2s ease;

}

.formPrivacy a {
color: #171717;
}

/* ---------- Submit Button ---------- */

.contactSubmit {
border: none;

cursor: pointer;

}

/* ---------- Pricing Section ---------- */

.contactPricing {
width: 100%;

padding: 100px 0;

background-color: #ffffff;

}

.contactPricingInner {
width: 80%;
max-width: 1000px;

margin: 0 auto;

}

.contactPricing h2 {
max-width: 750px;

margin: 0 0 20px;

font-size: 40px;
line-height: 1.1;

}

.contactPricing p {
max-width: 700px;

margin: 0;

color: #666666;

font-size: 16px;
line-height: 1.7;

}

/* ==============================
   Contact Form Messages
============================== */

.formMessage {
    display: none;

    margin-top: 20px;
    padding: 15px 18px;

    border-radius: 5px;

    font-size: 15px;
    line-height: 1.5;
}

.formMessage.success {
    display: block;

    background-color: #f1f8f3;
    color: #285c3a;

    border: 1px solid #cfe5d6;
}

.formMessage.error {
    display: block;

    background-color: #faf2f2;
    color: #7a3030;

    border: 1px solid #ead0d0;
}


/* ==============================
   Turnstile
============================== */

.turnstileContainer {
    margin: 10px 0 5px;
}


/* ==============================
   Disabled Submit Button
============================== */

.contactSubmit:disabled {
    opacity: 0.6;

    cursor: not-allowed;
}

/* ==============================
   Privacy Policy
============================== */

.privacyPolicy {
    width: 100%;

    padding: 120px 0;

    background-color: #ffffff;
}

.privacyPolicyInner {
    width: 80%;
    max-width: 1000px;

    margin: 0 auto;
}


/* ---------- Main Heading ---------- */

.privacyPolicy h1 {
    max-width: 800px;

    margin: 0 0 30px;

    font-size: 52px;
    line-height: 1.05;
    font-weight: 700;
}


/* ---------- Introduction ---------- */

.privacyIntro {
    max-width: 750px;

    margin: 0 0 70px;

    color: #555555;

    font-size: 18px;
    line-height: 1.7;
}


/* ---------- Section Headings ---------- */

.privacyPolicy h2 {
    max-width: 800px;

    margin: 70px 0 25px;

    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
}

.privacyPolicy h2:first-of-type {
    margin-top: 0;
}


/* ---------- Subheadings ---------- */

.privacyPolicy h3 {
    max-width: 750px;

    margin: 40px 0 15px;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}


/* ---------- Paragraphs ---------- */

.privacyPolicy p {
    max-width: 750px;

    margin: 0 0 20px;

    color: #555555;

    font-size: 16px;
    line-height: 1.7;
}


/* ---------- Lists ---------- */

.privacyPolicy ul {
    max-width: 750px;

    margin: 0 0 25px;
    padding-left: 25px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}

.privacyPolicy li {
    margin-bottom: 5px;
}


/* ---------- Links ---------- */

.privacyPolicy a {
    color: #171717;

    text-decoration: underline;

    transition: color 0.2s ease;
}

.privacyPolicy a:hover {
    color: #777777;
}


/* ---------- Strong Text ---------- */

.privacyPolicy strong {
    color: #171717;
}


/* ==============================
   Global Mobile Support
============================== */

@media (max-width: 768px) {

    /* ---------- Header ---------- */

    .headerFrame {
        height: 70px;
        padding: 0 20px;
    }

    .logoLink {
        margin-left: 0;
    }

    .headerLogo {
        width: 140px;
    }

    .headerLinks {
        margin-left: auto;
        margin-right: 0;

        gap: 16px;
    }

    .headerLinks a {
        font-size: 14px;
    }


    /* ---------- Banner ---------- */

    .banner {
        height: 220px;
    }


    /* ---------- Shared Content Width ---------- */

    .introductionInner,
    .whyUsInner,
    .contactHeroInner,
    .contactSectionInner,
    .contactPricingInner,
    .privacyPolicyInner {
        width: 90%;
    }


    /* ---------- Introduction ---------- */

    .introduction {
        padding: 80px 0;
    }

    .introduction h1 {
        font-size: 40px;
        line-height: 1.08;

        margin-bottom: 25px;
    }

    .introductionText {
        font-size: 17px;
        line-height: 1.65;
    }


    /* ---------- Section Labels ---------- */

    .sectionLabel {
        font-size: 13px;
        letter-spacing: 1.8px;
    }


    /* ---------- Buttons ---------- */

    .mainButton {
        padding: 14px 24px;

        font-size: 15px;
    }


    /* ---------- Why Us ---------- */

    .whyUs {
        padding: 80px 0;
    }

    .whyUs h2 {
        margin-bottom: 45px;

        font-size: 32px;
        line-height: 1.1;
    }

    .benefits {
        flex-direction: column;
        gap: 40px;
    }

    .benefit h3 {
        font-size: 21px;
    }

    .benefit p {
        font-size: 16px;
        line-height: 1.65;
    }


    /* ==============================
       Contact Page
    ============================== */

    .contactHero {
        padding: 80px 0;
    }

    .contactHero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .contactSection {
        padding: 80px 0;
    }

    .contactFormContainer h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .contactFormIntro {
        margin-bottom: 40px;

        font-size: 16px;
    }

    .formGroup {
        margin-bottom: 24px;
    }

    .formGroup input,
    .formGroup select,
    .formGroup textarea {
        padding: 14px 15px;

        font-size: 16px;
    }

    .formGroup textarea {
        min-height: 160px;
    }

    .contactPricing {
        padding: 80px 0;
    }

    .contactPricing h2 {
        font-size: 32px;
    }


    /* ==============================
       Privacy Policy
    ============================== */

    .privacyPolicy {
        padding: 80px 0;
    }

    .privacyPolicy h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .privacyIntro {
        margin-bottom: 50px;

        font-size: 17px;
        line-height: 1.65;
    }

    .privacyPolicy h2 {
        margin-top: 55px;

        font-size: 30px;
        line-height: 1.15;
    }

    .privacyPolicy h3 {
        margin-top: 32px;

        font-size: 20px;
    }

    .privacyPolicy p,
    .privacyPolicy ul {
        font-size: 16px;
        line-height: 1.65;
    }


    /* ==============================
       Footer
    ============================== */

    .footerInner {
        width: 90%;

        padding: 60px 0;

        flex-direction: column;
        gap: 45px;
    }

    .footerBrand {
        max-width: 100%;
    }

    .footerLogo {
        width: 160px;
    }

    .footerColumn h3 {
        margin-bottom: 15px;
    }


    /* ---------- Footer Bottom ---------- */

    .footerBottom {
        width: 90%;

        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }

    .footerBottom p {
        line-height: 1.5;
    }

}