:root {
    --background: #06182b;
    --background-dark: #04111f;
    --background-light: #081f36;

    --card: #0a223b;
    --card-light: #0d2d4d;

    --blue: #5aaeff;
    --blue-dark: #2784e5;
    --blue-soft: rgba(90, 174, 255, 0.1);

    --white: #ffffff;
    --text: #eef7ff;
    --muted: #9db5ca;

    --border: rgba(111, 181, 255, 0.18);
    --border-hover: rgba(90, 174, 255, 0.5);

    --container: 1220px;
}


/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--background);
    color: var(--text);

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(4, 17, 31, 0.88);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    position: relative;

    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* LOGO */

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo img {
    width: 125px;
}


/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-left: auto;
}

.main-navigation a {
    position: relative;

    padding: 28px 0;

    color: #bfd0df;

    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--white);
}

.main-navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--blue-dark)
        );
}


/* HEADER RIGHT */

.header-right {
    display: flex;
    align-items: center;

    gap: 18px;
}

.language-switcher {
    display: flex;
    align-items: center;

    gap: 8px;
}

.language-switcher a {
    color: #6f8ba4;

    font-size: 12px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: var(--blue);
}


/* BURGER */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 10px;

    border: 0;

    border-radius: 10px;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-button:hover {
    background:
        rgba(90, 174, 255, 0.08);
}

.mobile-menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    border-radius: 3px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}


/* BURGER -> X */

.mobile-menu-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* HERO */

.hero {
    position: relative;

    min-height: 720px;

    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(37, 124, 216, 0.13),
            transparent 37%
        ),
        var(--background);
}

.hero-background {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(90, 174, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(90, 174, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;
}

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.02fr 0.98fr;

    align-items: center;

    gap: 70px;

    padding-top: 80px;
    padding-bottom: 80px;
}


/* LABELS */

.hero-label,
.section-label {
    margin-bottom: 18px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* HERO TEXT */

.hero h1 {
    max-width: 720px;

    margin: 0;

    font-size: clamp(
        52px,
        6vw,
        78px
    );

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;

    color: var(--blue);
}

.hero-description {
    max-width: 600px;

    margin:
        28px
        0
        0;

    color: #b9cddd;

    font-size: 18px;

    line-height: 1.7;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


/* BUTTON */

.button {
    display: inline-flex;

    min-height: 49px;

    padding:
        0
        22px;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.button-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    box-shadow:
        0 12px 35px
        rgba(39, 132, 229, 0.22);
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 42px
        rgba(39, 132, 229, 0.32);
}

.button-secondary {
    color: var(--text);

    border:
        1px solid
        rgba(90, 174, 255, 0.32);

    background:
        rgba(10, 33, 57, 0.48);
}

.button-secondary:hover {
    transform: translateY(-2px);

    border-color:
        rgba(90, 174, 255, 0.7);

    background:
        rgba(15, 48, 80, 0.7);
}


/* HERO FEATURES */

.hero-features {
    display: flex;

    gap: 38px;

    margin-top: 50px;
}

.hero-features div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.hero-features strong {
    color: var(--white);

    font-size: 14px;
}

.hero-features span {
    color: var(--muted);

    font-size: 12px;
}


/* HERO IMAGE */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 520px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(46, 142, 240, 0.3),
            transparent 70%
        );

    filter: blur(35px);

    pointer-events: none;
}

.hero-image {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 650px;

    border:
        1px solid
        rgba(90, 174, 255, 0.2);

    border-radius: 25px;

    object-fit: cover;

    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, 0.42),
        0 0 60px
        rgba(39, 132, 229, 0.12);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.hero-image:hover {
    transform:
        translateY(-5px)
        scale(1.01);

    box-shadow:
        0 42px 95px
        rgba(0, 0, 0, 0.5),
        0 0 75px
        rgba(39, 132, 229, 0.18);
}


/* GENERAL */

h2 {
    margin: 0;

    font-size: clamp(
        36px,
        4vw,
        54px
    );

    line-height: 1.07;

    letter-spacing: -0.045em;
}

h3 {
    letter-spacing: -0.015em;
}

.intro-section,
.services-section,
.terminal-section,
.why-section,
.contact-cta {
    padding:
        110px
        0;
}


/* TEXT LINKS */

.text-link {
    display: inline-flex;

    align-items: center;

    color: var(--blue);

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.text-link:hover {
    color: var(--white);

    transform:
        translateX(3px);
}


/* INTRO / VLADIO */

.intro-section {
    background:
        linear-gradient(
            180deg,
            #081c31,
            #07192c
        );
}

.intro-grid {
    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    gap: 100px;

    align-items: start;
}

.intro-text {
    max-width: 650px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}

.intro-text p:first-child {
    margin-top: 0;
}

.intro-text .text-link {
    margin-top: 12px;
}


/* SECTION HEADING */

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;
}

.section-heading h2 {
    max-width: 760px;
}


/* SOLUTIONS */

.services-section {
    background:
        var(--background-dark);
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 285px;

    overflow: hidden;

    padding: 29px;

    border:
        1px solid
        var(--border);

    border-radius: 19px;

    background:
        linear-gradient(
            155deg,
            #0b2743,
            #07192c
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(61, 156, 255, 0.09);

    filter: blur(20px);

    transition:
        transform 0.3s ease;
}

.service-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-hover);

    box-shadow:
        0 25px 50px
        rgba(0, 0, 0, 0.22);
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-number {
    position: relative;

    z-index: 1;

    margin-bottom: 45px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.1em;
}

.service-card h3 {
    position: relative;

    z-index: 1;

    margin:
        0
        0
        14px;

    font-size: 22px;
}

.service-card p {
    position: relative;

    z-index: 1;

    min-height: 70px;

    margin-bottom: 20px;

    color: var(--muted);

    line-height: 1.6;
}

.service-card .text-link {
    position: relative;

    z-index: 1;
}


/* TERMINAL */

.terminal-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #081c31,
            #07192c
        );
}

.terminal-container {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 90px;
}

.terminal-content p {
    max-width: 600px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;
}

.terminal-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin:
        30px
        0
        35px;
}

.terminal-features span {
    padding:
        14px
        15px;

    border:
        1px solid
        var(--border);

    border-radius: 10px;

    color: #d5e5f2;

    background:
        rgba(5, 20, 35, 0.48);
}


/* TERMINAL IMAGE */

.terminal-preview {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.terminal-image-wrapper {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.terminal-image-glow {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56, 151, 255, 0.3),
            transparent 70%
        );

    filter: blur(35px);

    pointer-events: none;
}

.terminal-real-image {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 430px;

    max-height: 540px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 40px 65px
            rgba(0, 0, 0, 0.5)
        );

    transition:
        transform 0.3s ease;
}

.terminal-real-image:hover {
    transform:
        translateY(-6px)
        scale(1.015);
}


/* TECHNOLOGIES */

.why-section {
    background:
        var(--background-dark);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 20px;
}

.why-grid > div {
    min-height: 215px;

    padding:
        26px
        24px;

    border-top:
        1px solid
        rgba(90, 174, 255, 0.42);

    background:
        linear-gradient(
            180deg,
            rgba(11, 39, 67, 0.2),
            transparent
        );

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.why-grid > div:hover {
    transform:
        translateY(-3px);

    background:
        linear-gradient(
            180deg,
            rgba(11, 39, 67, 0.65),
            transparent
        );
}

.why-grid span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}

.why-grid h3 {
    margin:
        35px
        0
        12px;

    font-size: 21px;
}

.why-grid p {
    margin: 0;

    color: var(--muted);

    line-height: 1.6;
}


/* CTA */

.contact-cta {
    background:
        linear-gradient(
            180deg,
            #081c31,
            #061725
        );
}

.contact-cta-box {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    align-items: center;

    gap: 60px;

    padding: 58px;

    border:
        1px solid
        rgba(90, 174, 255, 0.3);

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #0d3155,
            #071a2e
        );

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.2);
}

.contact-cta-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -170px;

    border-radius: 50%;

    background:
        rgba(66, 159, 255, 0.1);

    filter: blur(15px);
}

.contact-cta-box h2 {
    max-width: 700px;
}

.contact-cta-actions {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
}

.cta-email {
    color: var(--blue);

    font-size: 14px;

    transition: color 0.2s ease;
}

.cta-email:hover {
    color: var(--white);
}


/* FOOTER */

.site-footer {
    padding-top: 70px;

    background: #030e19;

    border-top:
        1px solid
        var(--border);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1.1fr
        0.9fr
        1.2fr;

    gap: 45px;

    padding-bottom: 55px;
}

.footer-brand img {
    width: 130px;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 260px;

    margin:
        8px
        0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-column h3 {
    margin:
        0
        0
        10px;

    color: var(--white);

    font-size: 13px;
}

.footer-column a {
    color: var(--muted);

    font-size: 13px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--blue);

    transform:
        translateX(2px);
}

.footer-column p {
    margin:
        5px
        0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;
}


/* FOOTER BOTTOM */

.footer-bottom {
    min-height: 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        var(--border);

    color: #617e98;

    font-size: 12px;
}

.footer-languages {
    display: flex;

    gap: 12px;
}

.footer-languages a {
    color: #617e98;

    font-weight: 700;

    transition: color 0.2s ease;
}

.footer-languages a:hover,
.footer-languages a.active {
    color: var(--blue);
}


/* 1200 */

@media (max-width: 1200px) {

    .main-navigation {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns:
            1.4fr
            1fr
            1fr
            1fr;
    }

    .footer-column:last-child {
        grid-column:
            span 1;
    }

}


/* TABLET */

@media (max-width: 1000px) {

    .main-navigation {
        gap: 14px;
    }

    .header-right {
        display: none;
    }

    .hero-container {
        gap: 40px;

        grid-template-columns:
            1fr
            0.85fr;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* MOBILE NAVIGATION */

@media (max-width: 850px) {

    .container {
        width:
            min(
                var(--container),
                calc(100% - 32px)
            );
    }

    .mobile-menu-button {
        display: block;
    }

    .header-right {
        display: none;
    }

    .main-navigation {
        display: none;

        position: absolute;

        top: calc(100% + 10px);

        left: 0;
        right: 0;

        z-index: 1001;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        margin: 0;

        padding: 12px;

        border:
            1px solid
            var(--border);

        border-radius: 16px;

        background:
            rgba(5, 20, 35, 0.98);

        box-shadow:
            0 25px 70px
            rgba(0, 0, 0, 0.45);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .main-navigation.open {
        display: flex;
    }

    .main-navigation a {
        padding:
            14px
            15px;

        border-radius: 9px;

        font-size: 14px;
    }

    .main-navigation a:hover,
    .main-navigation a.active {
        background:
            rgba(90, 174, 255, 0.08);
    }

    .main-navigation a.active::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 75px;
        padding-bottom: 75px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-image {
        max-width: 650px;

        border-radius: 21px;
    }

    .hero-glow {
        width: 90%;
        height: 370px;
    }


    /* INTRO */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* TERMINAL */

    .terminal-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* CTA */

    .contact-cta-box {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* SMALL MOBILE */

@media (max-width: 560px) {

    .container {
        width:
            calc(100% - 28px);
    }


    /* HEADER */

    .header-inner {
        min-height: 70px;
    }

    .site-logo img {
        width: 110px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }


    /* HERO */

    .hero-container {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .hero-label,
    .section-label {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 44px;

        line-height: 1;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;

        gap: 16px;

        margin-top: 35px;
    }

    .hero-features div {
        padding-bottom: 14px;

        border-bottom:
            1px solid
            var(--border);
    }

    .hero-visual {
        min-height: 270px;
    }

    .hero-image {
        width: 100%;

        border-radius: 16px;
    }

    .hero-glow {
        width: 100%;
        height: 250px;
    }


    /* SECTIONS */

    .intro-section,
    .services-section,
    .terminal-section,
    .why-section,
    .contact-cta {
        padding:
            75px
            0;
    }

    h2 {
        font-size: 37px;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        margin-bottom: 35px;
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        padding: 25px;
    }

    .service-number {
        margin-bottom: 30px;
    }

    .service-card p {
        min-height: auto;
    }


    /* TERMINAL */

    .terminal-features {
        grid-template-columns: 1fr;
    }

    .terminal-preview {
        min-height: 400px;
    }

    .terminal-real-image {
        max-width: 330px;
    }

    .terminal-image-glow {
        width: 300px;
        height: 300px;
    }


    /* TECHNOLOGIES */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid > div {
        min-height: auto;
    }


    /* CTA */

    .contact-cta-box {
        padding: 30px;

        border-radius: 20px;
    }

    .contact-cta-actions {
        width: 100%;
    }

    .contact-cta-actions .button {
        width: 100%;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        padding:
            22px
            0;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;
    }

}
/* ========================================
   SERVICES PAGE
======================================== */

.services-hero {
    position: relative;

    overflow: hidden;

    padding:
        120px
        0;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(42, 138, 236, 0.18),
            transparent 38%
        ),
        var(--background);
}

.services-hero-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(90, 174, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(90, 174, 255, 0.03) 1px,
            transparent 1px
        );

    background-size:
        38px
        38px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    pointer-events: none;
}

.services-hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 90px;
}

.services-hero-content h1 {
    max-width: 760px;

    margin: 0;

    font-size:
        clamp(
            52px,
            6vw,
            76px
        );

    line-height: 1;

    letter-spacing:
        -0.055em;
}

.services-hero-content p {
    max-width: 650px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;
}

.services-hero-actions {
    display: flex;

    gap: 14px;

    margin-top: 34px;
}


/* INFO */

.services-hero-info {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.services-info-item {
    min-height: 180px;

    padding: 24px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #0b2743,
            #07192c
        );
}

.services-info-item > span {
    display: block;

    margin-bottom: 30px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;
}

.services-info-item strong {
    display: block;

    margin-bottom: 8px;

    font-size: 18px;
}

.services-info-item p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.55;
}


/* CATEGORY */

.services-category {
    padding:
        110px
        0;

    background: #081c31;
}

.services-category-dark {
    background:
        var(--background-dark);
}

.services-category-header {
    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 45px;
}

.services-category-header h2 {
    max-width: 750px;
}

.services-category-header > p {
    max-width: 500px;

    justify-self: end;

    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;
}


/* SERVICE CARDS */

.services-full-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.services-two-grid {
    grid-template-columns:
        repeat(2, 1fr);
}

.service-full-card {
    position: relative;

    overflow: hidden;

    min-height: 330px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        var(--border);

    border-radius: 19px;

    background:
        linear-gradient(
            155deg,
            #0b2743,
            #07192c
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-full-card::after {
    content: "";

    position: absolute;

    top: -130px;
    right: -130px;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        rgba(
            57,
            151,
            247,
            0.08
        );

    filter: blur(10px);

    transition:
        transform
        0.35s ease;
}

.service-full-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-hover);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.22);
}

.service-full-card:hover::after {
    transform:
        scale(1.5);
}

.service-card-top {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    margin-bottom: 48px;
}

.service-category-number {
    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.service-arrow {
    color: #7795af;

    font-size: 18px;
}

.service-full-card h3 {
    position: relative;

    z-index: 2;

    margin:
        0
        0
        15px;

    font-size: 24px;
}

.service-full-card > p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--muted);

    line-height: 1.65;
}

.service-full-footer {
    position: relative;

    z-index: 2;

    margin-top: auto;

    padding-top: 35px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;
}

.service-full-footer strong {
    color: var(--blue);

    font-size: 14px;
}

.service-full-footer a {
    color: #b8ccdc;

    font-size: 12px;

    font-weight: 700;
}

.service-full-footer a:hover {
    color: var(--white);
}


/* FINTECH */

.services-fintech {
    padding:
        110px
        0;

    background: #081c31;
}

.services-fintech-box {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 70px;

    padding: 55px;

    border:
        1px solid
        rgba(
            90,
            174,
            255,
            0.3
        );

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #0d3155,
            #071a2e
        );
}

.services-fintech-box::before {
    content: "";

    position: absolute;

    right: -130px;
    top: -160px;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        rgba(
            60,
            155,
            255,
            0.1
        );

    filter: blur(20px);
}

.services-fintech-content,
.services-fintech-pricing {
    position: relative;

    z-index: 2;
}

.services-fintech-content p {
    max-width: 600px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;
}

.services-fintech-actions {
    margin-top: 28px;
}

.services-fintech-pricing {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.services-fintech-pricing div {
    padding: 19px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        rgba(
            4,
            18,
            32,
            0.35
        );
}

.services-fintech-pricing span {
    display: block;

    margin-bottom: 8px;

    color: var(--muted);

    font-size: 12px;
}

.services-fintech-pricing strong {
    color: var(--white);

    font-size: 16px;
}


/* PROCESS */

.services-process {
    padding:
        110px
        0;

    background:
        var(--background-dark);
}

.services-process h2 {
    max-width: 700px;
}

.services-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 50px;
}

.services-process-grid > div {
    min-height: 220px;

    padding: 27px;

    border-top:
        1px solid
        rgba(
            90,
            174,
            255,
            0.42
        );

    background:
        linear-gradient(
            180deg,
            rgba(
                11,
                39,
                67,
                0.22
            ),
            transparent
        );
}

.services-process-grid span {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;
}

.services-process-grid h3 {
    margin:
        38px
        0
        12px;
}

.services-process-grid p {
    margin: 0;

    color: var(--muted);

    line-height: 1.6;
}


/* SERVICES RESPONSIVE */

@media (max-width: 900px) {

    .services-hero-container,
    .services-category-header,
    .services-fintech-box {
        grid-template-columns:
            1fr;
    }

    .services-category-header {
        gap: 25px;
    }

    .services-category-header > p {
        justify-self: start;
    }

    .services-full-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .services-process-grid {
        grid-template-columns:
            1fr
            1fr;
    }

}


@media (max-width: 560px) {

    .services-hero {
        padding:
            75px
            0;
    }

    .services-hero-content h1 {
        font-size: 44px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .button {
        width: 100%;
    }

    .services-hero-info {
        grid-template-columns: 1fr;
    }

    .services-info-item {
        min-height: auto;
    }

    .services-category,
    .services-fintech,
    .services-process {
        padding:
            75px
            0;
    }

    .services-full-grid,
    .services-two-grid,
    .services-process-grid,
    .services-fintech-pricing {
        grid-template-columns: 1fr;
    }

    .service-full-card {
        min-height: 300px;

        padding: 25px;
    }

    .services-fintech-box {
        padding: 30px;
    }

    .service-full-footer {
        align-items: flex-start;

        flex-direction: column;
    }

}