/* =========================================
   GLOBAL MARKETING
   PREMIUM DARK DESIGN
   BLUE - VIOLET - PINK
========================================= */

:root {

    --bg: #070707;

    --bg-soft: #0d0d0f;

    --text: #f5f5f5;

    --text-soft: #a5a5ad;

    --border: rgba(255, 255, 255, 0.12);

    --gradient: linear-gradient(
        90deg,
        #3b82f6 0%,
        #7c3aed 50%,
        #ec4899 100%
    );

    --max-width: 1280px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--bg);

    color: var(--text);

    font-family: "Montserrat", sans-serif;

    overflow-x: hidden;
}


a {

    color: inherit;

    text-decoration: none;
}


button {

    font-family: inherit;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    padding: 25px 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 100;
}


.logo img {

    width: 155px;

    display: block;
}


.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;

    list-style: none;
}


.nav-links a {

    position: relative;

    font-size: 13px;

    font-weight: 500;

    color: #d6d6d6;

    transition: 0.3s ease;
}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 1px;

    background: var(--gradient);

    transition: 0.3s ease;
}


.nav-links a:hover {

    color: white;
}


.nav-links a:hover::after {

    width: 100%;
}


.nav-button {

    padding: 13px 22px;

    border: 1px solid var(--border);

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}


.nav-button:hover {

    background: white;

    color: black;

    transform: translateY(-2px);
}


/* =========================================
   MOBILE BUTTON
========================================= */

.menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    z-index: 102;
}


.menu-toggle span {

    width: 18px;

    height: 1px;

    background: white;

    transition: 0.3s 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);
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {

    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 140px 8% 100px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 40%,
            rgba(124, 58, 237, 0.13),
            transparent 30%
        ),

        radial-gradient(
            circle at 60% 65%,
            rgba(236, 72, 153, 0.07),
            transparent 28%
        ),

        var(--bg);
}


.hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -250px;

    top: 100px;

    border:
        1px solid
        rgba(124, 58, 237, 0.16);

    border-radius: 50%;
}


.hero::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -150px;

    top: 200px;

    border:
        1px solid
        rgba(59, 130, 246, 0.12);

    border-radius: 50%;
}


.hero-content {

    position: relative;

    max-width: 1050px;

    z-index: 2;
}


.hero-small-text {

    margin-bottom: 25px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 4px;

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    animation:
        fadeUp 1s ease forwards;
}


.hero h1 {

    max-width: 1050px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(50px, 7vw, 105px);

    line-height: 0.94;

    letter-spacing: -5px;

    font-weight: 600;

    animation:
        fadeUp 1s ease 0.15s forwards;

    opacity: 0;
}


.hero h1 span {

    display: block;

    margin-top: 10px;

    color: transparent;

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;
}


.hero-description {

    max-width: 620px;

    margin-top: 35px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-soft);

    animation:
        fadeUp 1s ease 0.3s forwards;

    opacity: 0;
}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 38px;

    animation:
        fadeUp 1s ease 0.45s forwards;

    opacity: 0;
}


/* =========================================
   BUTTONS
========================================= */

.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 25px;

    background: var(--gradient);

    color: white;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}


.primary-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 45px
        rgba(124, 58, 237, 0.25);
}


.secondary-button {

    padding: 15px 22px;

    border:
        1px solid
        var(--border);

    border-radius: 40px;

    color: #ddd;

    font-size: 13px;

    font-weight: 500;

    transition: 0.3s ease;
}


.secondary-button:hover {

    background: white;

    color: black;

    transform:
        translateY(-4px);
}


/* =========================================
   HERO DECORATION
========================================= */

.hero-decoration {

    position: absolute;

    right: 5%;

    bottom: 80px;

    writing-mode:
        vertical-rl;

    font-size: 9px;

    letter-spacing: 5px;

    color:
        rgba(255, 255, 255, 0.3);
}


/* =========================================
   SCROLL
========================================= */

.scroll-down {

    position: absolute;

    left: 8%;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    letter-spacing: 3px;

    color:
        rgba(255, 255, 255, 0.4);
}


.scroll-line {

    width: 60px;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.3);

    position: relative;
}


.scroll-line::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 20px;

    height: 1px;

    background: var(--gradient);

    animation:
        scrollLine 2s infinite;
}


/* =========================================
   ABOUT
========================================= */

.about {

    max-width:
        var(--max-width);

    margin: auto;

    padding:
        150px 7%;

    border-top:
        1px solid
        var(--border);
}


.section-label {

    margin-bottom: 25px;

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 600;

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.about h2,
.services h2,
.process h2,
.contact h2 {

    max-width: 1050px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(40px, 5.5vw, 78px);

    line-height: 1;

    letter-spacing: -3px;
}


.about h2 span,
.services h2 span,
.process h2 span,
.contact h2 span {

    display: block;

    margin-top: 8px;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.55);
}


.about > p:last-child {

    max-width: 720px;

    margin-top: 45px;

    margin-left: auto;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   SERVICES
========================================= */

.services {

    padding:
        140px 7%;

    background:
        var(--bg-soft);

    border-top:
        1px solid
        var(--border);
}


.services-header {

    max-width:
        var(--max-width);

    margin: auto;
}


.services-list {

    max-width:
        var(--max-width);

    margin:
        80px auto 0;
}


.service-item {

    display: grid;

    grid-template-columns:
        70px 1fr 60px;

    align-items: center;

    gap: 30px;

    padding:
        35px 10px;

    border-top:
        1px solid
        var(--border);

    transition:
        0.4s ease;

    position: relative;
}


.service-item:last-child {

    border-bottom:
        1px solid
        var(--border);
}


.service-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(59, 130, 246, 0.05),
            rgba(124, 58, 237, 0.05),
            rgba(236, 72, 153, 0.05)
        );

    transition:
        0.4s ease;

    z-index: 0;
}


.service-item:hover::before {

    width: 100%;
}


.service-item > * {

    position: relative;

    z-index: 1;
}


.service-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    font-size: 18px;

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    transition:
        0.4s ease;
}


.service-item:hover .service-icon {

    background:
        var(--gradient);

    color: white;

    -webkit-text-fill-color: white;

    border-color:
        transparent;

    transform:
        rotate(20deg);
}


.service-item h3 {

    margin-bottom: 10px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 24px;

    font-weight: 500;
}


.service-item p {

    max-width: 700px;

    color:
        var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}


.service-arrow {

    width: 45px;

    height: 45px;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        0.4s ease;

    font-size: 18px;

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.service-item:hover .service-arrow {

    background: white;

    color: black;

    -webkit-text-fill-color: black;

    transform:
        rotate(45deg);
}


/* =========================================
   PROCESS
========================================= */

.process {

    padding:
        150px 7%;

    border-top:
        1px solid
        var(--border);
}


.process > .section-label,
.process > h2 {

    max-width:
        var(--max-width);

    margin-left: auto;

    margin-right: auto;
}


.process-grid {

    max-width:
        var(--max-width);

    margin:
        90px auto 0;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background:
        var(--border);
}


.process-item {

    padding:
        40px 30px;

    background:
        var(--bg);

    min-height: 280px;

    transition:
        0.4s ease;
}


.process-item:hover {

    background:
        #111116;

    transform:
        translateY(-8px);
}


.process-item > span {

    display: block;

    margin-bottom: 50px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 14px;

    background:
        var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.process-item h3 {

    margin-bottom: 18px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 20px;
}


.process-item p {

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   CONTACT
========================================= */

.contact {

    padding:
        160px 7%;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(124, 58, 237, 0.10),
            transparent 35%
        );

    border-top:
        1px solid
        var(--border);
}


.contact-container {

    max-width:
        var(--max-width);

    margin: auto;

    text-align: center;
}


.contact-label {

    text-align: center;
}


.contact h2 {

    margin: auto;

    max-width: 1000px;
}


.contact-description {

    max-width: 650px;

    margin:
        40px auto 0;

    color:
        var(--text-soft);

    font-size: 15px;

    line-height: 1.8;
}


.contact-button {

    display: inline-flex;

    margin-top: 40px;

    padding:
        17px 28px;

    background:
        var(--gradient);

    color: white;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 600;

    transition:
        0.3s ease;
}


.contact-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 45px
        rgba(124, 58, 237, 0.25);
}


.contact-info {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    max-width: 750px;

    margin:
        90px auto 0;

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);
}


.contact-card {

    padding: 30px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    transition:
        0.3s ease;
}


.contact-card:first-child {

    border-right:
        1px solid
        var(--border);
}


.contact-card:hover {

    background:
        rgba(255, 255, 255, 0.03);
}


.contact-card-label {

    font-size: 10px;

    letter-spacing: 3px;

    background:
        var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.contact-card strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;

    font-weight: 500;
}


/* =========================================
   FOOTER
========================================= */

footer {

    padding:
        45px 7% 30px;

    border-top:
        1px solid
        var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.footer-logo img {

    width: 135px;

    display: block;
}


.copyright {

    color:
        rgba(255, 255, 255, 0.4);

    font-size: 11px;
}


/* =========================================
   SCROLL ANIMATION
========================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   KEYFRAMES
========================================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(30px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes scrollLine {

    0% {

        transform:
            translateX(0);

        opacity: 0;
    }

    30% {

        opacity: 1;
    }

    70% {

        opacity: 1;
    }

    100% {

        transform:
            translateX(40px);

        opacity: 0;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {


    .nav-links {

        gap: 20px;
    }


    .nav-button {

        display: none;
    }


    .hero {

        padding-left: 6%;

        padding-right: 6%;
    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .about,
    .services,
    .process,
    .contact {

        padding-left: 6%;

        padding-right: 6%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {


    .navbar {

        padding:
            20px 6%;
    }


    .logo img {

        width: 125px;
    }


    .nav-links,
    .nav-button {

        display: none;
    }


    .menu-toggle {

        display: flex;
    }


    .mobile-menu {

        position: fixed;

        top: 0;

        left: 0;

        width: 100%;

        height: 100vh;

        background:
            #070707;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 28px;

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-20px);

        transition:
            0.4s ease;

        z-index: 101;
    }


    .mobile-menu.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .mobile-menu > a {

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size: 25px;

        font-weight: 500;
    }


    .mobile-menu > a:hover {

        background:
            var(--gradient);

        -webkit-background-clip: text;

        background-clip: text;

        color: transparent;
    }


    .mobile-contact-button {

        margin-top: 15px;

        padding:
            14px 22px;

        border:
            1px solid
            var(--border);

        border-radius: 30px;

        font-size: 13px !important;
    }


    .hero {

        min-height:
            100svh;

        padding:
            130px 6% 90px;
    }


    .hero h1 {

        font-size:
            clamp(43px, 13vw, 70px);

        letter-spacing:
            -3px;
    }


    .hero-description {

        font-size: 14px;

        line-height: 1.7;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .primary-button,
    .secondary-button {

        width: 100%;

        text-align: center;
    }


    .scroll-down {

        left: 6%;

        bottom: 25px;
    }


    .hero-decoration {

        display: none;
    }


    .about,
    .services,
    .process,
    .contact {

        padding-top: 100px;

        padding-bottom: 100px;
    }


    .about h2,
    .services h2,
    .process h2,
    .contact h2 {

        font-size:
            clamp(37px, 10vw, 55px);

        letter-spacing:
            -2px;
    }


    .about > p:last-child {

        margin-top: 30px;

        font-size: 14px;
    }


    .services-list {

        margin-top: 55px;
    }


    .service-item {

        grid-template-columns:
            45px 1fr 35px;

        gap: 15px;

        padding:
            28px 0;
    }


    .service-icon {

        width: 38px;

        height: 38px;

        font-size: 14px;
    }


    .service-item h3 {

        font-size: 18px;
    }


    .service-item p {

        font-size: 12px;

        line-height: 1.6;
    }


    .service-arrow {

        width: 35px;

        height: 35px;

        font-size: 14px;
    }


    .process-grid {

        grid-template-columns:
            1fr;

        margin-top: 55px;
    }


    .process-item {

        min-height:
            auto;

        padding:
            30px 25px;
    }


    .process-item > span {

        margin-bottom:
            35px;
    }


    .contact-description {

        font-size: 13px;

        margin-top: 30px;
    }


    .contact-info {

        grid-template-columns:
            1fr;

        margin-top:
            60px;
    }


    .contact-card:first-child {

        border-right: none;

        border-bottom:
            1px solid
            var(--border);
    }


    .contact-card {

        padding:
            25px 10px;
    }


    footer {

        padding:
            35px 6% 25px;

        flex-direction:
            column;

        gap: 25px;

        text-align:
            center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {


    .hero h1 {

        font-size:
            40px;
    }


    .about h2,
    .services h2,
    .process h2,
    .contact h2 {

        font-size:
            35px;
    }


    .service-item {

        grid-template-columns:
            35px 1fr 30px;
    }


    .service-icon {

        width: 32px;

        height: 32px;
    }


    .service-arrow {

        width: 30px;

        height: 30px;
    }

}