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

:root {
    --primary-color: rgb(145, 75, 241);
    --bg-color: rgb(16, 17, 18);
    --text-white: #ffffff;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-color);
    overflow-x: hidden;
    color: var(--text-white);
}

.header {
    width: 100%;
    position: relative;
    z-index: 1000;
    will-change: transform, opacity;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.425rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

@media(max-width:1150px){
    .nav-menu {
        gap: 1rem;
    }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
}

.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.nav-link::before {
    content: '{';
    left: -0.5rem;
    transform: translateY(-50%) translateX(-10px);
}

.nav-link::after {
    content: '}';
    right: -0.5rem;
    transform: translateY(-50%) translateX(10px);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::before,
.nav-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.header-cta-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0;
    margin: 0;
}

.header-cta {
    position: relative;
    display: inline-block;
    padding: 0.625rem 2rem;
    border: 2px solid #fff;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: var(--primary-color);
    transition: 0.2s ease-in-out;
    transform: scaleY(1);
}

.header-cta:hover::before {
    transform: scaleY(0);
}

.header-cta::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: var(--primary-color);
    transition: 0.2s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.header-cta:hover::after {
    transform: scaleX(0);
}

.header-cta span {
    position: relative;
    z-index: 3;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
}

@media(max-width:1150px){
    .header-right{
        gap:1rem;
    }
}

@media(max-width:968px){
    .header-right{
        gap:0.5rem;
    }
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-switcher-desktop {
    display: block;
}

.lang-switcher-mobile {
    display: none;
}

.lang-switcher-mobile-menu {
    display: none;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-switcher-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-white);
    background: rgba(145, 75, 241, 0.1);
}

.lang-switcher-btn:focus {
    outline: none;
    border-color: var(--primary-color);
}

.lang-current {
    min-width: 28px;
    text-align: center;
}

.lang-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.lang-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(145, 75, 241, 0.1);
    color: var(--text-white);
}

.lang-option.active {
    color: var(--primary-color);
    background: rgba(145, 75, 241, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

.section {
    padding: 6rem 0;
    background: var(--bg-color);
}


.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    text-transform: none;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    will-change: transform, opacity;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    font-weight: 400;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    text-align: left;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}


.hero-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(16, 17, 18);
    overflow: hidden;
    padding-top: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-height: calc(100vh - 240px);
}

.hero-content > * {
    will-change: transform, opacity;
}

@media(max-width:768px){
    .hero-content { 
        min-height: calc(100vh - 160px);
    }
}

.code-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.code-background canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.tech-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 600px;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    will-change: transform, opacity;
}

.description-text {
    flex: 1;
    padding-right:50px;
}

@media(max-width:768px){
    .description-text {
        padding-right:55px;
    }
}

.description-link {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6f6f6f;
    border-radius: 50%;
    color: #6f6f6f;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: absolute;
    right: 50px;
    top: 0;
    transform: rotate(45deg);
}

@media(max-width:768px){
    .description-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        right:0;
    }  
}

.description-link:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
}


.description-link svg {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
    height: 30px;
    bottom: 0;
    left: 0;
    margin: auto;
    fill: #fff;
    transition: all 0.6s ease;
}

@media(max-width:768px){
    .description-link svg {
        width: 20px;
        height: 20px;
    }
}

.description-link:hover svg {
    transform: rotate(-45deg) translateX(4px) translateY(-4px);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    row-gap: 0.1em;
    column-gap: 0.3em;
    will-change: transform, opacity;
}

.title-group {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 0.1em;
}

.hero-title > .title-brace {
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-title > .title-text {
    white-space: nowrap;
    flex-shrink: 0;
}

@media(max-width: 1200px){
    .hero-title{
        max-width: 100%;
    }
}


.title-brace {
    color: var(--primary-color);
    font-weight: 400;
}

.title-text {
    color: #ffffff;
    font-weight: 400;
}

.title-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform, opacity;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    will-change: transform, opacity;
}

.cta-button-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.cta-button-primary a {
    position: relative;
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border: 2px solid #fff;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

.cta-button-primary a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: var(--primary-color);
    transition: 0.3s ease-in-out;
    transform: scaleY(1);
}

.cta-button-primary a:hover::before {
    transform: scaleY(0);
}

.cta-button-primary a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: var(--primary-color);
    transition: 0.3s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.cta-button-primary a:hover::after {
    transform: scaleX(0);
}

.cta-button-primary a span {
    position: relative;
    z-index: 3;
}

.cta-button-secondary {
    background-color: var(--bg-color);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.cta-button-secondary a {
    position: relative;
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

.cta-button-secondary a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: var(--bg-color);
    transition: 0.2s ease-in-out;
    transform: scaleY(1);
}

.cta-button-secondary a:hover::before {
    transform: scaleY(0);
}

.cta-button-secondary a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: var(--bg-color);
    transition: 0.2s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.cta-button-secondary a:hover::after {
    transform: scaleX(0);
}

.cta-button-secondary a span {
    position: relative;
    z-index: 3;
}

.cta-button {
    background-color: var(--bg-color);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.cta-button a {
    position: relative;
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

.cta-button a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: var(--bg-color);
    transition: 0.3s ease-in-out;
    transform: scaleY(1);
}

.cta-button a:hover::before {
    transform: scaleY(0);
}

.cta-button a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: var(--bg-color);
    transition: 0.3s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.5s;
}

.cta-button a:hover::after {
    transform: scaleX(0);
}

.cta-button a span {
    position: relative;
    z-index: 3;
}

.cta-button a .brace-left,
.cta-button a .brace-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fefefe;
    font-size: 1.2em;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 4;
}

.cta-button a .brace-left {
    left: -1.5rem;
    transform: translateY(-50%) translateX(-10px);
}

.cta-button a .brace-right {
    right: -1.5rem;
    transform: translateY(-50%) translateX(10px);
}

.cta-button a:hover .brace-left,
.cta-button a:hover .brace-right {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.companies-marquee {
    width: 100%;
    padding: 4rem 0 4rem 0;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-color);
    z-index: 1;
    will-change: opacity;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 50s linear infinite;
    will-change: transform;
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
}

.company-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-33.333%));
    }
}

.mobile-menu-cta {
    display: none;
}


@media(max-width:1150px){
    .header-container{
        gap:1.5rem;
    }
}


@media (max-width: 968px) {
    .header-container {
        padding: 1.25rem 1.5rem;
        gap: 2rem;
    }

    .lang-switcher-desktop {
        display: none;
    }

    .lang-switcher-mobile {
        display: block;
    }

    .lang-switcher-mobile-menu {
        display: block;
        width: 100%;
        margin-top: 1rem;
        position: relative;
    }

    .lang-switcher-mobile-menu .lang-switcher-btn {
        width: 100%;
        justify-content: space-between;
    }

    .lang-switcher-mobile-menu .lang-dropdown {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .lang-switcher-mobile-menu.active .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem;
        padding-top: calc(73px + 2rem);
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-cta {
        display: block;
        background-color: var(--primary-color);
        border: none;
        padding: 0;
        margin: 0;
        margin-top: 1rem;
        width: 100%;
        cursor: pointer;
    }

    .mobile-cta-link {
        position: relative;
        display: inline-block;
        padding: 0.875rem 2rem;
        border: 2px solid #fff;
        text-transform: uppercase;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .mobile-cta-link::before {
        content: '';
        position: absolute;
        top: 6px;
        left: -2px;
        width: calc(100% + 4px);
        height: calc(100% - 12px);
        background-color: var(--primary-color);
        transition: 0.2s ease-in-out;
        transform: scaleY(1);
    }

    .mobile-cta-link:hover::before {
        transform: scaleY(0);
    }

    .mobile-cta-link::after {
        content: '';
        position: absolute;
        left: 6px;
        top: -2px;
        height: calc(100% + 4px);
        width: calc(100% - 12px);
        background-color: var(--primary-color);
        transition: 0.2s ease-in-out;
        transform: scaleX(1);
        transition-delay: 0.3s;
    }

    .mobile-cta-link:hover::after {
        transform: scaleX(0);
    }

    .mobile-cta-link span {
        position: relative;
        z-index: 3;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(2px, -3px);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }


    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }



    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .code-background canvas {
        opacity: 0.6 !important;
        filter: brightness(1.5) contrast(1.3);
    }

    .tech-canvas {
        opacity: 0.9 !important;
        filter: brightness(1.4) contrast(1.2);
    }

    .hero-content {
        padding: 6rem 1.5rem;
        text-align: left;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }
    
    .hero-subtitle {
        margin-bottom: 3rem;
    }

    .description-link {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .companies-marquee {
            padding: 2rem 0 2rem 0;
    }

    .marquee-item {
        height: 70px;
    }

    .company-logo {
        max-height: 70px;
        max-width: 180px;
    }

    .marquee-track {
        gap: 3rem;
        animation: marquee 35s linear infinite;
    }
    
    .hero-title {
        margin-bottom: 3rem;
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 1.5rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary,
    .cta-button {
        width: 100%;
        max-width: 100%;
    }

    .cta-button-primary a,
    .cta-button-secondary a,
    .cta-button a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .section {
        padding: 6rem 1rem 3rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-top: 0;
    }

    .header-container {
        padding: 1rem;
    }

    .hero-content {
        padding: 6rem 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 2.5rem;
    }



    .code-background canvas {
        opacity: 0.6 !important;
        filter: brightness(1.8) contrast(1.5);
    }

    .tech-canvas {
        filter: brightness(1.6) contrast(1.4);
    }

    .marquee-item {
        height: 60px;
    }

    .company-logo {
        max-height: 60px;
        max-width: 150px;
    }

    .marquee-track {
        gap: 2rem;
        animation: marquee 30s linear infinite;
    }

    .hero-title {
        font-size: clamp(2rem, 15vw, 3rem);
        margin-bottom: 2.5rem;
        line-height: 1.1;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
    }

    .cta-button-primary,
    .cta-button-secondary,
    .cta-button {
        width: 100%;
        max-width: 100%;
    }

    .cta-button-primary a,
    .cta-button-secondary a,
    .cta-button a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    text-transform: none;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    will-change: transform, opacity;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    font-weight: 400;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0;
    background: rgba(145, 75, 241, 0.1);
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    will-change: transform, opacity;
}

.section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.section-about {
    background: var(--bg-color);
    position: relative;
    z-index:5;
}

.about-content {
    max-width: 100%;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    text-align: left;
    position: relative;
    will-change: transform, opacity;
}

.about-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--bg-color);
    will-change: transform, opacity;
}

.about-video::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, transparent 100%, var(--bg-color), var(--bg-color) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.about-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 0%, transparent 100%, var(--bg-color) 100%),
                linear-gradient(to bottom, var(--bg-color) 0%, transparent 0%, transparent 100%, var(--bg-color) 100%);
    background-blend-mode: multiply;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.about-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: lighten;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
}

.features-json {
    position: relative;
    top: auto;
    margin-top: 0;
    border: none;
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    width: 100%;
    max-width: 100%;
    z-index: 1;
}

.json-line-numbers {
    position: absolute;
    top: 1.5rem;
    padding-right: 0.5rem;
    padding-top: 0;
    margin-top: 0;
    text-align: right;
    color: rgba(255, 255, 255, 0.3);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    line-height: 1.8;
    white-space: pre;
    border-right: 1px solid rgba(145, 75, 241, 0.2);
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    box-sizing: border-box;
}

.json-code {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: #ffffff;
    white-space: normal;
    position: relative;
    padding-left: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    will-change: contents;
}

.json-line {
    display: block;
    will-change: contents;
}

.json-indent-1 {
    padding-left: 1rem;
}

.json-indent-2 {
    padding-left: 2rem;
}

.json-indent-3 {
    padding-left: 3rem;
}

.json-brace {
    color: #ffffff;
    font-weight: 400;
}

.json-key {
    color: var(--primary-color);
}

.json-string {
    color: #ffffff;
    filter: none;
}

.json-string strong {
    font-weight: 700;
    color: #ffffff;
}

.json-icon-value {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.25rem;
    color: #ffffff;
    opacity: 1;
}

.json-icon-value svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 968px) {
    .features-json {
        padding: 1.25rem 1.25rem 1.25rem 0rem;
        margin-top: 2.5rem;
    }

    .json-code {
        padding-left: 2.5rem;
        font-size: 0.875rem;
    }

    .json-line-numbers {
        font-size: 0.875rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .features-json {
        padding: 1rem 1rem 1rem 0rem;
        margin-top: 2rem;
    }

    .json-code {
        padding-left: 2.25rem;
        font-size: 0.8125rem;
        line-height: 1.6;
    }

    .json-line-numbers {
        font-size: 0.8125rem;
        top: 1rem;
    }

    .json-icon-value svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .features-json {
        padding: 0.75rem 0.75rem 0.75rem 0rem;
    }

    .json-code {
        padding-left: 2rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .json-line-numbers {
        font-size: 0.75rem;
        line-height: 1.5;
        top: 0.75rem;
    }

    .json-icon-value svg {
        width: 12px;
        height: 12px;
    }
}

.floating-logo {
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
    @media(max-width: 968px){
        width: 700px;
        height: 700px;   
    }
    @media(max-width: 768px){
        width: 600px;
        height: 600px;   
        right: -40%;
        top: 50%;
    }
    @media(max-width: 400px){  
        right: -75%;
        top: 50%;
    }
}

@media (max-width: 400px) {
    .header-cta-button {
        display: none;
    }
    
    .lang-switcher-desktop,
    .lang-switcher-mobile {
        display: none;
    }
}

.floating-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(12px);
    transform: rotate(35deg);
}

.section-services {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 6rem 0 !important;
}

@media(max-width:768px){
    .section-services {
        padding: 1rem 0 3rem 0 !important;
    }
}

.services-header-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .services-header-mobile {
        display: block;
        margin-bottom: 3rem;
    }
    
    .services-header-mobile .section-title {
        margin-bottom: 0;
    }
}

.services-wrapper {
    position: relative;
    width: 100%;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-cards-container {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-bottom: 250px;
}

.service-card {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 80vh;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 50px;
    transform-origin: center center;
    will-change: transform, scale, opacity;
    box-sizing: border-box;
}

.services-cards-end{
    width:100%;
}

.service-card-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem;
    max-width:500px;
}

@media(max-width:1024px){
    .service-card-left {
        padding: 0rem;
    }
}

.service-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(119, 89, 194, 0.2);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    border: 1px solid rgba(119, 89, 194, 0.3);
}

.service-card-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.service-card-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-title svg {
    flex-shrink: 0;
    width:24px;
    height:24px;
}

@media(max-width: 768px){
    .feature-title svg {
        width:18px;
        height:18px;
    }
}

.feature-title-content {
    display: flex;
    align-items: center;
}

.feature-title-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.feature-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    padding-left: calc(25px + 0.75rem);
}

.service-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:1024px){
    .service-card-image {
        max-height:400px;
    }
}

@media(max-width:768px){
    .service-card-image  {
        max-height:300px;
    }
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-list li span {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-right: 0.5rem;
}

.service-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-pricing {
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.section-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(145, 75, 241, 0.15) 0%,
        rgba(138, 19, 205, 1) 50%,
        rgba(145, 75, 241, 0.65) 100%
    );
    z-index: 5;
}

.section-pricing .container{
    position: relative;
    z-index: 4 !important;
}

.pricing-bg {
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 60%;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: darken;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 100%);
    opacity: 0.2;
}

@media(max-width: 1024px){
    .pricing-bg {
        width: 80%;
        opacity:0.3'
    }
}
@media(max-width: 768px){
    .pricing-bg {
        width: 100%;
        opacity:0.4
    }
}

.section-pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgb(87 30 127 / 50%) 0%, rgb(109 24 157 / 20%) 20%, rgb(55 19 91 / 15%) 40%, var(--bg-color) 60%, var(--bg-color) 75%, var(--bg-color) 90%, var(--bg-color) 100%);
    z-index: 0;
    pointer-events: none;
}

.section-pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    transform: translateZ(0);
    border: 1px solid rgba(145, 75, 241, 0.2);
    background: rgba(145, 75, 241, 0.03);
}

.pricing-hover-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(145, 75, 241, 0.65) 0%,
        rgba(138, 19, 205, 0.65) 50.48%,
        rgba(99, 34, 162, 0.65) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
}

.pricing-hover-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -10%;
    right: -10%;
    border-radius: 100%;
    background: rgba(145, 75, 241, 0.25);
    filter: blur(12px);
    pointer-events: none;
    transform: translateZ(0);
}

.pricing-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -60%;
    right: -10%;
    border-radius: 100%;
    background: rgba(145, 75, 241, 0.25);
    filter: blur(52px);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
    opacity: 0.3;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}


.pricing-card-featured {
    border: none;
    background: rgba(145, 75, 241, 0.08);
    position: relative;
    transition: box-shadow 0.4s ease;
    overflow: hidden;
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(145, 75, 241, 0.45) 0%,
        rgba(22, 31, 66, 1) 30%,
        rgba(57, 42, 159, 1) 69%,
        rgba(99, 34, 162, 1) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
    transition: background 0.4s ease;
}

.pricing-card-featured::after {
    opacity: 1;
}

.pricing-card-featured .pricing-title {
    color: #fff;
    font-weight: 500;
}

.pricing-card-featured .pricing-description {
    color: rgba(255, 255, 255, 0.8);
}


.pricing-badge {
    position: absolute;
    right: 2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(119, 89, 194, 0.2);
    color: var(--primary-color);
    font-size: 0.675rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    border: 1px solid rgba(119, 89, 194, 0.3);
    border-radius: 0;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.pricing-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: auto;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-list li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-list li span {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.pricing-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-list-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pricing-button {
    background-color: var(--primary-color);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
}

.pricing-button a {
    position: relative;
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border: 2px solid #fff;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.pricing-button a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: var(--primary-color);
    transition: 0.2s ease-in-out;
    transform: scaleY(1);
}

.pricing-button a:hover::before {
    transform: scaleY(0);
}

.pricing-button a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: var(--primary-color);
    transition: 0.2s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.pricing-button a:hover::after {
    transform: scaleX(0);
}

.pricing-button a span {
    position: relative;
    z-index: 3;
}

.pricing-button-featured a {
    border: 2px solid #fff;
    color: #fff;
}

.section-faq {
    background: var(--bg-color);
}

.faq-list {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.2s ease;
    will-change: transform, opacity;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.section-contacts {
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 100%;
    position: relative;
}

.contacts-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.contacts-logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-logo-img {
    position: absolute;
    right: -25%;
    top: -40%;
    width: 800px;
    height: auto;
    filter: blur(14px);
    z-index: 1;
}

@media(max-width:1024px){
    .contacts-logo-img {
        right: -20%;
        top: -50%;
        width: 600px;
        opacity:0.8;
    }
}

@media(max-width:768px){
    .contacts-logo-img {
        right: -20%;
        top: -50%;
        width: 600px;
        opacity:0.4;
        filter:blur(8px);
    }
}

.contacts-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, opacity;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(119, 89, 194, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    border-color: var(--primary-color);
    background: rgba(119, 89, 194, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(119, 89, 194, 0.1);
    border: 1px solid rgba(119, 89, 194, 0.3);
    border-radius: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.contact-item:hover .contact-icon {
    background: rgba(119, 89, 194, 0.2);
    border-color: var(--primary-color);
}

.contact-details {
    text-align: left;
    flex: 1;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text {
    color: rgba(255, 255, 255, 0.9);
}

.contacts-cta {
    margin-top: 1rem;
}

.cta-button-large a {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contacts-left {
        order: -1;
    }
    
    .contacts-logo-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .contacts-content {
        gap: 3rem;
    }
    
    .contacts-logo-wrapper {
        max-width: 300px;
    }
    
    .contact-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .contact-title {
        font-size: 1.125rem;
    }
    
    .contact-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .contacts-logo-wrapper {
        max-width: 250px;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .contacts-cta {
        margin-top: 0.5rem;
    }
    
    .cta-button-large a {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
}

.footer {
    background: var(--bg-color);
    border-top: 1px solid rgba(145, 75, 241, 0.2);
    padding: 3rem 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

[data-smooth-scroll] {
    cursor: pointer;
}

@media (max-width: 1024px) {
    .services-container {
        padding: 0 1.5rem;
    }
    
    .services-cards-container {
        padding-bottom: 0;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
        min-height: auto;
        height: auto;
        margin-bottom: 2rem;
    }
    
    .service-card-right {
        order: -1;
    }
    
    .service-card-image {
        min-height: 250px;
    }
    
    .service-card-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .service-card-description {
        font-size: 1rem;
    }
    
    .feature-title-text {
        font-size: 0.9375rem;
    }
    
    .feature-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        text-align: left;
    }

    .about-video {
        order: -1;
    }


    .contact-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .contact-details {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card-image {
        min-height: 200px;
    }

    .feature-description {
        padding-left: calc(18px + 0.75rem);
    }
    
    .service-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .code-background canvas {
        opacity: 0.6 !important;
        filter: brightness(1.5) contrast(1.3);
    }

    .tech-canvas {
        opacity: 0.4 !important;
        filter: brightness(1.4) contrast(1.2);
    }

    .section-header {
        margin-bottom: 3rem;
        text-align: left;
    }

    .section-title {
        text-align: left;
        margin-bottom: 1.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: left;
        margin-top: 0;
    }

    .section-description {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        text-align: left;
    }

    .feature-item {
        text-align: left;
        align-items: flex-start;
    }

    .contact-item {
        text-align: left;
        align-items: flex-start;
    }

    .contact-details {
        text-align: left;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: auto;
        gap: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.45rem;
    }
    
    .service-card-description {
        font-size: 1rem;
    }
    
    .service-card-image {
        min-height: 250px;
    }

    .pricing-description {
        min-height: auto;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9375rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .service-title,
    .pricing-title {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 1.5rem;
    }

    .cta-button-large a {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 100%;
    }
}

