:root {
    --bg-main: #010812;
    --bg-card: #071421;

    --text-title-main: #fff;
    --text-title: #F4F8FF;
    --text: #AAB7C8;

    --accent: #00CBEC;
    --border: rgba(0, 209, 255, 0.15);

    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-main);
    color: var(--text);
    font-family: var(--font-body);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

h1 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text-title-main);
    display: flex;
    flex-direction: column;
    font-size: 56px;
    line-height: 110%;
    letter-spacing: 0.1px;
    font-weight: 700;
    color: #fff;
}

h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-title);
}

h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
}

h4 {
    font-size: 16;
    color: var(--text-title);
    line-height: 100%;
    font-weight: 500;
}

p {
    margin: 0;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--text)
}

p.subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    color: var(--text-title);
    color: #F4F8FF;
    text-align: left;
}

.m-0 {
    margin: 0 !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.container {
    width: min(100% - 48px, 1200px);
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.logo {
    mix-blend-mode: lighten;
}

.site-header {
    background: var(--bg-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav a {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    transition: 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.25s ease;
    box-shadow: 0 0 12px rgba(0, 203, 236, 0.6);
}

.nav a:hover,
.nav a.active {
    color: var(--accent);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.btn {
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid rgba(0, 209, 255, .8);
    background: linear-gradient(180deg, rgba(11, 22, 36, .2) 0%, #071827 100%);
    color: var(--accent);
    font-size: 16px;
    font-weight: 500;
    transition: .25s ease;
    box-shadow: 0 0 12px rgba(0, 209, 255, .25), 0 0 24px rgba(0, 209, 255, .35);
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 209, 255, .95);
    box-shadow: 0 0 18px rgba(0, 209, 255, .35), 0 0 36px rgba(0, 209, 255, .5);
}

.btn svg {
    width: 14px;
    height: 16px;
    object-fit: contain;
    color: var(--accent);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 5%, rgba(0, 203, 236, 0.24), transparent 42%);
    pointer-events: none;
    z-index: 1;
    height: 700px;
}

.hero-inner {
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px
}

.hero-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.hero p {
    max-width: 350px;
    margin-top: 19px;
}

.hero h1 span {
    color: var(--accent);
}

.hero .btn {
    width: fit-content;
    margin-top: 19px
}

.hero-image {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 660px;
}

.services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
}

.service-card {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 16px;
    border: 1px solid rgba(0, 209, 255, 0.18);
    background: #071421;
    position: relative;
    transition: 0.25s ease;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00121E 0%, transparent 100%);
    opacity: .4;
    pointer-events: none;
    border-radius: 16px;
    z-index: -1;
}

.service-card:hover {
    border-color: rgba(0, 209, 255, 0.9);
    box-shadow: 0 0 40px rgba(0, 203, 236, 0.28);
}

.service-card:hover .service-icon {
    background: rgba(0, 209, 255, 25%);
}

.service-icon {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, 0.22);
    background:
        radial-gradient(circle,
            rgba(0, 203, 236, 0.12) 0%,
            rgba(0, 203, 236, 0.02) 100%);
}

.service-icon img {
    width: 44px;
}

.service-info h2 {
    line-height: 120%;
    color: #F4F8FF;
}

.service-info p {
    font-size: 16px;
    line-height: 120%;
    margin-top: 15px;
}

.section {
    padding-top: 60px;
}

.panel {
    border: 1px solid rgba(0, 209, 255, .15);
    border-radius: 16px;
    background: #071421;
    position: relative;
    overflow: hidden;
}

.service-detail-panel {
    position: relative;
    min-height: 408px;
    padding: 32px;
    overflow: hidden;
}

.service-detail-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #071421 0%, #071421 42%, rgba(7, 20, 33, .75) 60%, rgba(7, 20, 33, .12) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-detail-media {
    position: absolute;
    top: 0;
    right: 0;
    width: 51%;
    height: 100%;
    background-image: url("./assets/images/service_detail.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service-detail-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 20, 33, .72) 0%,
            rgba(7, 20, 33, .38) 24%,
            rgba(7, 20, 33, .08) 55%,
            rgba(7, 20, 33, 0) 100%);
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
    opacity: .75;
}

.service-detail-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.service-detail-content>h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    color: var(--text-title-main);
}

.accordion {
    height: 317px;
    margin-top: 20px;
    border: 1px solid rgba(0, 209, 255, .35);
    border-radius: 16px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 209, 255, .16);
    background: rgba(10, 27, 42, .95);
}

.accordion-item:last-child {
    border-bottom: 0;
}

.accordion-head {
    width: 100%;
    padding: 16px;
    border: 0;
    background: #0A1B2A;
    color: var(--text-title);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-head span {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-title-main);
    border-bottom: 2px solid var(--text-title-main);
    transform: rotate(45deg);
    transition: .25s ease;
}

.accordion-item.active .accordion-head span {
    transform: rotate(225deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    background: #0B1624;
}

.accordion-item.active .accordion-body {
    max-height: 180px;
}

.accordion-body p {
    padding: 25px 15px;
}

.process-panel {
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 40px rgba(0, 209, 255, .12),
        0 20px 60px rgba(0, 0, 0, .55);
}

.process-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 40px rgba(0, 209, 255, .04);
    pointer-events: none;
}

.process-list {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.process-item {
    width: 100%;
    max-width: 180px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.process-item:last-child .process-line {
    display: none;
}

.process-icon-wrap {
    position: relative;
}

.process-line {
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    width: calc(100% - 10px);
    height: 2px;
    background: rgba(0, 209, 255, .35);
    z-index: 1;
}

.process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    background: var(--bg-card);
    box-shadow: 0 0 18px rgba(0, 209, 255, .15);
}

.process-item.active .process-icon {
    box-shadow: 0 0 28px rgba(0, 209, 255, .45);
}

.process-icon img {
    width: 32px;
    opacity: 0.8;
}

.process-number {
    width: 24px;
    height: 24px;
    margin: -10px auto 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, .4);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    font-size: 14px;
    color: var(--text);
}

.process-item h3 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--text-title);
}

.process-item p {
    font-size: 13px;
    line-height: 150%;
    width: 65%;
    margin: auto;
}

.process-item:hover .process-icon,
.process-item.active .process-icon {
    background: var(--bg-card);
    border-color: rgba(0, 209, 255, .8);
    box-shadow: 0 0 28px rgba(0, 209, 255, .5);
    opacity: 1;
}

.process-item:hover .process-number,
.process-item.active .process-number {
    border-color: rgba(0, 209, 255, .8);
    color: var(--accent);
}

.choose-approach-grid {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 20px;
}

.choose-panel,
.approach-panel {
    padding: 25px;
    box-shadow: 0 4px 40px rgba(0, 209, 255, .12), 0 20px 60px rgba(0, 0, 0, .55);
}

.choose-list {
    margin-top: 24px;
    display: grid;
    gap: 5px;
}

.choose-item {
    display: flex;
    gap: 12px;
}

.choose-item img {
    width: 40px;
}

.choose-item h3 {
    font-weight: 500;
    line-height: 150%;
    color: var(--text-title);
}

.choose-item p {
    font-size: 13px;
    line-height: 150%;
}

.choose-panel .btn {
    margin-top: 24px;
}

.approach-panel {
    min-height: 360px;
    position: relative;
}

.approach-map {
    height: 100%;
}

.approach-map img {
    width: 320px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .9;
    mix-blend-mode: lighten;
}

.approach-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
}

.approach-point span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, .9);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 0 16px rgba(0, 209, 255, .18);
}

.approach-point h3 {
    font-size: 15px;
    line-height: 150%;
    font-weight: 400;
}

.approach-point p {
    max-width: 190px;
    font-size: 13px;
    line-height: 150%;
}

.point-1 {
    right: 20px;
    top: 90px;
}

.point-2 {
    right: 20px;
    bottom: 45px;
}

.point-3 {
    left: 40px;
    bottom: 45px;
    flex-direction: row-reverse;
    text-align: right;
}

.point-4 {
    left: 40px;
    top: 90px;
    flex-direction: row-reverse;
    text-align: right;
}

.approach-point-text {
    width: 156px;
}

.cta-panel {
    min-height: 200px;
    padding: 30px;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(7, 20, 33, .9), rgba(7, 20, 33, .72)), url("./assets/images/cta-bg.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 40px rgba(0, 209, 255, .12), 0 20px 60px rgba(0, 0, 0, .55);
}

.cta-panel p {
    margin-top: 15px;
    font-size: 20px;
    line-height: 150%;
    color: var(--text);
}

.cta-panel .btn {
    margin-top: 15px;
}

.site-footer {
    margin-top: 60px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #071421 0%, #010812 50%, #071421 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 209, 255, .08), transparent 60%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 180px 320px 1fr;
    gap: 40px;
}

.footer-logo img {
    width: 150px;
}

.footer-info p {
    margin-top: 16px;
    max-width: 220px;
}

.footer-nav nav,
.footer-services nav {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a,
.footer-services a,
.footer-contact a {
    transition: .25s ease;
}

.footer-nav a:hover,
.footer-services a:hover,
.footer-contact a:hover,
.footer-nav a.active {
    color: var(--accent);
}

.footer-contact a {
    display: inline-block;
    margin-top: 16px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    margin-left: 20px;
    font-size: 13px;
    line-height: 100%;
    color: #6C8BA3;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-hero-content {
    max-width: 540px;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    display: block;
    font-size: 70px;
    line-height: 110%;
}

.page-hero-content h1 span {
    color: var(--accent);
}

.page-hero-content h2 {
    max-width: 450px;
    margin-top: 12px;
}

.page-hero-image {
    width: 560px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.page-hero-image img {
    width: 100%;
}

.news-section {
    padding-top: 0px;
}

.news-search {
    height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 203, 236, .15);
    border-radius: 12px;
    background: var(--bg-card);
}

.news-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-title);
    font-size: 16px;
}

.news-search button {
    width: 56px;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--accent);
    cursor: pointer;
}

.news-tags {
    margin-top: 20px;
    display: flex;
    gap: 16px;
}

.news-tags button {
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 209, 255, .8);
    background: transparent;
    color: var(--accent);
    font-size: 16px;
    cursor: pointer;
}

.news-tags button.active,
.news-tags button:hover {
    background: rgba(0, 209, 255, .14);
    box-shadow: 0 0 18px rgba(0, 209, 255, .22);
}

.news-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    min-height: 200px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 209, 255, .08), 0 16px 45px rgba(0, 0, 0, .45);
    transition: 0.2s ease;
}

.news-card:hover {
    border-color: rgba(0, 209, 255, .7);
    box-shadow: 0 0 36px rgba(0, 209, 255, .22), 0 20px 60px rgba(0, 0, 0, .55);
}

.news-card h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: var(--text-title);
}

.news-card p {
    margin-top: 15px;
    line-height: 150%;
}

.news-card-large p {
    max-width: 415px;
}

.news-card-bottom {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-card time {
    font-size: 12px;
    color: var(--text);
}

.news-card a {
    font-size: 16px;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-card-large {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
}

.news-card-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg,
            rgba(7, 20, 33, .96) 0%,
            rgba(7, 20, 33, .88) 35%,
            rgba(7, 20, 33, .62) 65%,
            rgba(7, 20, 33, .95) 100%), url("./assets/images/news-card-bg.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.news-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination a {
    font-size: 16px;
    color: var(--text);
}

.pagination a.active,
.pagination a:hover {
    color: var(--accent);
}

.services-page-hero {
    position: relative;
    padding-top: 80px;
}

.services-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 10%, rgba(0, 203, 236, .22), transparent 42%);
    pointer-events: none;
    z-index: 1;
}

.services-page-hero .page-hero-inner {
    min-height: 520px;
}

.services-page-hero .page-hero-content {
    max-width: 715px;
}

.services-page-hero h1 {
    display: block;
    font-size: 56px;
    margin-bottom: 20px;
}

.services-page-hero h1 span {
    display: block;
    width: 110%;
}

.hero-list {
    margin: 20px 0px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 15px;
}

.hero-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-title);
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.services-hero-image {
    display: flex;
    justify-content: end;
}

.services-hero-image img {
    width: 460px;
    mix-blend-mode: lighten;
}

.service-preview {
    min-height: 360px;
    margin-top: 28px;
    position: relative;
    overflow: hidden;

    border-color: rgba(0, 209, 255, .7);

    box-shadow:
        0 0 36px rgba(0, 209, 255, .22),
        0 20px 60px rgba(0, 0, 0, .55);
}

.service-preview-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(90deg,
            rgba(7, 20, 33, .97) 0%,
            rgba(7, 20, 33, .92) 28%,
            rgba(7, 20, 33, .55) 58%,
            rgba(7, 20, 33, .12) 100%),
        url("./assets/images/news-card-bg.png");

    background-size: cover;
    background-position: center;
}

.service-preview-content {
    width: 470px;
    padding: 32px 20px;
    position: relative;
    z-index: 2;
}

.service-preview-content h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}

.service-preview-content p {
    margin-top: 15px;
}

.service-preview-list {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.service-preview-list li {
    position: relative;
    padding-left: 14px;
}

.service-preview-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 9px;
}

.service-preview-link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-page-hero {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 30px;
}

.service-page-hero-inner {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-page-hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.service-page-hero h1 {
    display: block;
    font-size: 56px;
    line-height: 110%;
    width: 120%
}

.service-page-hero h1 span {
    color: var(--accent);
}

.service-page-hero-content p {
    margin-top: 12px;
    font-size: 20px;
    line-height: 150%;
    color: var(--text-title);
}

.service-page-hero-content ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.service-page-hero-content li {
    position: relative;
    padding-left: 18px;
    font-size: 20px;
    line-height: 130%;
    color: var(--text-title);
}

.service-page-hero-content li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 12px;
}

.service-page-hero-image {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.service-page-hero-image img {
    width: 100%;
    max-width: 600px;
    mix-blend-mode: lighten;
}

.service-preview-large {
    min-height: 360px;
}

.service-preview-large .service-preview-content {
    max-width: 470px;
}

.service-cover-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-cover-card {
    padding: 24px 28px;
    min-height: 290px;
    transition: .25s ease;
}

.service-cover-card:hover {
    border-color: rgba(0, 209, 255, .7);
    box-shadow:
        0 0 36px rgba(0, 209, 255, .18),
        0 20px 60px rgba(0, 0, 0, .55);
}

.service-cover-card p {
    margin-top: 10px;
    line-height: 140%;
}

.dot-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.dot-list li {
    position: relative;
    padding-left: 18px;
}

.dot-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 10px;
}

.result-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-content {
    max-width: 720px;
}

.result-content h2 {
    font-size: 40px;
    font-weight: 600;
}

.result-content p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 150%;
}

.result-list {
    margin-top: 10px;
    gap: 10px;
}

.result-list li {
    font-size: 20px;
    line-height: 150%;
}

.result-image {
    width: 380px;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    mix-blend-mode: lighten;
    opacity: .9;
}

.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 18%,
            rgba(0, 203, 236, .18),
            transparent 38%);
    pointer-events: none;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    display: block;
}

.about-hero-content h1 span {
    color: var(--accent);
}

.about-hero-content p {
    font-weight: 400;
    max-width: 505px;
    margin: 20px 0px;
}

.about-hero-image {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    width: 500px;
}

.about-hero-image img {
    mix-blend-mode: lighten;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expertise-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: auto;
}

.expertise-card h2 {
    line-height: 120%;
}

.expertise-card p {
    margin-top: 15px;
}

.section-head h2 {
    font-size: 34px;
    line-height: 120%;
    margin-bottom: 20px;
}

.section-head-center {
    text-align: center;
}

.section-head-center p {
    margin-top: 20px;
    font-size: 24px;
    line-height: 150%;
}

.faq-wrap {
    max-width: 600px;
    margin: 20px auto 0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.faq-trigger {
    width: 100%;
    min-height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #0A1B2A;
    border: none;
    color: var(--text-title-main);
    text-align: left;
    cursor: pointer;
    transition: .25s ease;
}

.faq-trigger span {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--text-title);
}

.faq-trigger svg {
    flex-shrink: 0;
    transition: .25s ease;
}

.faq-item.active .faq-trigger svg {
    transform: rotate(180deg);
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, .02);
}

.faq-content {
    padding: 15px;
}

.faq-section {
    padding-top: 80px;
}

.faq-section .section-head-center p {
    font-size: 20px;
    color: var(--text-title);
}

.faq-wrap .panel {
    border: 1px solid rgba(0, 209, 255, .3);
}

.faq-item:not(.active) .faq-content {
    display: none;
}

.contact-section {
    min-height: calc(100vh - 88px);
    padding-top: 60px;
}

.contact-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 40px;
}

.contact-form {
    display: grid;
    gap: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 209, 255, .15);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-title);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
}

.contact-form input {
    height: 44px;
    padding: 0 14px;
}

.contact-form textarea {
    height: 115px;
    padding: 14px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(170, 183, 200, .75);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(0, 209, 255, .55);
}

.contact-form .btn {
    margin: 0 auto;
}

.contact-info a {
    display: inline-block;
    margin-top: 8px;
    font-size: 20px;
    color: var(--accent);
}

.contact-info p {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(170, 183, 200, .75);
}

.contact-head h1 {
    margin-bottom: 10px;
}

.burger {
    display: none;
}

.service-orbit-card {
    min-height: 360px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
}

.service-orbit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 20, 33, .98) 0%,
            rgba(7, 20, 33, .92) 35%,
            rgba(7, 20, 33, .38) 62%,
            rgba(7, 20, 33, .08) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-orbit-card .service-preview-content {
    position: relative;
    z-index: 4;
}

.orbit-planet {
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    transform: translateY(-50%);
    opacity: .9;
}

.orbit-visual {
    position: absolute;
    inset: 0 0 0 auto;
    width: 68%;
    z-index: 1;
    overflow: hidden;
    perspective: 900px;
}

.orbit-icons {
    --orbit-rotate: 0deg;
    position: absolute;
    right: 14%;
    top: 50%;
    width: 420px;
    height: 420px;
    transform:
        translateY(-50%) rotateX(58deg) rotateZ(var(--orbit-rotate));
    transform-style: preserve-3d;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
    z-index: 5;
}

.orbit-icons::before {
    content: "";
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(0, 209, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(0, 209, 255, .12);
}

.orbit-icon {
    --depth: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    margin: -29px;
    border: 1px solid rgba(0, 209, 255, .35);
    border-radius: 50%;
    background: rgba(7, 20, 33, .72);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform:
        rotateZ(var(--angle)) translateX(172px) rotateZ(calc(-1 * var(--angle))) rotateZ(calc(-1 * var(--orbit-rotate))) rotateX(-58deg) scale(var(--depth));
    transition: transform .8s cubic-bezier(.2, .8, .2, 1), opacity .35s ease, box-shadow .35s ease, border-color .35s ease;
    opacity: .62;
}

.orbit-icon img {
    width: 28px;
    filter: drop-shadow(0 0 8px rgba(0, 209, 255, .35));
}

.orbit-icon.is-active {
    border-color: rgba(0, 209, 255, .95);
    background: rgba(0, 209, 255, .16);
    box-shadow: 0 0 28px rgba(0, 209, 255, .45);
}

.orbit-icon.is-active img {
    width: 35px;
}

.orbit-icon:nth-child(1) {
    --angle: 180deg;
}

.orbit-icon:nth-child(2) {
    --angle: 240deg;
}

.orbit-icon:nth-child(3) {
    --angle: 300deg;
}

.orbit-icon:nth-child(4) {
    --angle: 0deg;
}

.orbit-icon:nth-child(5) {
    --angle: 60deg;
}

.orbit-icon:nth-child(6) {
    --angle: 120deg;
}

.service-static-orbit-card {
    min-height: 360px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.service-static-orbit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 20, 33, .98) 0%,
            rgba(7, 20, 33, .94) 34%,
            rgba(7, 20, 33, .48) 62%,
            rgba(7, 20, 33, .16) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-static-orbit-card .service-preview-content {
    position: relative;
    z-index: 4;
}

.static-orbit-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.static-orbit-planet {
    position: absolute;
    right: 4%;
    top: 50%;
    width: 620px;
    max-width: none;
    transform: translateY(-50%);
    opacity: .85;
}

.static-orbit-ring {
    position: absolute;
    right: 140px;
    top: 50%;
    width: 360px;
    height: 260px;
    border: 1px solid rgba(0, 209, 255, .18);
    border-radius: 50%;
    transform: translateY(-50%) rotate(-8deg);
    box-shadow: 0 0 35px rgba(0, 209, 255, .08);
}

.static-orbit-icon {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, .38);
    background: rgba(7, 20, 33, .58);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.static-orbit-icon img {
    width: 32px;
    filter: drop-shadow(0 0 8px rgba(0, 209, 255, .35));
}

.static-orbit-active {
    left: 10%;
    top: 50%;
    width: 92px;
    height: 92px;
    transform: translateY(-50%);
    border-color: rgba(0, 209, 255, .85);
    background: rgba(0, 209, 255, .1);
    box-shadow: 0 0 34px rgba(0, 209, 255, .28);
}

.static-orbit-active img {
    width: 40px;
}

.static-orbit-small {
    width: 64px;
    height: 64px;
    opacity: .55;
}

.static-orbit-cloud {
    right: 25%;
    top: 16%;
}

.static-orbit-testing {
    right: 9%;
    top: 48%;
}

.static-orbit-soc {
    right: 28%;
    bottom: 13%;
}

.service-orbit-static .orbit-icon {
    pointer-events: none;
    cursor: default;
}

.service-orbit-static .orbit-icons {
    right: 14%;
}

.service-orbit-static .orbit-icon:nth-child(n) {
    opacity: .45;
}

.service-orbit-static .orbit-icon.is-active {
    opacity: 1;
}

.service-orbit-static .orbit-icon:nth-child(4),
.service-orbit-static .orbit-icon:nth-child(5) {
    opacity: .18;
}

.service-orbit-static .orbit-icon:nth-child(6) {
    opacity: 0;
}

@media (max-width: 1199px) {
    .container {
        width: min(100% - 40px, 960px);
    }

    .nav {
        gap: 32px;
    }

    .nav a {
        font-size: 16px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-image img {
        width: 520px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .accordion {
        height: auto;
    }

    .about-hero-image {
        width: 380px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card-large {
        grid-column: span 2;
    }

    .service-page-hero h1 {
        width: auto;
    }

    .service-page-hero-image img {
        max-width: 420px;
    }

    .service-cover-grid {
        grid-template-columns: 1fr;
    }

    .result-image {
        width: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 32px, 100%);
    }

    .site-header .btn {
        display: none;
    }

    .header-inner {
        height: 72px;
    }

    .logo img {
        width: 100px;
    }

    .nav {
        display: none;
    }

    h1 {
        font-size: 40px;
    }

    .hero-inner {
        min-height: auto;
        padding: 56px 0 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
    }

    .services-section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 22px;
    }

    .service-detail-panel {
        padding: 24px;
    }

    .service-detail-panel::before {
        background: linear-gradient(90deg, #071421 0%, rgba(7, 20, 33, .92) 100%);
    }

    .service-detail-media {
        display: none;
    }

    .service-detail-content {
        max-width: 100%;
    }

    .accordion {
        height: auto;
    }

    .process-list {
        flex-direction: column;
        gap: 28px;
    }

    .process-item {
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .process-icon-wrap {
        flex-shrink: 0;
    }

    .process-line {
        display: none;
    }

    .process-item p {
        width: 100%;
        margin-top: 8px;
    }

    .process-item h3 {
        margin-top: 0;
    }

    .approach-panel {
        min-height: auto;
    }

    .approach-map {
        height: auto;
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }

    .approach-map img {
        display: none;
    }

    .approach-point {
        position: static;
        flex-direction: row;
        text-align: left;
    }

    .approach-point-text {
        width: auto;
    }

    .cta-panel p {
        font-size: 16px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .burger {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(0, 209, 255, .45);
        border-radius: 10px;
        background: #071827;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        box-shadow: 0 0 18px rgba(0, 209, 255, .18);
    }

    .burger span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--accent);
    }

    .nav.open {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 88px;
        z-index: 200;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border: 1px solid rgba(0, 209, 255, .25);
        border-radius: 16px;
        background: rgba(7, 20, 33, .98);
        box-shadow: 0 20px 60px rgba(0, 0, 0, .55), 0 0 30px rgba(0, 209, 255, .14);
    }

    .nav.open a {
        width: fit-content;
        font-size: 18px;
    }

    .nav.open a::after {
        bottom: -6px;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .burger span {
        transition: .25s ease;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 150;
    }

    .about-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-content p {
        max-width: 100%;
    }

    .about-hero-image {
        width: 100%;
    }

    .about-hero-image img {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        align-items: flex-start;
        text-align: left;
    }

    .choose-approach-grid {
        grid-template-columns: 1fr;
    }

    .faq-wrap {
        max-width: 100%;
    }

    .section-head-center p {
        font-size: 18px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

    .page-hero-content {
        margin-top: 50px;
    }

    .page-hero-image {
        width: 100%;
    }

    .page-hero-image img {
        max-width: 420px;
        margin: 0 auto;
    }

    .news-section {
        padding-top: 30px;
    }

    .news-search {
        height: 44px;
    }

    .news-tags {
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .news-tags button {
        flex-shrink: 0;
        font-size: 14px;
    }

    .news-grid {
        margin-top: 32px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card,
    .news-card-large {
        grid-column: auto;
        min-height: 220px;
        padding: 22px;
    }

    .news-card-large p {
        max-width: 100%;
    }

    .news-card-bottom {
        gap: 16px;
    }

    .pagination {
        margin-top: 36px;
    }

    .services-page-hero {
        padding-top: 0;
    }

    .services-page-hero .page-hero-inner {
        min-height: auto;
    }

    .services-page-hero .page-hero-content {
        max-width: 100%;
    }

    .services-page-hero h1 span {
        width: auto;
    }

    .services-hero-image {
        justify-content: center;
    }

    .services-hero-image img {
        width: 100%;
        max-width: 320px;
    }

    .hero-list {
        gap: 12px;
    }

    .service-preview {
        min-height: auto;
    }

    .service-preview-bg {
        opacity: .55;
    }

    .service-preview-content {
        width: 100%;
        padding: 24px 20px;
    }

    .service-page-hero {
        margin-top: 0;
    }

    .service-page-hero-inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .service-page-hero-content {
        max-width: 100%;
    }

    .service-page-hero h1 {
        width: auto;
        font-size: 40px;
    }

    .service-page-hero-content p {
        font-size: 18px;
    }

    .service-page-hero-content li {
        font-size: 16px;
    }

    .service-page-hero-image {
        width: 100%;
    }

    .service-page-hero-image img {
        max-width: 340px;
        margin: 0 auto;
    }

    .service-cover-card {
        min-height: auto;
        padding: 22px;
    }

    .result-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .result-content {
        max-width: 100%;
    }

    .result-content h2 {
        font-size: 32px;
    }

    .result-content p,
    .result-list li {
        font-size: 16px;
    }

    .result-image {
        width: 100%;
    }

    .result-image img {
        display: none;
    }

    .contact-section {
        min-height: auto;
        padding-top: 40px;
    }

    .contact-head h1 {
        font-size: 40px;
    }

    .contact-head .subtitle {
        margin-top: 12px;
        font-size: 18px;
        line-height: 150%;
    }

    .contact-grid {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-form input {
        height: 52px;
    }

    .contact-form textarea {
        height: 140px;
    }

    .contact-form .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        padding: 24px;
        border: 1px solid rgba(0, 209, 255, .15);
        border-radius: 16px;
        background: #071421;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-info a {
        font-size: 18px;
        word-break: break-word;
    }

    .contact-info p {
        margin-top: 14px;
        line-height: 150%;
    }

    .orbit-visual {
        display: none;
    }

    .service-orbit-card::before {
        background: linear-gradient(90deg, rgba(7, 20, 33, .96), rgba(7, 20, 33, .88));
    }

    .static-orbit-visual {
        display: none;
    }

    .service-static-orbit-card::before {
        background: linear-gradient(90deg, rgba(7, 20, 33, .96), rgba(7, 20, 33, .9));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: min(100% - 40px, 720px);
    }

    .site-header .btn {
        display: none;
    }

    .nav {
        gap: 24px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 640px;
        margin-left: auto;
    }

    .service-detail-panel {
        min-height: auto;
    }

    .service-detail-media {
        width: 45%;
        opacity: .45;
    }

    .service-detail-content {
        max-width: 520px;
    }

    .process-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .process-item {
        max-width: none;
    }

    .process-item p {
        width: 100%;
    }

    .approach-map img {
        width: 280px;
    }

    .point-1,
    .point-2 {
        right: 0;
    }

    .point-3,
    .point-4 {
        left: 0;
    }
}

@media (max-width: 390px) {
    h1 {
        font-size: 34px;
        line-height: 105%;
    }

    h2 {
        font-size: 22px;
    }

    p.subtitle {
        font-size: 18px;
        line-height: 140%;
    }

    .services-section-title {
        font-size: 27px;
    }

    .container {
        width: min(100% - 24px, 100%);
    }

    .hero-inner {
        padding: 40px 0 24px;
        gap: 20px;
    }

    .hero-image img {
        width: 120%;
    }

    .btn {
        min-height: 54px;
        padding: 14px 18px;
        font-size: 15px;
    }

    .service-card {
        padding: 18px;
        gap: 14px;
    }

    .service-icon {
        width: 72px;
        height: 72px;
    }

    .service-icon img {
        width: 36px;
    }

    .service-info h2 {
        font-size: 22px;
    }

    .service-info p {
        margin-top: 10px;
        font-size: 15px;
    }

    .process-panel,
    .choose-panel,
    .approach-panel,
    .cta-panel,
    .service-detail-panel {
        padding: 20px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-inner {
        gap: 24px;
    }

    .footer-nav nav,
    .footer-services nav {
        gap: 12px;
    }

    .footer-bottom {
        margin-left: 0;
        font-size: 12px;
        line-height: 140%;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-image img {
        max-width: 300px;
    }

    .expertise-card {
        padding: 20px;
    }

    .faq-trigger span {
        font-size: 14px;
    }

    .page-hero-content h1 {
        font-size: 34px;
    }

    .page-hero-content h2 {
        font-size: 18px;
        line-height: 140%;
    }

    .news-card {
        padding: 18px;
    }

    .news-card h2 {
        font-size: 15px;
    }

    .news-card p {
        font-size: 14px;
    }

    .news-card-bottom {
        gap: 10px;
    }

    .services-page-hero h1 {
        font-size: 34px;
    }

    .services-page-hero .subtitle br {
        display: none;
    }

    .service-preview-content {
        padding: 22px 18px;
    }

    .service-preview-list {
        gap: 12px;
    }

    .service-page-hero h1 {
        font-size: 34px;
    }

    .service-page-hero-content p {
        font-size: 16px;
    }

    .service-page-hero-content ul {
        gap: 12px;
    }

    .service-cover-card {
        padding: 18px;
    }

    .service-cover-card h2 {
        font-size: 20px;
    }

    .dot-list li {
        font-size: 14px;
    }

    .contact-head h1 {
        font-size: 34px;
    }

    .contact-head .subtitle {
        font-size: 16px;
    }

    .contact-grid {
        margin-top: 32px;
        gap: 28px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info a {
        font-size: 16px;
    }
}