:root {
    --bg: #faf9f6;
    --white: #ffffff;
    --text: #101a29;
    --muted: #69717e;
    --border: #e7e7e4;
    --blue: #4d5cff;
    --blue-dark: #4050ed;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #e9e9e9;
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font: inherit;
}

.site {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--bg);
    overflow: hidden;
}

.header {
    height: 92px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-size: 11px;
    color: #222b37;
    transition: color .2s ease;
}

.nav a:hover {
    color: var(--blue);
}

.langs {
    display: flex;
    gap: 4px;
    margin-left: 28px;
}

.lang-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: #69717e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 8px;
    cursor: pointer;
}

.lang-btn.is-active {
    color: var(--blue);
}

.status-dot {
    width: 7px;
    height: 7px;
    margin-left: 18px;
    border-radius: 50%;
    background: var(--blue);
}

.hero {
    min-height: 620px;
    padding: 40px 60px 70px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 52%;
}

.eyebrow {
    color: var(--blue);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    display: flex;
    gap: 11px;
}

.hero h1 {
    margin-top: 18px;
    font-size: clamp(80px, 9vw, 132px);
    line-height: .9;
    font-weight: 700;
    letter-spacing: -0.085em;
}

.hero-description {
    max-width: 490px;
    margin-top: 34px;
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: -.025em;
}

.hero-actions {
    display: flex;
    align-items: center;
    margin-top: 34px;
    gap: 24px;
}

.button {
    min-height: 54px;
    padding: 0 26px 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    background: var(--blue);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(77, 92, 255, .18);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(77, 92, 255, .25);
}

.button span:last-child {
    font-size: 22px;
    line-height: 1;
}

.about-link {
    height: 42px;
    padding-left: 25px;
    border-left: 1px solid #d4d6da;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
}

.about-link span:last-child {
    font-size: 16px;
}

.hero-art {
    position: absolute;
    width: 740px;
    right: -80px;
    top: -30px;
    pointer-events: none;
}

.hero-art img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-ring {
    position: absolute;
    border: 24px solid rgba(255, 255, 255, .55);
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, .8),
        0 15px 40px rgba(80, 92, 170, .16);
    backdrop-filter: blur(4px);
    background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(124,139,255,.2));
}

.ring-one {
    width: 300px;
    height: 145px;
    border-radius: 50%;
    left: 75px;
    top: 105px;
    transform: rotate(32deg) skewX(-8deg);
}

.ring-two {
    width: 260px;
    height: 130px;
    border-radius: 50%;
    left: 130px;
    top: 150px;
    transform: rotate(32deg) skewX(-8deg);
    opacity: .7;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #ffffff 0, #dce2ff 18%, #8494ff 55%, #4c5cff 100%);
    box-shadow:
        inset -10px -12px 25px rgba(40, 50, 130, .25),
        0 20px 35px rgba(70, 82, 170, .2);
}

.orb-main {
    width: 65px;
    height: 65px;
    right: 95px;
    top: 60px;
}

.orb-small {
    width: 32px;
    height: 32px;
    left: 115px;
    bottom: 70px;
}

.art-shadow {
    position: absolute;
    width: 270px;
    height: 50px;
    left: 120px;
    bottom: 35px;
    background: rgba(86, 100, 210, .18);
    filter: blur(25px);
    border-radius: 50%;
}

.section {
    padding: 75px 60px;
}

.section-heading,
.projects-heading {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.section-heading > p {
    width: 320px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

h2 {
    margin-top: 9px;
    font-size: 44px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.06em;
}

.services-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.service-card {
    min-height: 270px;
    padding: 22px;
    position: relative;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.3);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4d7ff;
    background: #fff;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #f1f3fa;
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.service-card p {
    margin-top: 10px;
    color: #737b86;
    font-size: 13px;
    line-height: 1.5;
}

.card-arrow {
    position: absolute;
    bottom: 17px;
    left: 20px;
    color: #68717d;
    font-size: 18px;
}

.projects {
    padding-top: 25px;
}

.all-projects {
    align-self: flex-end;
    display: flex;
    gap: 12px;
    color: var(--blue);
    font-size: 10px;
}

.all-projects span:last-child {
    font-size: 17px;
}

.projects-grid {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.4);
    overflow: hidden;
    transition: transform .25s ease;
    display: block;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card.is-link {
    cursor: pointer;
}

.project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -12px;
}

.nda {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 16px;
    background: #ecece8;
    color: #5a6170;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .06em;
}

.project-image-photo {
    background: #ecece8;
}

.project-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.project-image {
    height: 185px;
    position: relative;
    overflow: hidden;
}

.project-image-dark {
    background: linear-gradient(145deg, #0b1527, #263750);
}

.mockup-dashboard {
    position: absolute;
    left: 12%;
    top: 15%;
    width: 76%;
    height: 70%;
    display: flex;
    border-radius: 3px;
    background: #152338;
    box-shadow: 0 20px 30px rgba(0,0,0,.25);
}

.mock-sidebar {
    width: 23%;
    background: #101b2c;
    border-right: 1px solid rgba(255,255,255,.05);
}

.mock-content {
    padding: 14px;
    flex: 1;
}

.mock-title {
    width: 55%;
    height: 7px;
    margin-bottom: 15px;
    background: #71809a;
    border-radius: 5px;
}

.mock-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-lines i {
    width: 75%;
    height: 4px;
    display: block;
    background: #33465f;
    border-radius: 5px;
}

.mock-lines i:nth-child(2) { width: 60%; }
.mock-lines i:nth-child(3) { width: 45%; }

.mock-chart {
    height: 60px;
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.mock-chart span {
    width: 15px;
    background: #6375e9;
    border-radius: 2px 2px 0 0;
}

.mock-chart span:nth-child(1) { height: 25%; }
.mock-chart span:nth-child(2) { height: 50%; }
.mock-chart span:nth-child(3) { height: 35%; }
.mock-chart span:nth-child(4) { height: 80%; }
.mock-chart span:nth-child(5) { height: 100%; }

.project-image-light {
    background: linear-gradient(145deg, #f0f0ee, #dfe3e5);
}

.phone {
    position: absolute;
    width: 90px;
    height: 160px;
    left: 50%;
    top: 13px;
    transform: translateX(-50%);
    border-radius: 15px;
    padding: 5px;
    background: #15191d;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
}

.phone-screen {
    height: 100%;
    padding: 12px 7px;
    border-radius: 11px;
    background: #f9fafb;
}

.phone-header {
    width: 35px;
    height: 5px;
    margin-bottom: 12px;
    background: #1c2732;
    border-radius: 5px;
}

.phone-card {
    height: 25px;
    margin-bottom: 6px;
    border-radius: 5px;
    background: #e7eaf0;
}

.phone-card:nth-child(3) {
    background: #d9e0f7;
}

.phone-button {
    height: 18px;
    margin-top: 12px;
    border-radius: 10px;
    background: var(--blue);
}

.mini-ui {
    position: absolute;
    left: 20%;
    top: 55px;
    width: 100px;
    padding: 10px;
    background: rgba(255,255,255,.75);
    border-radius: 5px;
    box-shadow: 0 15px 25px rgba(0,0,0,.08);
}

.mini-ui span {
    display: block;
    height: 5px;
    margin-bottom: 6px;
    background: #d8dce4;
    border-radius: 4px;
}

.project-image-green {
    background: linear-gradient(145deg, #344b38, #18261c);
}

.green-title {
    position: absolute;
    left: 22px;
    top: 30px;
    color: #e9eee7;
    font-size: 17px;
    line-height: 1.05;
}

.green-title strong {
    font-weight: 600;
}

.mountains {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 90px;
}

.mountains div {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 90px solid #203426;
}

.mountains div:first-child { left: 5%; }

.mountains div:last-child {
    right: -5%;
    border-left-width: 130px;
    border-right-width: 130px;
    border-bottom-color: #18271d;
}

.project-body {
    position: relative;
    padding: 0 18px 18px;
}

.project-meta .project-tag {
    margin-top: 0;
}

.project-tag {
    position: relative;
    display: inline-block;
    margin-top: -8px;
    padding: 7px 16px;
    border-radius: 16px;
    background: #6878ff;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(77,92,255,.2);
}

.project-body h3 {
    margin-top: 13px;
    font-size: 14px;
    font-weight: 600;
}

.project-body p {
    margin-top: 8px;
    color: #707985;
    font-size: 10px;
    line-height: 1.5;
}

.project-tech {
    margin-top: 18px;
    color: #7b828c;
    font-size: 8px;
}

.project-tech span {
    margin: 0 4px;
    color: #c2c5c9;
}

.rate {
    padding-top: 10px;
    padding-bottom: 20px;
}

.rate-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    background: #fff;
}

.rate-value {
    margin-top: 8px;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -.06em;
}

.rate-note {
    margin-top: 8px;
    color: #707985;
    font-size: 11px;
}

.contact {
    min-height: 205px;
    padding: 45px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: radial-gradient(circle at 85% 50%, rgba(124, 136, 255, .34), rgba(124, 136, 255, 0) 40%);
}

.contact h2 {
    margin-top: 8px;
    font-size: 35px;
}

.contact-content p {
    max-width: 350px;
    margin-top: 8px;
    color: #707985;
    font-size: 11px;
    line-height: 1.5;
}

.contact-actions {
    min-width: 300px;
}

.contact-links {
    display: flex;
    gap: 25px;
    margin-top: 18px;
}

.contact-links a {
    color: #59616d;
    font-size: 9px;
}

.footer {
    min-height: 60px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    color: #555e6a;
    font-size: 8px;
}

.footer small {
    margin-left: 8px;
    color: #a0a5ac;
}

.footer-right {
    color: #9ca1a8;
}

.footer-right i {
    margin: 0 7px;
    font-style: normal;
    color: #c4c7ca;
}

@media (max-width: 1000px) {
    .header,
    .section,
    .contact,
    .footer {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hero {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hero-art {
        right: -30px;
        opacity: .65;
    }

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

    .service-card {
        min-height: 190px;
    }

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

    .project-card:last-child {
        display: block;
    }

    .rate-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    body {
        background: var(--bg);
    }

    .header {
        height: 75px;
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .langs {
        margin-left: auto;
    }

    .status-dot {
        margin-left: 12px;
    }

    .hero {
        min-height: 650px;
        padding: 45px 20px 60px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(70px, 22vw, 120px);
        margin-top: 15px;
    }

    .hero-description {
        max-width: 330px;
        font-size: 15px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

      .hero-art {
        width: 560px;
        height: auto;
        right: -80px;
        top: 260px;
        opacity: .85;
    }

    .section {
        padding: 65px 20px;
    }

    .section-heading,
    .projects-heading {
        display: block;
    }

    .section-heading > p {
        width: 100%;
        max-width: 420px;
        margin-top: 20px;
    }

    h2 {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 30px;
    }

    .service-card {
        min-height: 200px;
    }

    .projects {
        padding-top: 10px;
    }

    .all-projects {
        margin-top: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .project-card:last-child {
        display: block;
    }

    .project-image {
        height: 210px;
    }

    .contact {
        padding: 55px 20px;
        display: block;
    }

    .contact h2 {
        font-size: 32px;
    }

    .contact-actions {
        margin-top: 30px;
        min-width: 0;
    }

    .contact-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer {
        min-height: 75px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 72px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-art {
        right: -40px;
        width: 420px;
    }
}

.case {
    padding: 20px 60px 80px;
}

.case-back {
    display: inline-flex;
    gap: 8px;
    color: var(--blue);
    font-size: 11px;
    margin-bottom: 28px;
}

.case-cover {
    height: 280px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

.case-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.case-body {
    max-width: 760px;
    padding-top: 36px;
}

.case-body h1 {
    margin-top: 10px;
    font-size: clamp(32px, 5vw, 44px);
    letter-spacing: -.06em;
    font-weight: 600;
}

.case-lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
    max-width: 62ch;
}

.case-body h2 {
    margin-top: 36px;
    font-size: 22px;
}

.case-body p,
.case-body li {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.case-body ul {
    margin-top: 12px;
    padding-left: 18px;
}

.case-body li + li {
    margin-top: 8px;
}

.case-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

@media (max-width: 700px) {
    .case {
        padding: 10px 20px 60px;
    }

    .case-cover {
        height: 200px;
    }
}
