/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ROOT */

:root {
    --bg: #070b14;
    --bg-light: #101827;
    --text: #ffffff;
    --text-light: #9ca3af;
    --primary: #3b82f6;
    --border: rgba(255,255,255,0.08);
}

/* HTML */

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

/* BODY */

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
}

/* CONTAINER */

.container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(7,11,20,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}

.header-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 23px;
    font-weight: 600;
    color: var(--text);
}

.logo-job {
    font-size: 17px;
    color: var(--text-light);
}

/* NAV */

.nav {
    display: flex;
    gap: 38px;
}

.nav a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
    font-weight: 500;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.hero-subtitle {
    color: var(--primary);
    letter-spacing: 5px;
    font-size: 16px;
    font-weight: 600;
}

.hero h1 {
    font-size: 88px;
    line-height: 1.05;
    margin-top: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.hero h1 span {
    color: var(--primary);
}

.hero h2 {
    font-size: 58px;
    font-weight: 500;
    margin-top: 8px;
}

.hero-main-text {
    margin-top: 28px;
    font-size: 34px;
    color: #ffffff;
    font-weight: 300;
}

.hero-line {
    width: 70px;
    height: 3px;
    background: var(--primary);
    margin-top: 35px;
    border-radius: 20px;
}

.hero-description {
    margin-top: 35px;
    color: var(--text-light);
    font-size: 24px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 14px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-button:hover {
    background: #ffffff;
    color: #070b14;
}

.hero-button-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-button-outline:hover {
    border-color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 0 30px rgba(59,130,246,0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(59,130,246,0.45);
}

.btn-secondary {
    border: 1px solid rgba(59,130,246,0.45);
    color: var(--primary);
    background: transparent;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #070b14;
    border-color: #ffffff;
}

/* HERO IMAGE */

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 360px;

    background: radial-gradient(
            ellipse,
            rgba(59,130,246,0.82) 0%,
            rgba(59,130,246,0.48) 30%,
            rgba(59,130,246,0.22) 58%,
            transparent 80%
    );

    filter: blur(42px);
    z-index: 1;
    top: 39%;
    left: 66%;
    transform: translate(-50%, -50%);
}

/* REFLECTION */

.hero-image::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80px;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0.10),
            transparent
    );

    filter: blur(30px);
    opacity: 0.35;
    border-radius: 50%;
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 155%;
    max-width: none;
    display: block;
}

/* SERVICES */

.services {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(
            180deg,
            rgba(10,14,24,0) 0%,
            rgba(15,22,36,0.65) 20%,
            rgba(15,22,36,0.65) 80%,
            rgba(10,14,24,0) 100%
    );
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: var(--primary);
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 54px;
    margin-top: 18px;
    font-weight: 700;
}

.section-line {
    width: 70px;
    height: 3px;
    background: var(--primary);
    margin: 28px auto 0;
    border-radius: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-box {
    background: linear-gradient(
            180deg,
            rgba(18,25,40,0.95) 0%,
            rgba(10,14,24,1) 100%
    );
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 55px 40px;
    text-align: center;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.04),
            0 0 50px rgba(0,0,0,0.35);
}

.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at top,
            rgba(59,130,246,0.12),
            transparent 70%
    );
    opacity: 1;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: rgba(59,130,246,0.35);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.05),
            0 0 50px rgba(59,130,246,0.12);
}

.service-icon {
    font-size: 54px;
    margin-bottom: 28px;
    color: var(--primary);
}

.service-box h3 {
    font-size: 34px;
    margin-bottom: 24px;
}

.service-box p {
    color: var(--text-light);
    font-size: 20px;
    line-height: 1.8;
}

/* ABOUT */

.about {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(
            180deg,
            rgba(15,22,36,0) 0%,
            rgba(15,22,36,0.65) 20%,
            rgba(15,22,36,0.65) 80%,
            rgba(15,22,36,0) 100%
    );
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 52px;
    margin-top: 10px;
    margin-bottom: 22px;
    white-space: nowrap;
}

.about-content p {
    color: var(--text-light);
    font-size: 21px;
    line-height: 1.9;
}

.about-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-item {
    position: relative;
    padding-left: 36px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
}

.about-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #070b14;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59,130,246,0.25);
}

.about-image {
    display: flex;
    justify-content: flex-end;
    padding-left: 100px;
}

.about-image-box {
    width: 100%;
    max-width: 520px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
            ellipse at top,
            rgba(255,255,255,0.30) 0%,
            rgba(255,255,255,0.12) 35%,
            rgba(255,255,255,0.04) 60%,
            transparent 80%
    );
    filter: blur(55px);
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* LOGO */

.about-image-box img {
    width: 340px;
    position: relative;
    z-index: 2;

    filter:
            drop-shadow(0 0 25px rgba(59,130,246,0.20))
            drop-shadow(0 0 40px rgba(59,130,246,0.10));
}

/* CONTACT */

.contact {
    padding: 60px 0 60px;
    position: relative;
    background: linear-gradient(
            180deg,
            rgba(15,22,36,0) 0%,
            rgba(15,22,36,0.55) 20%,
            rgba(15,22,36,0.55) 80%,
            rgba(15,22,36,0) 100%
    );
}

.contact-box {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 60px;
    border-radius: 30px;
    background: linear-gradient(
            180deg,
            rgba(18,25,40,0.92) 0%,
            rgba(10,14,24,0.98) 100%
    );
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.03),
            0 0 60px rgba(0,0,0,0.35);
}

.contact-box::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(
            ellipse,
            rgba(59,130,246,0.16),
            transparent 70%
    );
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
}

.contact-box h2 {
    font-size: 54px;
    margin-top: 16px;
    margin-bottom: 22px;
    white-space: nowrap;
}

.contact-box p {
    color: var(--text-light);
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.contact-button {
    padding: 18px 34px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-button:hover {
    background: white;
    color: #070b14;
}

.contact-phone {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.contact-socials {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-top: 55px;
}

.contact-socials a {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: 0.3s;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.03),
            0 0 25px rgba(0,0,0,0.20);
}

.contact-socials a:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow:
            0 0 25px rgba(59,130,246,0.35);
}

/* FOOTER */

.footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(5,8,15,0.85);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
}

.footer-right {
    display: flex;
    gap: 28px;
}

.footer-right a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-right a:hover {
    color: var(--primary);
}

.footer-flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    margin-left: 8px;
    border-radius: 3px;
    background: linear-gradient(
            to bottom,
            #000 33%,
            #dd0000 33%,
            #dd0000 66%,
            #ffce00 66%
    );
    position: relative;
    top: 0px;
}

/* LEGAL PAGE */

.legal-page {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(
            180deg,
            rgba(15,22,36,0) 0%,
            rgba(15,22,36,0.55) 20%,
            rgba(15,22,36,0.55) 80%,
            rgba(15,22,36,0) 100%
    );
}

.legal-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 70px 60px;
    border-radius: 30px;
    background: linear-gradient(
            180deg,
            rgba(18,25,40,0.92) 0%,
            rgba(10,14,24,0.98) 100%
    );
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.03),
            0 0 60px rgba(0,0,0,0.35);
}

.legal-box::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(
            ellipse,
            rgba(59,130,246,0.16),
            transparent 70%
    );
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
}

.legal-box h1 {
    font-size: 60px;
    margin-top: 16px;
    margin-bottom: 45px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-light);
    font-size: 19px;
    line-height: 1.9;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    color: #ffffff;
}

/* CONTACT FORM */

.contact-form-section {
    padding: 60px 0 100px;
    position: relative;
}

.contact-form-header {
    margin-bottom: 45px;
}

.contact-form-header h2 {
    font-size: 54px;
    margin-top: 14px;
}

.contact-form {
    max-width: 1000px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(59,130,246,0.45);
    box-shadow: 0 0 20px rgba(59,130,246,0.12);
}

.form-group textarea {
    min-height: 170px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    color: #ffffff;
}

.contact-submit {
    margin-top: 35px;
    padding: 18px 34px;
    border: none;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit:hover {
    background: #ffffff;
    color: #070b14;
}

.form-success {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    color: #4ade80;
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.form-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.25);
    color: #f87171;
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.required {
    color: var(--primary);
}

.honeypot {
    display: none;
}

/* COOKIE */

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.cookie-content {
    width: 100%;
    max-width: 760px;
    background: rgba(10,14,24,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.cookie-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.cookie-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 14px;
    margin-top: 26px;
}

.cookie-btn {
    flex: 1;
    border: none;
    border-radius: 14px;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-accept {
    background: var(--primary);
    color: #ffffff;
}

.cookie-accept:hover {
    background: #ffffff;
    color: #070b14;
}

.cookie-decline {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
}

.cookie-decline:hover {
    border-color: #ffffff;
}

@media (max-width: 768px) {

    .container {
        width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .header {
        padding: 18px 0;
    }

    .header-container {
        gap: 20px;
    }

    .logo img {
        width: 46px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-job {
        font-size: 13px;
    }

    .nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 110px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 34px;
    }

    .hero-button {
        width: 100%;
    }

    .hero-logo-bg {
        width: 520px;
        right: -180px;
        opacity: 0.14;
    }

    .hero-light {
        width: 420px;
        height: 420px;
        right: -140px;
        top: -140px;
        opacity: 0.7;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-image img {
        width: 100%;
        max-width: 240px;
        height: auto;
        opacity: 0.9;
    }

    .hero::before {
        width: 340px;
        height: 340px;
        right: 50%;
        transform: translateX(50%);
        top: 240px;
        opacity: 0.5;
    }



    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 70px;
    }

    .hero-image::before {
        width: 320px;
        height: 220px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: blur(35px);
    }

    .hero-image::after {
        display: none;
    }

    .hero-image img {
        width: 100%;
        max-width: 260px !important;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .about {
        padding: 80px 0;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 24px;
        white-space: normal;
        word-break: break-word;
    }

    .about-content p {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 1.8;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 28px;
    }

    .about-item {
        font-size: 15px;
        padding: 12px 16px;
        line-height: 1.4;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
    }

    .about-image-box {
        width: 100%;
        padding: 40px;
    }

    .about-image-box img {
        width: 100%;
        max-width: 280px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 28px;
    }

    .about-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        line-height: 1.4;
        padding: 10px 30px;
    }

    .about-item::before {
        flex-shrink: 0;
        margin-top: 0;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-image-box {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 30px;
    }

    .about-image-box img {
        width: 100%;
        max-width: 260px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .about-image-box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px;
    }

    .about-image-box img {
        width: 100%;
        max-width: 260px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-image-box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px 0;
        text-align: center;
    }

    .about-image-box img {
        width: 100%;
        max-width: 260px;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        padding-left: 0;
    }

    .about-image-box {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0 auto;
    }

    .about-image-box img {
        width: 220px;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .about-image-box {
        padding: 0;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -30px;
        margin-bottom: -100px;
        padding-left: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        padding: 28px;
    }

    .service-box h3 {
        font-size: 22px;
    }

    .service-box p {
        font-size: 15px;
    }

    .service-list li {
        font-size: 15px;
    }

    .contact-box {
        padding: 34px 28px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-actions {
        justify-content: center;
    }

    .contact-form-section {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .contact-form-header h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .contact-content h2,
    .contact-form-header h1 {
        font-size: 34px;
        line-height: 1.2;
        word-break: break-word;
        white-space: normal;
    }

    .contact-content,
    .contact-form-header {
        width: 100%;
        max-width: 100%;
    }

    .contact-content h2,
    .contact-form-header h1 {
        width: 100%;
        max-width: 100%;
        font-size: 32px;
        line-height: 1.25;
        white-space: normal !important;
        overflow: visible;
        text-overflow: unset;
        word-break: break-word;
    }

    .contact-box,
    .contact-content,
    .contact-form-header {
        overflow: visible;
    }

    .contact-box {
        padding: 40px 24px;
        overflow: visible;
    }

    .contact-box h2 {
        font-size: 32px;
        line-height: 1.25;
        white-space: normal;
        word-break: break-word;
        overflow: visible;
        text-overflow: unset;
        max-width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 15px;
    }

    .form-group textarea {
        min-height: 180px;
    }

    .checkbox-group {
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .cookie-content {
        padding: 24px;
        border-radius: 22px;
    }

    .cookie-text h3 {
        font-size: 20px;
    }

    .cookie-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .header {
        padding: 12px 0;
    }

    .header-container {
        height: auto;
        gap: 20px;
    }

    .logo {
        gap: 14px;
    }

    .logo img {
        width: 62px;
        height: auto;
    }

    .logo-name {
        font-size: 22px;
        font-weight: 600;
    }

    .logo-job {
        font-size: 15px;
    }

    .nav {
        display: none;
    }

}

@media (max-width: 1100px) {

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 64px;
        white-space: normal;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-image img {
        width: 100%;
        max-width: 520px;
        height: auto;
    }

    .hero-image::before {
        width: 520px;
        height: 260px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        white-space: normal;
    }

    .about-image {
        justify-content: center;
        padding-left: 0;
    }

    .about-image-box {
        max-width: 100%;
        height: auto;
    }

    .about-image-box img {
        width: 280px;
    }

}

@media (min-width: 1101px) and (max-width: 1700px) {
    .hero-image {
        margin-right: 100px;
    }
    .about-image {
        display: flex;
        justify-content: flex-end;
        padding-left: 50px;
    }
    .about-image-box img {
        width: 270px;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.20)) drop-shadow(0 0 40px rgba(59, 130, 246, 0.10));
    }
}

@media (min-width: 1101px) and (max-width: 1270px) {
    .about-image-box img {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1101px) {
    .hero-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
    }

    .hero-buttons {
        display: flex;
        gap: 25px;
        margin-top: 50px;
        justify-content: center;
    }
}

@media (max-width: 1100px) {

    .contact-box h2 {
        white-space: normal;
        font-size: 42px;
        line-height: 1.2;
    }

}

@media (max-width: 999px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-box {
        padding: 38px 30px;
    }

    .service-box h3 {
        font-size: 28px;
    }

    .service-box p {
        font-size: 17px;
        line-height: 1.7;
    }

}

/* MOBILE NAV */

.mobile-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 18px;
    display: none;
    align-items: center;
    justify-content: space-around;
    padding: 12px 8px;
    border-radius: 20px;
    background: linear-gradient(
            180deg,
            rgba(22,30,48,0.96) 0%,
            rgba(10,14,24,0.96) 100%
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
            0 10px 40px rgba(0,0,0,0.28);
    z-index: 9999;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.mobile-nav-item span {
    font-size: 19px;
    display: none;
}

.mobile-nav-item span {

}

.mobile-nav-item,
.mobile-nav-item:hover,
.mobile-nav-item:focus,
.mobile-nav-item:active,
.mobile-nav-item:visited {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
}

.mobile-nav-item img {
    width: 35px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {

    .mobile-nav {
        display: flex;
    }

}

@media (max-width: 768px) {

    .footer {
        padding-bottom: 120px;
    }

}