@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic);



* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #0f172a;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: var(--font-size);
}
body {
    line-height: 1;
    scrollbar-gutter: stable;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
}
input,
textarea {
    width: 100%;
}
label {
    display: inline-block;
}
button,
select,
option {
    cursor: pointer;
}
a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

main {
    overflow-x: hidden;
}





.c-db53d39f {
    background: #1e293b;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    color: #f1f5f9;
}

.c-33ce3c77 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-c7c51b40 {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    position: relative;
    z-index: 9999;
}

.c-790c9dc7 {
    margin-right: 10px;
    color: #0ea5e9;
}


.c-c74e450d {
    display: flex;
    align-items: center;
}

.c-d0b8e766 {
    display: flex;
    margin-right: 48px;
}

.c-d4fd030f {
    margin-left: 30px;
    position: relative;
}

.c-6e8dc8a6 {
    display: flex;
    align-items: center;
    padding: 10px;
    transition: 150ms ease-in-out;
}

.c-6e8dc8a6:hover {
    color: #0ea5e9;
}

.c-6e8dc8a6 i {
    margin-left: 10px;
}


.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 300ms ease-in-out;
}

.c-d4fd030f:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-item {
    padding: 10px;
    border-radius: 6px;
    transition: 150ms ease-in-out;
    white-space: nowrap;
}

.header__dropdown-item:hover {
    background: #334155;
    color: #0ea5e9;
}


.header__search {
    display: flex;
    align-items: center;
    background: #334155;
    border-radius: 24px;
    padding: 10px;
}

.header__search-icon {
    margin-right: 10px;
    color: #cbd5e1;
}

.header__search-input {
    background: none;
    border: none;
    outline: none;
    color: #f1f5f9;
}

.header__search-input::placeholder {
    color: #cbd5e1;
}
.c-8dcde78d {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.c-78922240 {
    width: 24px;
    height: 2px;
    background: #f1f5f9;
    margin: 3px 0;
    transition: 150ms ease-in-out;
    border-radius: 2px;
}

.header__burger--active .c-78922240:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger--active .c-78922240:nth-child(2) {
    opacity: 0;
}

.header__burger--active .c-78922240:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.c-e64063d0 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 30px;
    transform: translateX(-100%);
    transition: 300ms ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.header__mobile-menu--active {
    transform: translateX(0);
}

.c-3271ac84 {
    width: 90%;
    max-width: 300px;
}

.c-52d84eb0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f1f5f9;
    font-size: 19px;
    font-weight: 600;
    padding: 30px;
    border-radius: 18px;
    transition: 150ms ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    background: #1e293b;
    margin-bottom: 10px;
}

.header__mobile-menu--active .c-52d84eb0 {
    opacity: 1;
    transform: translateY(0);
}

.c-52d84eb0:nth-child(1) {
    transition-delay: 0.1s;
}
.c-52d84eb0:nth-child(2) {
    transition-delay: 0.2s;
}
.c-52d84eb0:nth-child(3) {
    transition-delay: 0.3s;
}
.c-52d84eb0:nth-child(4) {
    transition-delay: 0.4s;
}

.c-52d84eb0:hover {
    color: #0ea5e9;
    background: #0ea5e9;
    color: #0f172a;
    transform: scale(1.02);
}

.header__mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: 300ms ease-in-out;
    background: #334155;
    border-radius: 12px;
    margin-top: 10px;
}

.header__mobile-submenu--active {
    max-height: 300px;
}

.header__mobile-submenu-item {
    padding: 20px 30px;
    color: #cbd5e1;
    border-bottom: 1px solid #1e293b;
    transition: 150ms ease-in-out;
}

.header__mobile-submenu-item:last-child {
    border-bottom: none;
}

.header__mobile-submenu-item:hover {
    background: #1e293b;
    color: #0ea5e9;
}

.header__mobile-search {
    width: 90%;
    max-width: 300px;
    display: flex;
    align-items: center;
    background: #1e293b;
    border-radius: 24px;
    padding: 20px;
    margin-top: 30px;
}

.header__mobile-search-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 4px;
    color: #f1f5f9;
    width: 100%;
}

.c-27fea1d6 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease-in-out;
    z-index: 999;
}

.header__overlay--active {
    opacity: 1;
    visibility: visible;
}




.c-3168dee6 {
    background-color: #1e293b;
    padding: 48px 0;
    border-top: 1px solid #334155;
}

.c-2ed33694 {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-d0e2ccaf {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.c-f5339266 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-e204f2fc {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1f5f9;
    font-weight: 600;
    font-size: 26px;
}

.c-e204f2fc i {
    color: #0ea5e9;
    font-size: 34px;
}

.c-fc513415 {
    color: #cbd5e1;
    line-height: 1.6;
}

.c-753c97ea {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.c-5e741189 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.c-4bc2832c {
    color: #0ea5e9;
    width: 20px;
    text-align: center;
}

.c-fa07ae11 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.c-c164ac14 {
    display: flex;
    flex-direction: column;
}

.c-91219b2e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #334155;
}

.c-9bb96000 {
    color: #f1f5f9;
    font-weight: 600;
    font-size: 19px;
}

.c-ed056998 {
    color: #0ea5e9;
    transition: transform 300ms ease-in-out;
    display: none;
}

.c-30e227af {
    padding: 20px 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

.c-456c3238 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-818bac62 {
    color: #cbd5e1;
    transition: all 150ms ease-in-out;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.c-818bac62::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #0ea5e9;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 150ms ease-in-out;
}

.c-818bac62:hover {
    color: #0ea5e9;
    padding-left: 30px;
}

.c-818bac62:hover::before {
    transform: translateY(-50%) scale(1);
}

.c-cdd85fd4 {
    margin-top: 20px;
}

.c-47cd08b9 {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 20px;
}

.c-89e04abe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-ee511d5f {
    background-color: #0f172a;
    border: 1px solid #334155;
    padding: 20px;
    border-radius: 6px;
    color: #f1f5f9;
    transition: border-color 150ms ease-in-out;
}

.c-ee511d5f:focus {
    outline: none;
    border-color: #0ea5e9;
}

.c-ee511d5f::placeholder {
    color: #94a3b8;
}

.c-1246d00e {
    background-color: #0ea5e9;
    color: #0f172a;
    padding: 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 150ms ease-in-out;
}

.c-1246d00e:hover {
    background-color: #38bdf8;
}

.c-9ada2ac0 {
    padding-top: 20px;
    border-top: 1px solid #334155;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.c-973d5222 {
    color: #94a3b8;
    font-size: 14px;
}

.c-3076fd21 {
    display: flex;
    gap: 30px;
}

.c-1bab23bf {
    color: #94a3b8;
    font-size: 14px;
    transition: color 150ms ease-in-out;
}

.c-1bab23bf:hover {
    color: #0ea5e9;
}






.c-68c1e1fe {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background: #f1f5f9;
        }

        .c-ea6ca48c {
            max-width: 1180px;
            width: 100%;
            margin: 0 auto;
            padding: 0 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .c-e4fe5464 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .c-b56c625d {
            background: linear-gradient(135deg, #38bdf8, #0ea5e9);
            opacity: 0.3;
            transform: translateZ(-300px) scale(2);
        }

        .c-3caecfc6 {
            z-index: 2;
        }

        .parallax__layer--front {
            z-index: 3;
        }

        .c-8dfb5771 {
            position: absolute;
            border-radius: 50%;
            background: #0f172a;
            opacity: 0.1;
        }

        .c-bbe884ac {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
        }

        .c-92ad3f50 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            right: 10%;
        }

        .c-9df4d22c {
            width: 150px;
            height: 150px;
            top: 30%;
            right: -50px;
        }

        .c-5189ae65 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 15%;
        }

        .c-b807254e {
            color: #0f172a;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            animation: parallaxFadeIn 1s ease 0.3s forwards;
        }

        .c-94519cbc {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .c-73a61a35 {
            font-size: 26px;
            margin-bottom: 64px;
            opacity: 0.9;
        }

        .c-10044b55 {
            display: inline-block;
            padding: 20px 48px;
            background: #0f172a;
            color: #0ea5e9;
            border-radius: 18px;
            font-size: 19px;
            font-weight: 600;
            text-decoration: none;
            transition: all 300ms ease-in-out;
            box-shadow: 0 4px 15px 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .c-10044b55:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .c-b44c63ed {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0ea5e9, #38bdf8);
            box-shadow: 0 4px 15px 0 3px 6px rgba(0, 0, 0, 0.1);
            z-index: 4;
            opacity: 0;
            animation: parallaxFadeIn 1s ease forwards, parallaxFloat 6s ease-in-out infinite;
        }

        .c-fd07303c {
            top: 20%;
            left: 15%;
            animation-delay: 0.5s, 1s;
        }

        .c-34a7688b {
            top: 30%;
            right: 20%;
            width: 40px;
            height: 40px;
            animation-delay: 0.7s, 1.5s;
        }

        .c-4c227822 {
            bottom: 25%;
            left: 25%;
            width: 30px;
            height: 30px;
            animation-delay: 0.9s, 2s;
        }

        .c-a8f32c0e {
            bottom: 35%;
            right: 15%;
            width: 50px;
            height: 50px;
            animation-delay: 1.1s, 2.5s;
        }

        @keyframes parallaxFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes parallaxFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        
.c-5350fa58 {
    max-width: 1180px;
    margin: 48px auto;
    display: flex;
    align-items: center;
    background: #1e293b;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 30px;
    gap: 30px;
}
.c-c2c6337d {
    width: 220px;
    height: 220px;
    background: #0f172a;
    border-radius: 18px;
    box-shadow: 0 2px 8px 0 1px 2px rgba(0, 0, 0, 0.05);
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border: 2px dashed #cbd5e1;
}
.c-2c14cc69 {
    flex: 1;
}
.c-b27cab92 {
    font-size: 26px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
}
.c-cc088536 {
    color: #cbd5e1;
    font-size: var(--font-size);
    line-height: 1.6;
}


.c-7ada3021 {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}

.c-60872deb {
    padding: 48px 0;
    background: #1e293b;
}

.c-2d945e69 {
    text-align: center;
    margin-bottom: 64px;
}

.c-0b9f33e2 {
    font-size: 34px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.c-33a18ca7 {
    font-size: 19px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.c-0006956e {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.c-0006956e::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #0ea5e9, #38bdf8);
    transform: translateX(-50%);
    border-radius: 6px;
}

.c-496f8109 {
    position: relative;
    margin-bottom: 64px;
    width: 50%;
}

.c-496f8109:nth-child(odd) {
    left: 0;
    padding-right: 48px;
}

.c-496f8109:nth-child(even) {
    left: 50%;
    padding-left: 48px;
}

.c-889de814 {
    position: absolute;
    top: 30px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #0f172a;
    z-index: 2;
    transition: all 300ms ease-in-out;
}

.c-496f8109:nth-child(odd) .c-889de814 {
    right: calc(-12px);
    background: #0ea5e9;
}

.c-496f8109:nth-child(even) .c-889de814 {
    left: calc(-12px);
    background: #38bdf8;
}

.c-496f8109:nth-child(3) .c-889de814 {
    background: #22c55e;
}

.c-496f8109:nth-child(4) .c-889de814 {
    background: #facc15;
}

.c-496f8109:nth-child(5) .c-889de814 {
    background: #f43f5e;
}

.c-0993a46e {
    background: #0f172a;
    padding: 48px;
    border-radius: 18px;
    box-shadow: 0 4px 6px 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #334155;
    transition: all 300ms ease-in-out;
    position: relative;
}

.c-0993a46e:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px 0 3px 6px rgba(0, 0, 0, 0.1);
}

.c-0993a46e::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.c-496f8109:nth-child(odd) .c-0993a46e::before {
    right: -20px;
    border-left-color: #0f172a;
}

.c-496f8109:nth-child(even) .c-0993a46e::before {
    left: -20px;
    border-right-color: #0f172a;
}

.c-8ef74657 {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0ea5e9;
    color: #0f172a;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.c-496f8109:nth-child(2) .c-8ef74657 {
    background: #38bdf8;
}

.c-496f8109:nth-child(3) .c-8ef74657 {
    background: #22c55e;
}

.c-496f8109:nth-child(4) .c-8ef74657 {
    background: #facc15;
}

.c-496f8109:nth-child(5) .c-8ef74657 {
    background: #f43f5e;
}

.c-004169ee {
    font-size: 19px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.c-737a7d20 {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.c-d08b9b3b {
    list-style: none;
}

.c-d08b9b3b li {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 4px;
    position: relative;
    padding-left: 30px;
}

.c-d08b9b3b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 600;
}




.c-1b2556fa {
    opacity: 0;
    transition: all 500ms ease;
}

.c-5ba7950c {
    transform: translateY(30px);
}

.c-5ba7950c.benefits-visible {
    opacity: 1;
    transform: translateY(0);
}

.c-b3faff23 {
    transform: translateX(-50px);
}

.c-b3faff23.benefits-visible {
    opacity: 1;
    transform: translateX(0);
}

.c-9d8e0335 {
    transform: translateX(50px);
}

.c-9d8e0335.benefits-visible {
    opacity: 1;
    transform: translateX(0);
}

.benefits-scale-in {
    transform: scale(0.8);
}

.benefits-scale-in.benefits-visible {
    opacity: 1;
    transform: scale(1);
}

.c-f2878e55 {
    transition-delay: 0.2s;
}

.c-3995c056 {
    transition-delay: 0.4s;
}

.c-2e2302e3 {
    transition-delay: 0.6s;
}

.c-101d95d6 {
    transition-delay: 0.8s;
}

.c-8a8024cf {
    transition-delay: 1s;
}

.c-f54229c4 {
            padding: 64px 30px;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            min-height: 100vh;
        }

        .c-df5c32c3 {
            max-width: 1180px;
            margin: 0 auto;
        }

        .c-5d7e5e2f {
            text-align: center;
            margin-bottom: 64px;
        }

        .c-af2f9b46 {
            font-size: 34px;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(-50px);
        }

        .c-bf46aa7c {
            font-size: 19px;
            color: #cbd5e1;
            opacity: 0;
            transform: translateX(50px);
        }

        .c-ec856b96 {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .c-6ee7b67e {
            background: #0f172a;
            border-radius: 18px;
            padding: 48px;
            box-shadow: 0 2px 10px 0 1px 2px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 48px;
            transition: all 300ms ease-in-out;
            opacity: 0;
            transform: translateY(30px);
            cursor: pointer;
            border-left: 4px solid transparent;
        }

        .c-6ee7b67e:hover {
            box-shadow: 0 8px 30px 0 3px 6px rgba(0, 0, 0, 0.1);
            transform: translateX(10px);
        }

        .c-6ee7b67e:nth-child(1) {
            border-left-color: #0ea5e9;
        }

        .c-6ee7b67e:nth-child(2) {
            border-left-color: #22c55e;
        }

        .c-6ee7b67e:nth-child(3) {
            border-left-color: #facc15;
        }

        .c-6ee7b67e:nth-child(4) {
            border-left-color: #f43f5e;
        }

        .c-2febaf5d {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            color: #0f172a;
            flex-shrink: 0;
            transition: all 300ms ease-in-out;
        }

        .c-6ee7b67e:nth-child(1) .c-2febaf5d {
            background: #0ea5e9;
        }

        .c-6ee7b67e:nth-child(2) .c-2febaf5d {
            background: #22c55e;
        }

        .c-6ee7b67e:nth-child(3) .c-2febaf5d {
            background: #facc15;
        }

        .c-6ee7b67e:nth-child(4) .c-2febaf5d {
            background: #f43f5e;
        }

        .c-fafef5bf {
            flex: 1;
        }

        .c-8beaacca {
            font-size: 26px;
            font-weight: 600;
            color: #f1f5f9;
            margin-bottom: 10px;
        }

        .c-6b2fc768 {
            color: #cbd5e1;
            line-height: 1.6;
        }

        .c-18c4e8e0 {
            font-size: 19px;
            font-weight: 700;
            color: #0ea5e9;
            flex-shrink: 0;
        }

        .services-list__animate {
            opacity: 1;
            transform: translateY(0) translateX(0);
        }

        
.c-1dcd12c0 {
    padding: 64px 0;
    background: #1e293b;
}

.c-44caec87 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-7af61d8b {
    text-align: center;
    margin-bottom: 64px;
}

.c-080185a6 {
    font-size: 34px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.c-79e65ed1 {
    font-size: 19px;
    color: #cbd5e1;
    line-height: 1.5;
}

.c-42bf2a8b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 64px;
}

.c-33533c6d {
    background: #0f172a;
    border-radius: 18px;
    padding: 48px;
    text-align: center;
    transition: all 300ms ease-in-out;
    position: relative;
    border: 1px solid #334155;
    color: #f1f5f9;
}

.c-33533c6d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 0 1px 2px rgba(0, 0, 0, 0.05);
    border-color: #0ea5e9;
}

.c-1931d2b3 {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #0f172a;
    border: none;
    transform: scale(1.05);
}

.c-1931d2b3:hover {
    transform: scale(1.05) translateY(-5px);
}

.c-d9f4e8af {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.c-1931d2b3 .c-d9f4e8af {
    color: rgba(255, 255, 255, 0.8);
}

.c-cc268699 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.c-cb17c97b {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.c-1931d2b3 .c-cb17c97b {
    color: #0f172a;
}

.c-b653839b {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 48px;
}

.c-1931d2b3 .c-b653839b {
    color: rgba(255, 255, 255, 0.8);
}

.c-1ca1aaec {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 48px;
    color: #cbd5e1;
}

.c-1931d2b3 .c-1ca1aaec {
    color: rgba(255, 255, 255, 0.9);
}

.c-57fba6cf {
    width: 100%;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: var(--font-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease-in-out;
    background: #0ea5e9;
    color: #0f172a;
}

.c-1931d2b3 .c-57fba6cf {
    background: #0f172a;
    color: #0ea5e9;
}

.c-57fba6cf:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px 0 3px 6px rgba(0, 0, 0, 0.1);
}

.c-9270fa3f {
    background: #0f172a;
    border-radius: 18px;
    padding: 48px;
    text-align: center;
}

.c-50ea66de {
    font-size: 26px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 30px;
}

.c-a799c8fe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.c-4d4c0025 {
    padding: 30px;
    border-radius: 12px;
    background: #1e293b;
    transition: all 300ms ease-in-out;
    color: #cbd5e1;
}

.c-4d4c0025:hover {
    background: #0ea5e9;
    color: #0f172a;
    transform: translateY(-3px);
}

.c-83f8be2c {
    font-size: 26px;
    margin-bottom: 20px;
}

.c-3f249b2f {
    font-size: var(--font-size);
    font-weight: 600;
}



.c-fa2c8fa9 {
    width: 100vw;
    height: 100vh;
    background: #0f172a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-e19420a7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.c-e268f764 {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: cta-content-float 6s ease-in-out infinite;
}

.c-b9042f45 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    color: #f1f5f9;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    position: relative;
}

.c-b9042f45::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    border-radius: 2px;
    animation: cta-underline-wave 3s ease-in-out infinite;
}

.c-fd11a9e3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #f1f5f9;
    margin-bottom: 64px;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.c-d93ae7c0 {
    display: inline-block;
    background: linear-gradient(45deg, #0ea5e9, #38bdf8);
    color: #f1f5f9;
    padding: 30px 48px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.c-d93ae7c0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}

.c-d93ae7c0:hover::before {
    opacity: 1;
}

.c-d93ae7c0:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.c-d93ae7c0 span {
    position: relative;
    z-index: 1;
}

@keyframes cta-content-float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes cta-underline-wave {
    0%,
    100% {
        width: 100px;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        width: 200px;
        transform: translateX(-50%) scaleX(1.2);
    }
}

.c-58353190 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #0f172a;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 6px 12px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 300ms ease-in-out;
}

.c-58353190.policy-compact--visible {
    transform: translateX(0);
}

.c-a1a325dc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.c-86eeff17 {
    font-size: var(--font-size);
    font-weight: 600;
}

.c-e37ba967 {
    background: none;
    border: none;
    color: #0f172a;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 150ms ease-in-out;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-e37ba967:hover {
    opacity: 1;
}

.c-5e4b10e6 {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.c-0c281343 {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.c-697ace7e {
    color: #0f172a;
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 150ms ease-in-out;
}

.c-697ace7e:hover {
    opacity: 1;
}

.c-dad43352 {
    background: #0f172a;
    color: #0ea5e9;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 150ms ease-in-out;
}

.c-dad43352:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .c-c74e450d {
        display: none;
    }

    .c-8dcde78d {
        display: flex;
    }
}
@media (max-width: 768px) {
    .c-d0e2ccaf {
        grid-template-columns: 1fr;
    }

    .c-fa07ae11 {
        grid-template-columns: 1fr;
    }

    .c-ed056998 {
        display: block;
    }

    .c-30e227af {
        max-height: 0;
        padding: 0;
    }

    .c-c164ac14.footer-section-active .c-30e227af {
        max-height: 300px;
        padding: 20px 0;
    }

    .c-c164ac14.footer-section-active .c-ed056998 {
        transform: rotate(180deg);
    }

    .c-9ada2ac0 {
        flex-direction: column;
        text-align: center;
    }

    .c-3076fd21 {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (min-width: 769px) {
    .c-30e227af {
        max-height: none !important;
        padding: 20px 0 !important;
    }
}
@media (max-width: 768px) {
            .c-94519cbc {
                font-size: 2.5rem;
            }
            
            .c-b44c63ed {
                display: none;
            }
        }
@media (max-width: 700px) {
    .c-5350fa58 {
        flex-direction: column;
        text-align: center;
    }
    .c-c2c6337d {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .c-0006956e::before {
        left: 20px;
    }

    .c-496f8109 {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .c-889de814 {
        left: 12px !important;
        right: auto !important;
    }

    .c-0993a46e::before {
        left: -20px !important;
        right: auto !important;
        border-right-color: #0f172a !important;
        border-left-color: transparent !important;
    }

    .c-0b9f33e2 {
        font-size: 26px;
    }
}
@media (max-width: 768px) {
            .c-6ee7b67e {
                flex-direction: column;
                text-align: center;
            }
        }
@media (max-width: 768px) {
    .c-42bf2a8b {
        grid-template-columns: 1fr;
    }

    .c-1931d2b3 {
        transform: none;
    }

    .c-1931d2b3:hover {
        transform: translateY(-5px);
    }

    .c-a799c8fe {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .c-58353190 {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}