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

body {
    font-family: 'Fredoka', sans-serif;
    color: white;
    background: #000;
    overflow-x: hidden;
}

a {
    color: #fff;
}

.page {
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
}

/* Container - applies consistent max-width and centering to all sections */
.container {
    width: 100%;
    max-width: 2600px;
    margin: 0 auto;
    padding-left: 64px;
    padding-right: 64px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header */
.header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    padding: 0;
}

.logo {
    width: 230.027px;
    height: 32px;
    display: block;
}

.header-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.language-switch {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.28px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.language-switch:hover {
    color: #fff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    padding: 0 16px 0 12px;
    height: 32px;
    border-radius: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #d54630;
    border-radius: 6px;
}

.status-badge span {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.28px;
    white-space: nowrap;
}

/* Hide mobile status badge on desktop */
.status-badge-mobile {
    display: none;
}

.btn-contact {
    height: 48px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    background: transparent;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 96px;
    line-height: 96px;
    letter-spacing: 0.96px;
    color: white;
    margin: 0;
}

/* Content Block */
.content-block {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.content-inner {
    padding-top: 184px;
    padding-bottom: 184px;
}

.content-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: normal;
    color: white;
    margin: 0;
}

/* Services Block */
.services-block {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.section-header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.header-dash {
    position: absolute;
    right: calc(100% + 24px);
    top: 28px;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: #D54630;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 46px;
    line-height: normal;
    color: white;
    margin: 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: white;
    margin: 0;
}

.service-number {
    color: rgba(255, 255, 255, 0.5);
}

.service-description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: white;
    width: 777px;
    max-width: 100%;
}

.tech-tags {
    position: relative;
    width: 645px;
    max-width: 100%;
    opacity: 0.75;
    overflow: hidden;
}

.tags-scroll {
    display: flex;
    gap: 24px;
    align-items: center;
    overflow-x: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    will-change: transform;
    width: max-content;
}

.tags-scroll::-webkit-scrollbar {
    display: none;
}

.tags-scroll span {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: white;
    white-space: nowrap;
}

.fade-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 28px;
    background: linear-gradient(to right, #000000, rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}

.fade-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 28px;
    background: linear-gradient(to left, #000000, rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}

/* Contact Block */
.contact-block {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: normal;
    color: white;
}

.form-input {
    width: 600px;
    max-width: 100%;
    height: 64px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 18px;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

textarea.form-input {
    height: auto;
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: none;
    overflow: hidden;
}

.form-error {
    display: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #d54630;
    margin-top: 4px;
}

.form-status {
    display: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.form-status-success {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.form-status-error {
    background: rgba(213, 70, 48, 0.15);
    color: #d54630;
    border: 1px solid rgba(213, 70, 48, 0.3);
}

.btn-submit {
    height: 48px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    background: transparent;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.2s;
}

.btn-submit:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.recaptcha-notice {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Source Sans 3", sans-serif;
}

.recaptcha-notice a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.2s;
}

.recaptcha-notice a:hover {
    color: #fff;
}

/* Footer */
.footer {
    width: 100%;
}

.footer-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-logo {
    width: 230.027px;
    height: 32px;
    display: block;
}

.footer-contact {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

.footer-right {
    display: flex;
    align-items: center;
}

.copyright {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .hero-title {
        font-size: 72px;
        line-height: 72px;
    }

    .content-text {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        height: calc(100vh - 60px)
    }

    .hero-wrapper {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    /* Header mobile adjustments */
    .logo {
        width: 160px;
        height: 22.22px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hide desktop status badge on mobile */
    .status-badge-desktop {
        display: none;
    }

    /* Show mobile status badge on mobile */
    .status-badge-mobile {
        display: inline-flex;
        margin-top: 24px;
    }

    .btn-contact {
        height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 42px;
    }

    .content-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .content-text {
        font-size: 22px;
    }

    .services-inner,
    .contact-inner {
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }

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

    .service-title {
        font-size: 24px;
        line-height: 32px;
    }

    .service-description {
        font-size: 16px;
        line-height: 24px;
    }

    .tags-scroll span {
        font-size: 16px;
        line-height: 24px;
    }

    .form-label {
        font-size: 20px;
    }

    .form-input {
        font-size: 16px;
        height: 56px;
    }

    .btn-submit {
        height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }

    .footer-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-logo {
        width: 160px;
        height: 22.22px;
    }

    .footer-contact {
        font-size: 14px;
    }

    .copyright {
        font-size: 14px;
    }
}


.grecaptcha-badge {
    visibility: hidden !important;
}
