/* =========================================================

   BUILDSITE AI

   MAIN STYLESHEET

   ========================================================= */





/* =========================

   1. RESET

   ========================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    min-height: 100vh;

    background:

        #050b14;

    color:

        #ffffff;

    font-family:

        Arial,

        Helvetica,

        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

}

a {

    color: inherit;

    text-decoration: none;

}

button {

    font: inherit;

}

.container {

    width: min(

        1180px,

        calc(100% - 48px)

    );

    margin:

        0

        auto;

}





/* =========================

   2. HEADER

   ========================= */

.site-header {

    position: relative;

    z-index: 1000;

    width: 100%;

    border-bottom:

        1px solid

        rgba(255, 255, 255, 0.08);

    background:

        rgba(4, 10, 20, 0.92);

    backdrop-filter:

        blur(16px);

}

.header-inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

}





/* BRAND */

.brand {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    font-size: 1.75rem;

    font-weight: 800;

    letter-spacing: -1.2px;

}

.brand-build {

    color:

        #ffffff;

}

.brand-ai {

    margin-left: 5px;

    color:

        #6d5cff;

}





/* NAVIGATION */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}

.main-nav a {

    position: relative;

    padding:

        27px

        0

        24px;

    color:

        #d7deea;

    font-size: 0.94rem;

    transition:

        color

        0.25s

        ease;

}

.main-nav a:hover,

.main-nav a.active {

    color:

        #ffffff;

}

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 17px;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background:

        linear-gradient(

            90deg,

            #1687ff,

            #7557ff

        );

    transition:

        width

        0.25s

        ease;

}

.main-nav a:hover::after,

.main-nav a.active::after {

    width: 100%;

}





/* HEADER CTA */

.header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:

        12px

        21px;

    border-radius: 11px;

    background:

        linear-gradient(

            100deg,

            #087cff,

            #734cff

        );

    box-shadow:

        0

        8px

        28px

        rgba(66, 85, 255, 0.28);

    color:

        #ffffff;

    font-size: 0.9rem;

    font-weight: 700;

    transition:

        transform

        0.25s

        ease,

        box-shadow

        0.25s

        ease;

}

.header-cta:hover {

    transform:

        translateY(-2px);

    box-shadow:

        0

        12px

        35px

        rgba(66, 85, 255, 0.42);

}





/* MOBILE MENU */

.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border:

        1px solid

        rgba(255, 255, 255, 0.12);

    border-radius: 9px;

    background:

        rgba(255, 255, 255, 0.04);

    cursor: pointer;

}

.menu-toggle span {

    display: block;

    width: 20px;

    height: 2px;

    margin:

        4px

        auto;

    border-radius: 20px;

    background:

        #ffffff;

}





/* =========================

   3. HERO

   ========================= */

.hero {

    position: relative;

    min-height:

        calc(100vh - 79px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(

            circle at 78% 45%,

            rgba(45, 80, 255, 0.20),

            transparent 29%

        ),

        radial-gradient(

            circle at 90% 15%,

            rgba(116, 52, 255, 0.16),

            transparent 25%

        ),

        linear-gradient(

            115deg,

            #07111e 0%,

            #040a13 48%,

            #07101e 100%

        );

}

.hero::before {

    content: "";

    position: absolute;

    top: -220px;

    right: -180px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:

        rgba(40, 74, 255, 0.10);

    filter:

        blur(80px);

    pointer-events: none;

}

.hero-grid {

    position: relative;

    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns:

        0.95fr

        1.05fr;

    align-items: center;

    gap: 72px;

    padding:

        90px

        0;

}





/* HERO COPY */

.hero-content {

    max-width: 590px;

}

.hero-eyebrow {

    margin-bottom: 17px;

    color:

        #5e8dff;

    font-size: 0.79rem;

    font-weight: 800;

    letter-spacing: 2.3px;

}

.hero h1 {

    max-width: 610px;

    color:

        #ffffff;

    font-size:

        clamp(

            3rem,

            5.2vw,

            5.15rem

        );

    font-weight: 800;

    line-height: 0.99;

    letter-spacing: -3.6px;

}

.hero h1 span {

    background:

        linear-gradient(

            100deg,

            #1688ff,

            #7153ff

        );

    -webkit-background-clip:

        text;

    background-clip:

        text;

    color:

        transparent;

}

.hero-description {

    max-width: 570px;

    margin-top: 28px;

    color:

        #c2cad8;

    font-size: 1.04rem;

    line-height: 1.75;

}





/* HERO BUTTONS */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 34px;

}

.btn {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:

        0

        27px;

    border-radius: 11px;

    font-size: 0.94rem;

    font-weight: 700;

    transition:

        transform

        0.25s

        ease,

        border-color

        0.25s

        ease,

        background

        0.25s

        ease,

        box-shadow

        0.25s

        ease;

}

.btn-primary {

    background:

        linear-gradient(

            100deg,

            #087fff,

            #714cff

        );

    box-shadow:

        0

        12px

        32px

        rgba(61, 78, 255, 0.28);

}

.btn-primary:hover {

    transform:

        translateY(-3px);

    box-shadow:

        0

        16px

        40px

        rgba(61, 78, 255, 0.42);

}

.btn-secondary {

    border:

        1px solid

        rgba(125, 139, 255, 0.65);

    background:

        rgba(255, 255, 255, 0.015);

}

.btn-secondary:hover {

    transform:

        translateY(-3px);

    border-color:

        #ffffff;

    background:

        rgba(255, 255, 255, 0.05);

}





/* HERO BENEFITS */

.hero-benefits {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:

        20px

        34px;

    margin-top: 38px;

}

.benefit {

    display: flex;

    align-items: center;

    gap: 10px;

    color:

        #e7ecf5;

    font-size: 0.77rem;

    font-weight: 700;

    line-height: 1.35;

}

.benefit-icon {

    color:

        #347cff;

    font-size: 1.55rem;

    line-height: 1;

}





/* =========================

   4. HERO VISUAL

   ========================= */

.hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hero-glow {

    position: absolute;

    width: 520px;

    height: 360px;

    border-radius: 50%;

    background:

        linear-gradient(

            120deg,

            rgba(16, 123, 255, 0.32),

            rgba(108, 59, 255, 0.25)

        );

    filter:

        blur(80px);

    opacity: 0.75;

}





/* BROWSER MOCKUP */

.browser-mockup {

    position: relative;

    z-index: 2;

    width: min(

        100%,

        590px

    );

    min-height: 390px;

    overflow: hidden;

    border:

        1px solid

        rgba(129, 155, 255, 0.30);

    border-radius: 18px;

    background:

        #07111d;

    box-shadow:

        0

        35px

        90px

        rgba(0, 0, 0, 0.50),

        0

        0

        60px

        rgba(42, 76, 255, 0.12);

    transform:

        perspective(1100px)

        rotateY(-5deg)

        rotateX(2deg);

}

.browser-top {

    height: 42px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:

        0

        16px;

    border-bottom:

        1px solid

        rgba(255, 255, 255, 0.07);

    background:

        #0b1523;

}

.browser-top span {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background:

        #354052;

}

.demo-site {

    min-height: 348px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding:

        55px

        58px;

    background:

        radial-gradient(

            circle at 82% 35%,

            rgba(71, 83, 255, 0.26),

            transparent 30%

        ),

        linear-gradient(

            120deg,

            #060b12,

            #0a1422

        );

}

.demo-label {

    margin-bottom: 16px;

    color:

        #6e91ff;

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 2px;

}

.demo-site h2 {

    max-width: 390px;

    font-size:

        clamp(

            2.1rem,

            4vw,

            3.5rem

        );

    line-height: 1.02;

    letter-spacing: -2px;

}

.demo-site h2 span {

    color:

        #4d7fff;

}

.demo-site > p:not(.demo-label) {

    max-width: 340px;

    margin-top: 18px;

    color:

        #aeb9ca;

}

.demo-button {

    display: inline-flex;

    margin-top: 27px;

    padding:

        10px

        19px;

    border-radius: 8px;

    background:

        #ffffff;

    color:

        #07101c;

    font-size: 0.78rem;

    font-weight: 800;

}





/* AI FLOATING CARD */

.ai-card {

    position: absolute;

    z-index: 5;

    top: 100px;

    right: -28px;

    width: 118px;

    padding:

        19px

        18px;

    border:

        1px solid

        rgba(89, 137, 255, 0.65);

    border-radius: 15px;

    background:

        linear-gradient(

            145deg,

            rgba(22, 44, 80, 0.92),

            rgba(25, 24, 67, 0.92)

        );

    box-shadow:

        0

        0

        35px

        rgba(55, 102, 255, 0.25);

    backdrop-filter:

        blur(16px);

}

.ai-card > span {

    display: block;

    margin-bottom: 7px;

    color:

        #5f7cff;

    font-size: 1.8rem;

}

.ai-card strong {

    display: block;

    margin-bottom: 6px;

    font-size: 1rem;

}

.ai-card small {

    color:

        #bac5d7;

    font-size: 0.69rem;

    line-height: 1.55;

}





/* =========================

   5. RESPONSIVE

   ========================= */

@media (max-width: 1050px) {

    .main-nav {

        gap: 20px;

    }

    .hero-grid {

        gap: 40px;

    }

    .ai-card {

        right: 0;

    }

}





@media (max-width: 900px) {

    .container {

        width:

            min(

                100% - 34px,

                720px

            );

    }

    .main-nav,

    .header-cta {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

    .hero {

        min-height: auto;

    }

    .hero-grid {

        grid-template-columns:

            1fr;

        gap: 65px;

        padding:

            75px

            0

            85px;

    }

    .hero-content {

        max-width: 650px;

    }

    .hero-visual {

        min-height: 430px;

    }

    .browser-mockup {

        width: 92%;

        transform: none;

    }

    .ai-card {

        top: 70px;

        right: 0;

    }

}





@media (max-width: 600px) {

    .container {

        width:

            calc(100% - 28px);

    }

    .header-inner {

        min-height: 68px;

    }

    .brand {

        font-size: 1.5rem;

    }

    .hero-grid {

        padding:

            58px

            0

            68px;

    }

    .hero-eyebrow {

        font-size: 0.66rem;

        letter-spacing: 1.7px;

    }

    .hero h1 {

        font-size:

            clamp(

                2.65rem,

                13vw,

                4rem

            );

        letter-spacing: -2.5px;

    }

    .hero-description {

        margin-top: 23px;

        font-size: 0.96rem;

    }

    .hero-actions {

        align-items: stretch;

        flex-direction: column;

    }

    .btn {

        width: 100%;

    }

    .hero-benefits {

        display: grid;

        grid-template-columns:

            repeat(2, 1fr);

        gap: 22px;

    }

    .hero-visual {

        min-height: 350px;

    }

    .browser-mockup {

        width: 100%;

        min-height: 310px;

    }

    .demo-site {

        min-height: 270px;

        padding:

            35px

            27px;

    }

    .demo-site h2 {

        font-size: 2.3rem;

    }

    .ai-card {

        top: auto;

        right: 10px;

        bottom: -25px;

        width: 105px;

        padding:

            15px;

    }

}

/* =========================

   6. MOBILE NAVIGATION

   ========================= */

@media (max-width: 900px) {

    .site-header {

        position: relative;

    }

    .main-nav.mobile-open {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:

            14px

            24px

            22px;

        border-top:

            1px solid

            rgba(255, 255, 255, 0.07);

        border-bottom:

            1px solid

            rgba(255, 255, 255, 0.10);

        background:

            rgba(4, 10, 20, 0.98);

        box-shadow:

            0

            25px

            45px

            rgba(0, 0, 0, 0.35);

        backdrop-filter:

            blur(18px);

    }

    .main-nav.mobile-open a {

        width: 100%;

        padding:

            15px

            4px;

        border-bottom:

            1px solid

            rgba(255, 255, 255, 0.06);

        font-size: 0.95rem;

    }

    .main-nav.mobile-open a:last-child {

        border-bottom: 0;

    }

    .main-nav.mobile-open a::after {

        display: none;

    }





    /* HAMBURGER → X */

    .menu-toggle span {

        transition:

            transform

            0.25s

            ease,

            opacity

            0.25s

            ease;

    }

    .menu-toggle.active span:nth-child(1) {

        transform:

            translateY(6px)

            rotate(45deg);

    }

    .menu-toggle.active span:nth-child(2) {

        opacity: 0;

    }

    .menu-toggle.active span:nth-child(3) {

        transform:

            translateY(-6px)

            rotate(-45deg);

    }

}

/* =========================================================

   7. SERVICES OVERVIEW

   ========================================================= */

.services-overview {

    position: relative;

    padding: 115px 0;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    background:

        linear-gradient(

            180deg,

            #050b14 0%,

            #07101c 55%,

            #050b14 100%

        );

}

.services-overview::before {

    content: "";

    position: absolute;

    top: 40px;

    left: 50%;

    width: 700px;

    height: 400px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(51, 72, 255, 0.07);

    filter: blur(100px);

    pointer-events: none;

}

.section-heading {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;

}

.section-eyebrow {

    margin-bottom: 14px;

    color: #648dff;

    font-size: 0.74rem;

    font-weight: 800;

    letter-spacing: 2.3px;

}

.section-heading h2 {

    color: #ffffff;

    font-size: clamp(2.4rem, 4.5vw, 4rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.5px;

}

.section-heading h2 span {

    background: linear-gradient(100deg, #1688ff, #7557ff);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}

.section-description {

    max-width: 650px;

    margin: 22px auto 0;

    color: #aeb8c8;

    font-size: 1rem;

    line-height: 1.75;

}

.services-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.service-card {

    position: relative;

    min-height: 330px;

    padding: 32px 28px;

    overflow: hidden;

    border: 1px solid rgba(125, 146, 255, 0.15);

    border-radius: 17px;

    background:

        linear-gradient(

            145deg,

            rgba(12, 25, 43, 0.92),

            rgba(7, 15, 28, 0.92)

        );

    transition:

        transform 0.3s ease,

        border-color 0.3s ease,

        box-shadow 0.3s ease;

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(90deg, #1388ff, #7251ff);

    opacity: 0;

    transition: opacity 0.3s ease;

}

.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(90, 117, 255, 0.45);

    box-shadow:

        0 25px 55px rgba(0, 0, 0, 0.28),

        0 0 35px rgba(61, 75, 255, 0.08);

}

.service-card:hover::before {

    opacity: 1;

}

.service-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: rgba(255, 255, 255, 0.14);

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 1px;

}

.service-icon {

    width: 53px;

    height: 53px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    border: 1px solid rgba(93, 123, 255, 0.32);

    border-radius: 13px;

    background:

        linear-gradient(

            145deg,

            rgba(23, 93, 255, 0.16),

            rgba(112, 73, 255, 0.10)

        );

    color: #6084ff;

    font-size: 1.55rem;

}

.service-card h3 {

    margin-bottom: 15px;

    color: #ffffff;

    font-size: 1.2rem;

    font-weight: 750;

}

.service-card p {

    color: #aab5c5;

    font-size: 0.91rem;

    line-height: 1.75;

}

.services-link {

    position: relative;

    z-index: 2;

    margin-top: 47px;

    text-align: center;

}

.services-link a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #7696ff;

    font-size: 0.92rem;

    font-weight: 700;

    transition: color 0.25s ease, gap 0.25s ease;

}

.services-link a:hover {

    gap: 15px;

    color: #ffffff;

}

@media (max-width: 1000px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 600px) {

    .services-overview {

        padding: 85px 0;

    }

    .section-heading {

        margin-bottom: 45px;

    }

    .section-heading h2 {

        letter-spacing: -1.8px;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        min-height: auto;

        padding: 29px 25px;

    }

}



/* =========================================================

   8. PORTFOLIO PREVIEW

   ========================================================= */

.portfolio-preview {

    position: relative;

    padding: 115px 0;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    background: #040a12;

}

.portfolio-preview::before {

    content: "";

    position: absolute;

    top: 150px;

    left: -200px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(28, 91, 255, 0.08);

    filter: blur(100px);

    pointer-events: none;

}

.portfolio-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

.portfolio-card {

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    background: #08111e;

    transition:

        transform 0.3s ease,

        border-color 0.3s ease,

        box-shadow 0.3s ease;

}

.portfolio-card:hover {

    transform: translateY(-7px);

    border-color: rgba(83, 115, 255, 0.42);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);

}

.portfolio-demo {

    position: relative;

    min-height: 270px;

    display: flex;

    align-items: flex-end;

    padding: 28px;

    overflow: hidden;

}
.portfolio-demo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    display: block;
}

.portfolio-demo::after {

    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,

            rgba(0, 0, 0, 0.02),

            rgba(0, 0, 0, 0.25)

        );

    pointer-events: none;

}

.auto-demo {

    background:

        radial-gradient(circle at 75% 25%, rgba(0, 119, 255, 0.45), transparent 35%),

        linear-gradient(135deg, #101a28, #02060b);

}

.restaurant-demo {

    background:

        radial-gradient(circle at 70% 20%, rgba(190, 105, 39, 0.38), transparent 35%),

        linear-gradient(135deg, #281810, #090604);

}

.barber-demo {

    background:

        radial-gradient(circle at 80% 20%, rgba(179, 145, 86, 0.30), transparent 35%),

        linear-gradient(135deg, #191919, #050505);

}

.event-demo {

    background:

        radial-gradient(circle at 75% 20%, rgba(192, 73, 181, 0.30), transparent 35%),

        linear-gradient(135deg, #251329, #08050a);

}

.construction-demo {

    background:

        radial-gradient(circle at 75% 20%, rgba(255, 161, 44, 0.30), transparent 35%),

        linear-gradient(135deg, #24201b, #080706);

}

.professional-demo {

    background:

        radial-gradient(circle at 75% 20%, rgba(50, 102, 255, 0.35), transparent 35%),

        linear-gradient(135deg, #111d31, #050a12);

}

.demo-badge {

    position: absolute;

    z-index: 3;

    top: 18px;

    left: 18px;

    padding: 6px 9px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 6px;

    background: rgba(4, 10, 18, 0.72);

    color: #aab7ca;

    font-size: 0.57rem;

    font-weight: 800;

    letter-spacing: 1.3px;

    backdrop-filter: blur(8px);

}

.portfolio-screen-content {

    position: relative;

    z-index: 2;

}

.portfolio-screen-content small {

    display: block;

    margin-bottom: 9px;

    color: #839cff;

    font-size: 0.59rem;

    font-weight: 800;

    letter-spacing: 1.6px;

}

.portfolio-screen-content h3 {

    color: #ffffff;

    font-size: 1.65rem;

    line-height: 1.08;

    letter-spacing: -0.8px;

}

.portfolio-screen-content > span {

    display: inline-flex;

    margin-top: 17px;

    padding: 8px 13px;

    border-radius: 6px;

    background: rgba(255, 255, 255, 0.95);

    color: #07101b;

    font-size: 0.65rem;

    font-weight: 800;

}

.portfolio-info {

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 23px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

}

.portfolio-info p {

    margin-bottom: 3px;

    color: #7185a5;

    font-size: 0.69rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.portfolio-info h3 {

    color: #ffffff;

    font-size: 1rem;

}

.portfolio-arrow {

    color: #6288ff;

    font-size: 1.25rem;

    transition: transform 0.25s ease;

}

.portfolio-card:hover .portfolio-arrow {

    transform: translate(3px, -3px);

}

.portfolio-action {

    position: relative;

    z-index: 2;

    margin-top: 50px;

    text-align: center;

}

@media (max-width: 1000px) {

    .portfolio-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 600px) {

    .portfolio-preview {

        padding: 85px 0;

    }

    .portfolio-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }

    .portfolio-demo {

        min-height: 250px;

    }

}



/* =========================================================

   9. HOW IT WORKS

   ========================================================= */

.how-it-works {

    position: relative;

    padding:

        115px

        0;

    overflow: hidden;

    border-top:

        1px solid

        rgba(255, 255, 255, 0.05);

    background:

        linear-gradient(

            180deg,

            #07101b 0%,

            #050b14 100%

        );

}





/* PROCESS GRID */

.process-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:

        repeat(4, 1fr);

    gap: 22px;

}





/* CONNECTING LINE */

.process-grid::before {

    content: "";

    position: absolute;

    z-index: -1;

    top: 48px;

    left: 10%;

    right: 10%;

    height: 1px;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(72, 111, 255, 0.55),

            rgba(116, 74, 255, 0.55),

            transparent

        );

}





/* PROCESS CARD */

.process-step {

    position: relative;

    min-height: 310px;

    padding:

        31px

        27px;

    border:

        1px solid

        rgba(255, 255, 255, 0.08);

    border-radius: 17px;

    background:

        rgba(8, 18, 32, 0.94);

    transition:

        transform

        0.3s

        ease,

        border-color

        0.3s

        ease,

        box-shadow

        0.3s

        ease;

}

.process-step:hover {

    transform:

        translateY(-7px);

    border-color:

        rgba(88, 117, 255, 0.40);

    box-shadow:

        0

        24px

        50px

        rgba(0, 0, 0, 0.25);

}





/* STEP NUMBER */

.process-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color:

        rgba(255, 255, 255, 0.14);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1px;

}





/* STEP ICON */

.process-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    border:

        1px solid

        rgba(84, 120, 255, 0.38);

    border-radius: 50%;

    background:

        linear-gradient(

            145deg,

            rgba(20, 105, 255, 0.17),

            rgba(113, 67, 255, 0.12)

        );

    color:

        #668cff;

    font-size: 1.4rem;

    box-shadow:

        0

        0

        25px

        rgba(54, 86, 255, 0.10);

}





.process-step h3 {

    max-width: 180px;

    margin-bottom: 15px;

    color:

        #ffffff;

    font-size: 1.18rem;

    line-height: 1.3;

}





.process-step p {

    color:

        #aab5c5;

    font-size: 0.89rem;

    line-height: 1.75;

}





/* PROCESS CTA */

.process-action {

    position: relative;

    z-index: 2;

    margin-top: 50px;

    text-align: center;

}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .process-grid {

        grid-template-columns:

            repeat(2, 1fr);

    }

    .process-grid::before {

        display: none;

    }

}

@media (max-width: 600px) {

    .how-it-works {

        padding:

            85px

            0;

    }

    .process-grid {

        grid-template-columns:

            1fr;

    }

    .process-step {

        min-height: auto;

    }

}

/* =========================================================

   10. PRICING

   ========================================================= */

.pricing-preview {

    position: relative;

    padding:

        115px

        0;

    overflow: hidden;

    border-top:

        1px solid

        rgba(255, 255, 255, 0.05);

    background:

        radial-gradient(

            circle at 50% 40%,

            rgba(61, 74, 255, 0.08),

            transparent 38%

        ),

        #040a12;

}



/* =========================

   PRICING GRID

   ========================= */

.pricing-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:

        repeat(3, 1fr);

    gap: 25px;

    align-items: stretch;

}



/* =========================

   PRICING CARD

   ========================= */

.pricing-card {

    position: relative;

    display: flex;

    flex-direction: column;

    padding:

        38px

        32px;

    border:

        1px solid

        rgba(255, 255, 255, 0.09);

    border-radius: 19px;

    background:

        linear-gradient(

            145deg,

            rgba(11, 24, 42, 0.96),

            rgba(6, 14, 25, 0.96)

        );

    transition:

        transform 0.3s ease,

        border-color 0.3s ease,

        box-shadow 0.3s ease;

}

.pricing-card:hover {

    transform:

        translateY(-7px);

    border-color:

        rgba(87, 116, 255, 0.38);

    box-shadow:

        0

        25px

        60px

        rgba(0, 0, 0, 0.30);

}



/* =========================

   FEATURED BUSINESS PACKAGE

   ========================= */

.pricing-featured {

    border-color:

        rgba(91, 103, 255, 0.58);

    background:

        linear-gradient(

            145deg,

            rgba(14, 30, 55, 0.98),

            rgba(14, 17, 45, 0.98)

        );

    box-shadow:

        0

        0

        45px

        rgba(65, 74, 255, 0.10);

}

.featured-label {

    position: absolute;

    top: -14px;

    left: 50%;

    transform:

        translateX(-50%);

    padding:

        7px

        16px;

    border-radius: 30px;

    background:

        linear-gradient(

            100deg,

            #087fff,

            #714cff

        );

    color:

        #ffffff;

    font-size: 0.64rem;

    font-weight: 800;

    letter-spacing: 1.2px;

}



/* =========================

   PRICING HEADER

   ========================= */

.pricing-name {

    margin-bottom: 10px;

    color:

        #668cff;

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 1.8px;

}

.pricing-card-header h3 {

    margin-bottom: 13px;

    color:

        #ffffff;

    font-size: 1.45rem;

    line-height: 1.25;

}

.pricing-intro {

    min-height: 78px;

    color:

        #9eabba;

    font-size: 0.9rem;

    line-height: 1.65;

}



/* =========================

   PRICE

   ========================= */

.price {

    position: relative;

    display: flex;

    align-items: flex-start;

    margin:

        25px

        0;

}

.currency {

    margin-top: 8px;

    color:

        #ffffff;

    font-size: 1.2rem;

    font-weight: 700;

}

.price strong {

    color:

        #ffffff;

    font-size: 3.4rem;

    line-height: 1;

    letter-spacing: -2px;

}

.price-note {

    align-self: flex-end;

    margin:

        0

        0

        5px

        9px;

    color:

        #718096;

    font-size: 0.69rem;

}



/* =========================

   PRICING BUTTON

   ========================= */

.pricing-button {

    width: 100%;

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-bottom: 28px;

    border:

        1px solid

        rgba(112, 134, 255, 0.42);

    border-radius: 9px;

    background:

        rgba(255, 255, 255, 0.025);

    color:

        #ffffff;

    font-size: 0.88rem;

    font-weight: 750;

    transition:

        transform 0.25s ease,

        background 0.25s ease,

        border-color 0.25s ease;

}

.pricing-button:hover {

    transform:

        translateY(-2px);

    border-color:

        #718aff;

    background:

        rgba(85, 105, 255, 0.08);

}

.pricing-button-primary {

    border-color:

        transparent;

    background:

        linear-gradient(

            100deg,

            #087fff,

            #714cff

        );

    box-shadow:

        0

        10px

        28px

        rgba(65, 77, 255, 0.22);

}



/* =========================

   PRICING FEATURES

   ========================= */

.pricing-features {

    display: flex;

    flex-direction: column;

    gap: 14px;

    list-style: none;

    margin: 0;

    padding: 0;

}

.pricing-features li {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    color:

        #b8c2d0;

    font-size: 0.86rem;

    line-height: 1.45;

}

.pricing-features li span {

    flex-shrink: 0;

    color:

        #6389ff;

    font-weight: 800;

}



/* =========================

   PRICING DISCLAIMER

   ========================= */

.pricing-disclaimer {

    max-width: 650px;

    margin:

        34px

        auto

        0;

    color:

        #758297;

    font-size: 0.75rem;

    line-height: 1.6;

    text-align: center;

}



/* =========================

   PRICING PAGE LINK

   ========================= */

.pricing-action {

    margin-top: 26px;

    text-align: center;

}

.pricing-action a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:

        #7696ff;

    font-size: 0.9rem;

    font-weight: 700;

    transition:

        color 0.25s ease,

        gap 0.25s ease;

}

.pricing-action a:hover {

    gap: 14px;

    color:

        #ffffff;

}



/* =========================

   PRICING RESPONSIVE

   ========================= */

@media (max-width: 900px) {

    .pricing-grid {

        grid-template-columns:

            1fr;

        max-width: 600px;

        margin:

            0

            auto;

        gap: 32px;

    }

    .pricing-intro {

        min-height: auto;

    }

}

@media (max-width: 600px) {

    .pricing-preview {

        padding:

            85px

            0;

    }

    .pricing-card {

        padding:

            34px

            25px;

    }

    .price strong {

        font-size: 3rem;

    }

}
/* =========================================================
   11. FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;

    padding:
        110px
        0;

    overflow: hidden;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        #050b14;
}


/* =========================
   CTA BOX
   ========================= */

.final-cta-box {
    position: relative;

    overflow: hidden;

    padding:
        85px
        45px;

    border:
        1px solid
        rgba(105, 126, 255, 0.25);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(11, 27, 50, 0.98),
            rgba(11, 14, 36, 0.98)
        );

    box-shadow:
        0
        30px
        80px
        rgba(0, 0, 0, 0.30);
}


/* =========================
   BACKGROUND GLOW
   ========================= */

.final-cta-glow {
    position: absolute;

    top: 50%;

    left: 50%;

    width: 700px;

    height: 350px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56, 91, 255, 0.20),
            rgba(102, 62, 255, 0.10) 40%,
            transparent 70%
        );

    filter:
        blur(40px);

    pointer-events: none;
}


/* =========================
   CTA CONTENT
   ========================= */

.final-cta-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin:
        0
        auto;

    text-align: center;
}

.final-cta-content h2 {
    max-width: 720px;

    margin:
        0
        auto;

    color:
        #ffffff;

    font-size:
        clamp(
            2.5rem,
            5vw,
            4.4rem
        );

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -3px;
}

.final-cta-content h2 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}


/* =========================
   CTA DESCRIPTION
   ========================= */

.final-cta-description {
    max-width: 590px;

    margin:
        25px
        auto
        0;

    color:
        #aeb9c9;

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================
   CTA BUTTON
   ========================= */

.final-cta-button {
    margin-top: 32px;

    min-width: 210px;

    box-shadow:
        0
        15px
        40px
        rgba(65, 77, 255, 0.28);
}


/* =========================
   CTA NOTE
   ========================= */

.final-cta-note {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;

    color:
        #7f8da2;

    font-size: 0.75rem;

    font-weight: 600;
}

.final-cta-note span {
    color:
        #4e6485;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 600px) {

    .final-cta {
        padding:
            80px
            0;
    }

    .final-cta-box {
        padding:
            65px
            24px;

        border-radius: 19px;
    }

    .final-cta-content h2 {
        font-size:
            clamp(
                2.25rem,
                11vw,
                3.2rem
            );

        letter-spacing: -2px;
    }

    .final-cta-description {
        font-size: 0.94rem;
    }

    .final-cta-button {
        width: 100%;
    }

}
/* =========================================================
   12. FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    padding:
        75px
        0
        28px;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);
    background:
        #030810;
}


/* =========================
   FOOTER GRID
   ========================= */

.footer-grid {
    display: grid;
    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.2fr;
    gap: 55px;
    align-items: start;
}


/* =========================
   FOOTER BRAND
   ========================= */

.footer-brand .brand {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 310px;
    color:
        #7f8b9d;
    font-size: 0.86rem;
    line-height: 1.75;
}


/* =========================
   FOOTER COLUMNS
   ========================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color:
        #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-column a {
    color:
        #7f8b9d;
    font-size: 0.82rem;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color:
        #ffffff;
    transform:
        translateX(3px);
}


/* =========================
   READY TO START
   ========================= */

.footer-start p {
    max-width: 250px;
    color:
        #7f8b9d;
    font-size: 0.82rem;
    line-height: 1.65;
}

.footer-column .footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 5px;
    padding:
        12px
        18px;
    border:
        1px solid
        rgba(100, 126, 255, 0.35);
    border-radius: 8px;
    background:
        rgba(80, 100, 255, 0.06);
    color:
        #ffffff;
    font-weight: 700;
}

.footer-column .footer-cta:hover {
    transform:
        translateY(-2px);
    border-color:
        #7089ff;
    background:
        rgba(80, 100, 255, 0.12);
}


/* =========================
   FOOTER BOTTOM
   ========================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 65px;
    padding-top: 25px;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color:
        #657286;
    font-size: 0.74rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    color:
        #657286;
    font-size: 0.74rem;
    transition:
        color 0.25s ease;
}

.footer-legal a:hover {
    color:
        #ffffff;
}


/* =========================
   FOOTER RESPONSIVE
   ========================= */

@media (max-width: 950px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
        gap:
            45px
            35px;
    }

}


@media (max-width: 600px) {

    .site-footer {
        padding:
            60px
            0
            25px;
    }

    .footer-grid {
        grid-template-columns:
            1fr;
        gap: 38px;
    }

    .footer-brand p,
    .footer-start p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 50px;
    }

    .footer-legal {
        gap: 18px;
    }

}
/* =========================================================
   13. SERVICES PAGE
   ========================================================= */


/* =========================
   SERVICES HERO
   ========================= */

.services-page-hero {
    position: relative;
    padding:
        150px
        0
        105px;
    overflow: hidden;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(61, 74, 255, 0.14),
            transparent 35%
        ),
        #040a12;
}

.services-hero-content {
    max-width: 900px;
    margin:
        0
        auto;
    text-align: center;
}

.services-hero-content h1 {
    margin:
        12px
        auto
        0;
    color:
        #ffffff;
    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
}

.services-hero-content h1 span {
    display: block;
    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-hero-content > p:not(.section-eyebrow) {
    max-width: 680px;
    margin:
        27px
        auto
        0;
    color:
        #9eabba;
    font-size: 1rem;
    line-height: 1.75;
}

.services-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}


/* =========================
   SERVICES GRID SECTION
   ========================= */

.services-page-section {
    position: relative;
    padding:
        115px
        0;
    background:
        #050b14;
}

.services-page-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 24px;
}


/* =========================
   SERVICE CARDS
   ========================= */

.services-page-card {
    position: relative;
    min-height: 300px;
    padding:
        34px
        30px;
    overflow: hidden;
    border:
        1px solid
        rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(11, 24, 42, 0.96),
            rgba(6, 14, 25, 0.96)
        );
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.services-page-card:hover {
    transform:
        translateY(-6px);
    border-color:
        rgba(90, 115, 255, 0.38);
    box-shadow:
        0
        24px
        55px
        rgba(0, 0, 0, 0.25);
}

.services-page-number {
    position: absolute;
    top: 27px;
    right: 28px;
    color:
        rgba(122, 143, 177, 0.38);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.services-page-icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    border:
        1px solid
        rgba(100, 126, 255, 0.25);
    border-radius: 12px;
    background:
        rgba(75, 94, 255, 0.07);
    color:
        #718cff;
    font-size: 1.2rem;
}

.services-page-card h3 {
    margin-bottom: 14px;
    color:
        #ffffff;
    font-size: 1.15rem;
    line-height: 1.35;
}

.services-page-card p {
    color:
        #8997aa;
    font-size: 0.87rem;
    line-height: 1.7;
}


/* =========================
   WHAT'S INCLUDED
   ========================= */

.services-included {
    position: relative;
    padding:
        115px
        0;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
    background:
        linear-gradient(
            135deg,
            #050b14,
            #07101d
        );
}

.services-included-grid {
    display: grid;
    grid-template-columns:
        0.9fr
        1.1fr;
    gap: 90px;
    align-items: center;
}

.services-included-content h2 {
    margin-top: 10px;
    color:
        #ffffff;
    font-size:
        clamp(
            2.4rem,
            4vw,
            3.8rem
        );
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.services-included-content h2 span {
    display: block;
    color:
        #6f8cff;
}

.services-included-content > p:not(.section-eyebrow) {
    max-width: 510px;
    margin-top: 23px;
    color:
        #8e9bad;
    font-size: 0.94rem;
    line-height: 1.75;
}


/* =========================
   INCLUDED LIST
   ========================= */

.services-included-list {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 15px;
}

.services-included-list div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding:
        17px
        18px;
    border:
        1px solid
        rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background:
        rgba(255, 255, 255, 0.025);
    color:
        #aeb9c8;
    font-size: 0.82rem;
    line-height: 1.5;
}

.services-included-list span {
    flex-shrink: 0;
    color:
        #668cff;
    font-weight: 800;
}


/* =========================
   WHY BUILDSITE AI
   ========================= */

.services-why {
    position: relative;
    padding:
        115px
        0;
    background:
        #040a12;
}

.services-why-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 24px;
}

.services-why-grid article {
    padding:
        35px
        30px;
    border-top:
        1px solid
        rgba(100, 126, 255, 0.35);
    background:
        linear-gradient(
            180deg,
            rgba(60, 78, 160, 0.06),
            transparent
        );
}

.services-why-grid strong {
    display: block;
    margin-bottom: 35px;
    color:
        #627fff;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
}

.services-why-grid h3 {
    margin-bottom: 13px;
    color:
        #ffffff;
    font-size: 1.15rem;
}

.services-why-grid p {
    color:
        #8794a7;
    font-size: 0.86rem;
    line-height: 1.7;
}


/* =========================
   SERVICES RESPONSIVE
   ========================= */

@media (max-width: 950px) {

    .services-page-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-included-grid {
        grid-template-columns:
            1fr;
        gap: 55px;
    }

    .services-why-grid {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 650px) {

    .services-page-hero {
        padding:
            120px
            0
            80px;
    }

    .services-hero-content h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4rem
            );
        letter-spacing: -2.5px;
    }

    .services-page-section,
    .services-included,
    .services-why {
        padding:
            85px
            0;
    }

    .services-page-grid {
        grid-template-columns:
            1fr;
    }

    .services-included-list {
        grid-template-columns:
            1fr;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .btn {
        width: 100%;
    }

}
/* =========================================================
   14. PORTFOLIO PAGE
   ========================================================= */


/* =========================
   PORTFOLIO HERO
   ========================= */

.portfolio-page-hero {
    position: relative;
    padding:
        150px
        0
        105px;
    overflow: hidden;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(74, 78, 255, 0.15),
            transparent 36%
        ),
        #040a12;
}

.portfolio-page-hero-content {
    max-width: 900px;
    margin:
        0
        auto;
    text-align: center;
}

.portfolio-page-hero-content h1 {
    margin:
        12px
        auto
        0;
    color:
        #ffffff;
    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
}

.portfolio-page-hero-content h1 span {
    display: block;
    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.portfolio-page-hero-content > p:not(.section-eyebrow) {
    max-width: 680px;
    margin:
        27px
        auto
        0;
    color:
        #9eabba;
    font-size: 1rem;
    line-height: 1.75;
}

.portfolio-page-hero-content .btn {
    margin-top: 32px;
}


/* =========================
   PROJECTS SECTION
   ========================= */

.portfolio-page-projects {
    position: relative;
    padding:
        115px
        0;
    background:
        #050b14;
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap:
        50px
        28px;
}


/* =========================
   PROJECT CARD
   ========================= */

.portfolio-project {
    overflow: hidden;
    border:
        1px solid
        rgba(255, 255, 255, 0.13);
    border-radius: 19px;
    background: #0b1523;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-project:hover {
    transform:
        translateY(-6px);
    border-color:
        rgba(94, 116, 255, 0.38);
    box-shadow:
        0
        28px
        65px
        rgba(0, 0, 0, 0.28);
}


/* =========================
   PROJECT PREVIEW
   ========================= */

.portfolio-project-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111c2b;
}

.portfolio-project-preview::after {
    display: none;
}

.portfolio-project-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.12) contrast(1.05);
}

.portfolio-project-preview .demo-badge {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 18px;
}

/* =========================
   PROJECT DETAILS
   ========================= */

.portfolio-project-details {
    display: flex;
    background: #0b1523;
    justify-content: space-between;
    gap: 25px;
    padding:
        27px
        29px
        31px;
}

.portfolio-project-details > div {
    max-width: 430px;
}

.portfolio-project-details p {
    margin-bottom: 7px;
    color:
        #668cff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.portfolio-project-details h3 {
    margin-bottom: 10px;
    color:
        #ffffff;
    font-size: 1.2rem;
}

.portfolio-project-details div > span {
    display: block;
    color:
        #8290a3;
    font-size: 0.8rem;
    line-height: 1.6;
}

.portfolio-project-details > strong {
    flex-shrink: 0;
    color:
        rgba(118, 139, 174, 0.35);
    font-size: 0.75rem;
    letter-spacing: 1px;
}


/* =========================
   CUSTOM WEBSITE MESSAGE
   ========================= */

.portfolio-custom {
    position: relative;
    padding:
        110px
        0;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(65, 79, 255, 0.09),
            transparent 40%
        ),
        #040a12;
}

.portfolio-custom-content {
    max-width: 760px;
    margin:
        0
        auto;
    text-align: center;
}

.portfolio-custom-content h2 {
    margin-top: 10px;
    color:
        #ffffff;
    font-size:
        clamp(
            2.5rem,
            5vw,
            4.2rem
        );
    line-height: 1.05;
    letter-spacing: -3px;
}

.portfolio-custom-content h2 span {
    display: block;
    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.portfolio-custom-content > p:not(.section-eyebrow) {
    max-width: 600px;
    margin:
        24px
        auto
        0;
    color:
        #8f9caf;
    font-size: 0.94rem;
    line-height: 1.75;
}


/* =========================
   PORTFOLIO RESPONSIVE
   ========================= */

@media (max-width: 900px) {

    .portfolio-page-grid {
        grid-template-columns:
            1fr;
        max-width: 700px;
        margin:
            0
            auto;
    }

}


@media (max-width: 600px) {

    .portfolio-page-hero {
        padding:
            120px
            0
            80px;
    }

    .portfolio-page-hero-content h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4rem
            );
        letter-spacing: -2.5px;
    }

    .portfolio-page-projects,
    .portfolio-custom {
        padding:
            85px
            0;
    }

    .portfolio-project-preview .demo-badge {
        top: 12px;
        left: 12px;
    }

.portfolio-project-details {
        padding:
            24px
            23px
            27px;
    }

    .portfolio-custom-content h2 {
        letter-spacing: -2px;
    }

}
/* =========================================================
   15. PRICING PAGE
   ========================================================= */


/* =========================
   PRICING HERO
   ========================= */

.pricing-page-hero {
    position: relative;

    padding:
        150px
        0
        105px;

    overflow: hidden;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(61, 74, 255, 0.15),
            transparent 36%
        ),
        #040a12;
}

.pricing-page-hero-content {
    max-width: 900px;

    margin:
        0
        auto;

    text-align: center;
}

.pricing-page-hero-content h1 {
    margin:
        12px
        auto
        0;

    color:
        #ffffff;

    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );

    font-weight: 800;

    line-height: 1;

    letter-spacing: -4px;
}

.pricing-page-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.pricing-page-hero-content > p:not(.section-eyebrow) {
    max-width: 680px;

    margin:
        27px
        auto
        0;

    color:
        #9eabba;

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================
   PRICING PACKAGES
   ========================= */

.pricing-page-packages {
    position: relative;

    padding:
        115px
        0;

    background:
        #050b14;
}

.pricing-page-packages .pricing-grid {
    margin-top: 0;
}


/* =========================
   PACKAGE COMPARISON
   ========================= */

.pricing-comparison {
    position: relative;

    padding:
        115px
        0;

    overflow: hidden;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(65, 79, 255, 0.07),
            transparent 38%
        ),
        #040a12;
}


/* =========================
   COMPARISON TABLE
   ========================= */

.comparison-table-wrap {
    overflow-x: auto;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    background:
        rgba(7, 16, 29, 0.92);
}

.comparison-table {
    width: 100%;

    min-width: 720px;

    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding:
        20px
        22px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);

    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead th {
    color:
        #ffffff;

    font-size: 0.76rem;

    font-weight: 800;

    letter-spacing: 0.8px;

    background:
        rgba(255, 255, 255, 0.025);
}

.comparison-table tbody td {
    color:
        #9ca9ba;

    font-size: 0.84rem;
}

.comparison-table tbody td:first-child {
    color:
        #d1d8e2;

    font-weight: 650;
}

.comparison-table .comparison-highlight {
    background:
        rgba(78, 94, 255, 0.07);

    color:
        #ffffff;
}

.comparison-table thead .comparison-highlight {
    color:
        #7692ff;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================
   PRICING FAQ
   ========================= */

.pricing-faq {
    position: relative;

    padding:
        115px
        0;

    background:
        #050b14;
}

.pricing-faq-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.pricing-faq-grid article {
    padding:
        30px
        29px;

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(11, 24, 42, 0.9),
            rgba(6, 14, 25, 0.9)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.pricing-faq-grid article:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(91, 115, 255, 0.32);
}

.pricing-faq-grid h3 {
    margin-bottom: 12px;

    color:
        #ffffff;

    font-size: 1rem;

    line-height: 1.4;
}

.pricing-faq-grid p {
    color:
        #8997aa;

    font-size: 0.84rem;

    line-height: 1.7;
}


/* =========================
   PRICING PAGE RESPONSIVE
   ========================= */

@media (max-width: 800px) {

    .pricing-faq-grid {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 600px) {

    .pricing-page-hero {
        padding:
            120px
            0
            80px;
    }

    .pricing-page-hero-content h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4rem
            );

        letter-spacing: -2.5px;
    }

    .pricing-page-packages,
    .pricing-comparison,
    .pricing-faq {
        padding:
            85px
            0;
    }

    .comparison-table th,
    .comparison-table td {
        padding:
            17px
            18px;
    }

}
/* =========================================================
   16. ABOUT PAGE
   ========================================================= */


/* =========================
   ABOUT HERO
   ========================= */

.about-page-hero {
    position: relative;
    padding: 150px 0 105px;
    overflow: hidden;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(61, 74, 255, 0.15),
            transparent 36%
        ),
        #040a12;
}

.about-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-page-hero-content h1 {
    margin: 12px auto 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );

    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
}

.about-page-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.about-page-hero-content > p:not(.section-eyebrow) {
    max-width: 680px;
    margin: 27px auto 0;

    color: #9eabba;

    font-size: 1rem;
    line-height: 1.75;
}

.about-page-hero-content .btn {
    margin-top: 32px;
}


/* =========================
   OUR APPROACH
   ========================= */

.about-story {
    position: relative;
    padding: 115px 0;

    background: #050b14;
}

.about-story-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;
    align-items: start;
}

.about-story-heading h2 {
    margin-top: 10px;

    color: #ffffff;

    font-size:
        clamp(
            2.4rem,
            4vw,
            3.8rem
        );

    line-height: 1.05;
    letter-spacing: -2.5px;
}

.about-story-heading h2 span {
    display: block;

    color: #6f8cff;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-story-content p {
    color: #929fb0;

    font-size: 0.95rem;
    line-height: 1.8;
}


/* =========================
   CORE PRINCIPLES
   ========================= */

.about-values {
    position: relative;
    padding: 115px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(65, 79, 255, 0.07),
            transparent 40%
        ),
        #040a12;
}

.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.about-values-grid article {
    position: relative;

    min-height: 285px;

    padding:
        31px
        27px;

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(11, 24, 42, 0.94),
            rgba(6, 14, 25, 0.94)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.about-values-grid article:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(91, 115, 255, 0.35);

    box-shadow:
        0
        22px
        50px
        rgba(0, 0, 0, 0.24);
}

.about-value-number {
    position: absolute;

    top: 26px;
    right: 26px;

    color:
        rgba(120, 140, 174, 0.36);

    font-size: 0.7rem;
    font-weight: 800;
}

.about-value-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    border:
        1px solid
        rgba(100, 126, 255, 0.25);

    border-radius: 12px;

    background:
        rgba(75, 94, 255, 0.07);

    color: #718cff;

    font-size: 1.15rem;
}

.about-values-grid h3 {
    margin-bottom: 13px;

    color: #ffffff;

    font-size: 1.08rem;
}

.about-values-grid p {
    color: #8997aa;

    font-size: 0.84rem;
    line-height: 1.7;
}


/* =========================
   PHILOSOPHY
   ========================= */

.about-philosophy {
    position: relative;
    padding: 115px 0;

    background: #050b14;
}

.about-philosophy-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;
    align-items: center;
}

.about-philosophy-content h2 {
    margin-top: 10px;

    color: #ffffff;

    font-size:
        clamp(
            2.4rem,
            4vw,
            3.8rem
        );

    line-height: 1.05;
    letter-spacing: -2.5px;
}

.about-philosophy-content h2 span {
    display: block;

    color: #6f8cff;
}

.about-philosophy-content > p:not(.section-eyebrow) {
    margin-top: 22px;

    color: #8e9bad;

    font-size: 0.94rem;
    line-height: 1.75;
}


/* =========================
   PHILOSOPHY CARD
   ========================= */

.about-philosophy-card {
    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(11, 24, 42, 0.96),
            rgba(6, 14, 25, 0.96)
        );
}

.about-philosophy-item {
    display: grid;

    grid-template-columns:
        55px
        1fr;

    gap: 20px;

    padding:
        25px
        28px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.about-philosophy-item:last-child {
    border-bottom: none;
}

.about-philosophy-item > span {
    color: #668cff;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.about-philosophy-item h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 1rem;
}

.about-philosophy-item p {
    color: #8794a7;

    font-size: 0.82rem;
    line-height: 1.6;
}


/* =========================
   ABOUT RESPONSIVE
   ========================= */

@media (max-width: 950px) {

    .about-story-grid,
    .about-philosophy-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .about-page-hero {
        padding:
            120px
            0
            80px;
    }

    .about-page-hero-content h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4rem
            );

        letter-spacing: -2.5px;
    }

    .about-story,
    .about-values,
    .about-philosophy {
        padding:
            85px
            0;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-philosophy-item {
        grid-template-columns:
            42px
            1fr;

        padding:
            23px
            21px;
    }

}
/* =========================================================
   17. CONTACT PAGE
   ========================================================= */


/* =========================
   CONTACT HERO
   ========================= */

.contact-page-hero {
    position: relative;
    padding: 150px 0 105px;
    overflow: hidden;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(61, 74, 255, 0.15),
            transparent 36%
        ),
        #040a12;
}

.contact-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-page-hero-content h1 {
    margin: 12px auto 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            6vw,
            5.5rem
        );

    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
}

.contact-page-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #1688ff,
            #7557ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.contact-page-hero-content > p:not(.section-eyebrow) {
    max-width: 680px;
    margin: 27px auto 0;

    color: #9eabba;

    font-size: 1rem;
    line-height: 1.75;
}


/* =========================
   PROJECT SECTION
   ========================= */

.contact-project {
    position: relative;
    padding: 115px 0;

    background: #050b14;
}

.contact-project-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 80px;
    align-items: start;
}


/* =========================
   LEFT INFORMATION
   ========================= */

.contact-project-info {
    position: sticky;
    top: 120px;
}

.contact-project-info h2 {
    margin-top: 10px;

    color: #ffffff;

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.6rem
        );

    line-height: 1.05;
    letter-spacing: -2.5px;
}

.contact-project-info h2 span {
    display: block;
    color: #6f8cff;
}

.contact-project-description {
    margin-top: 23px;

    color: #8e9bad;

    font-size: 0.93rem;
    line-height: 1.75;
}

.contact-info-points {
    display: flex;
    flex-direction: column;

    gap: 0;

    margin-top: 38px;
}

.contact-info-point {
    display: grid;

    grid-template-columns:
        45px
        1fr;

    gap: 17px;

    padding:
        22px
        0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.contact-info-point:first-child {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.contact-info-point > span {
    color: #668cff;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.contact-info-point h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 0.95rem;
}

.contact-info-point p {
    color: #7f8da0;

    font-size: 0.8rem;
    line-height: 1.65;
}


/* =========================
   FORM CARD
   ========================= */

.contact-form-card {
    padding:
        40px
        38px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(11, 24, 42, 0.98),
            rgba(6, 14, 25, 0.98)
        );

    box-shadow:
        0
        30px
        70px
        rgba(0, 0, 0, 0.24);
}

.contact-form-heading {
    margin-bottom: 34px;

    padding-bottom: 27px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}

.contact-form-heading > p {
    margin-bottom: 8px;

    color: #668cff;

    font-size: 0.67rem;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.contact-form-heading h2 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 2rem;
    letter-spacing: -1px;
}

.contact-form-heading > span {
    color: #78869a;

    font-size: 0.76rem;
}


/* =========================
   FORM
   ========================= */

.project-form {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label,
.form-features legend {
    color: #d8dee8;

    font-size: 0.78rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 9px;

    outline: none;

    background: #07111e;

    color: #ffffff;

    font: inherit;

    font-size: 0.84rem;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input,
.form-group select {
    min-height: 48px;

    padding:
        0
        14px;
}

.form-group textarea {
    min-height: 120px;

    padding:
        14px;

    resize: vertical;

    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5f6d80;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:
        rgba(101, 128, 255, 0.75);

    background: #081522;

    box-shadow:
        0
        0
        0
        3px
        rgba(76, 99, 255, 0.09);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #07111e;
    color: #ffffff;
}

.form-group small {
    color: #68778b;

    font-size: 0.7rem;
    line-height: 1.5;
}


/* =========================
   FEATURE CHECKBOXES
   ========================= */

.form-features {
    margin: 0;
    padding: 0;

    border: none;
}

.feature-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 2px;
}

.feature-options label {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 45px;

    padding:
        11px
        13px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #9eabba;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.feature-options label:hover {
    border-color:
        rgba(99, 125, 255, 0.35);

    background:
        rgba(82, 101, 255, 0.05);

    color: #ffffff;
}

.feature-options input {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    accent-color: #668cff;
}


/* =========================
   SUBMIT BUTTON
   ========================= */

.contact-submit {
    width: 100%;

    min-height: 52px;

    margin-top: 4px;

    border: none;

    cursor: pointer;

    font-family: inherit;
}

.contact-form-note {
    margin-top: -9px;

    color: #657386;

    font-size: 0.7rem;
    line-height: 1.55;

    text-align: center;
}


/* =========================
   NEXT STEPS
   ========================= */

.contact-next {
    position: relative;

    padding:
        115px
        0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(65, 79, 255, 0.07),
            transparent 40%
        ),
        #040a12;
}

.contact-next-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.contact-next-grid article {
    padding:
        31px
        27px;

    border-top:
        1px solid
        rgba(100, 126, 255, 0.35);

    background:
        linear-gradient(
            180deg,
            rgba(60, 78, 160, 0.06),
            transparent
        );
}

.contact-next-grid strong {
    display: block;

    margin-bottom: 34px;

    color: #627fff;

    font-size: 0.7rem;

    letter-spacing: 1.5px;
}

.contact-next-grid h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 1.05rem;
}

.contact-next-grid p {
    color: #8794a7;

    font-size: 0.82rem;
    line-height: 1.7;
}


/* =========================
   CONTACT RESPONSIVE
   ========================= */

@media (max-width: 950px) {

    .contact-project-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-project-info {
        position: static;
    }

    .contact-next-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .contact-page-hero {
        padding:
            120px
            0
            80px;
    }

    .contact-page-hero-content h1 {
        font-size:
            clamp(
                2.7rem,
                13vw,
                4rem
            );

        letter-spacing: -2.5px;
    }

    .contact-project,
    .contact-next {
        padding:
            85px
            0;
    }

    .contact-form-card {
        padding:
            30px
            21px;

        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .feature-options {
        grid-template-columns: 1fr;
    }

    .contact-next-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   18. LEGAL PAGES
   ========================================================= */

.legal-page-hero {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(76, 79, 255, 0.14),
            transparent 35%
        ),
        #050b14;
}

.legal-page-hero-content {
    max-width: 760px;
}

.legal-page-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
}

.legal-page-hero-content h1 span {
    background: linear-gradient(
        100deg,
        #1688ff,
        #7557ff
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-page-hero-content > p:not(.section-eyebrow):not(.legal-updated) {
    max-width: 650px;
    margin-top: 24px;
    color: #aeb9c9;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-updated {
    margin-top: 22px;
    color: #718096;
    font-size: 0.82rem;
    font-weight: 600;
}


/* LEGAL CONTENT */

.legal-page-section {
    padding: 90px 0 120px;
    background: #050b14;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content section {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-content section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-content h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
}

.legal-content p {
    margin: 0 0 16px;
    color: #9daabc;
    font-size: 0.98rem;
    line-height: 1.85;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: #5d8cff;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.legal-content a:hover {
    color: #8d72ff;
}

.legal-content a:focus-visible {
    outline: 2px solid #5d8cff;
    outline-offset: 4px;
    border-radius: 2px;
}


/* TABLET */

@media (max-width: 900px) {

    .legal-page-hero {
        padding: 110px 0 70px;
    }

    .legal-page-section {
        padding: 75px 0 100px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .legal-page-hero {
        padding: 90px 0 60px;
    }

    .legal-page-hero-content h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
        letter-spacing: -2.5px;
    }

    .legal-page-hero-content > p:not(.section-eyebrow):not(.legal-updated) {
        margin-top: 20px;
        font-size: 0.94rem;
    }

    .legal-page-section {
        padding: 65px 0 85px;
    }

    .legal-content section {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }

    .legal-content p {
        font-size: 0.94rem;
        line-height: 1.8;
    }

}