body {
    font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
    color: #111111;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.sec-title,
.services-showcase__title,
.contact-lead__title,
.solution-title,
.feature--title,
.service-tile__title {
    font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
    letter-spacing: -0.03em;
}

.hero-tiger{
    width: clamp(300px, 45vw, 800px);
    height: auto;
}

.banner-title--logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.banner-title__logo {
    width: auto;
    height: clamp(30px, 3.35vw, 58px);
    display: block;
}

.banner-title__subtitle {
    display: inline-block;
    padding: 0 5px;
    background: linear-gradient(-135deg, rgb(247, 168, 51) 1.527%, rgb(235, 151, 42) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(26px, 3vw, 52px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.contact-lead {
    min-height: 100svh;
    padding: clamp(36px, 6vw, 74px) 0;
    background: linear-gradient(135deg, #f3c9d2 0%, #f4e6a6 100%);
    display: flex;
    align-items: center;
}

.contact-lead__title {
    margin: 0;
    color: #111111;
    font-size: clamp(42px, 4.4vw, 72px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.contact-lead__head {
    margin-bottom: clamp(28px, 5vw, 46px);
    text-align: center;
}

.contact-form-card {
    width: 100%;
    padding: clamp(28px, 3vw, 44px);
    border: 2px solid #111111;
    background: transparent;
    color: #111111;
}

.contact-form-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 4vw, 56px);
    margin-bottom: 12px;
}

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

.contact-field {
    display: grid;
    gap: 10px;
}

.contact-field--full {
    width: 100%;
    margin-top: 4px;
}

.contact-field__label {
    color: #111111;
    font-size: clamp(18px, 1.05vw, 24px);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 350;
}

.contact-field__input {
    width: 100%;
    min-height: 0;
    padding: 0 0 9px;
    border: 0;
    border-bottom: 2px solid #111111;
    border-radius: 0;
    background: transparent;
    color: #111111;
    font-size: clamp(20px, 1.22vw, 26px);
    line-height: 1.3;
    outline: none;
    box-shadow: none !important;
    transition: border-color 0.25s ease;
}

.contact-field__input:focus {
    border-bottom-color: #111111;
}

.contact-field__input::placeholder,
.contact-field__textarea::placeholder {
    color: rgba(17, 17, 17, 0.48);
}

.contact-field__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contact-field__select option {
    background: #f4e6a6;
    color: #111111;
}

.contact-field__textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form-card__note {
    margin: 2px 0 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: clamp(13px, 0.86vw, 16px);
    max-width: 64ch;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #111111;
    font-size: 15px;
    line-height: 1.45;
    margin-top: 14px;
}

.contact-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #111111;
}

.contact-form-card__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}

.contact-form-card__submit {
    justify-self: center;
    border: 2px solid #111111;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: clamp(20px, 1.12vw, 30px);
    font-weight: 600;
    color: #111111;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.contact-form-card__submit:hover {
    transform: translateY(-1px);
    background: #111111;
    color: #f4e6a6;
}

.contact-form-card__submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.contact-form-card__status {
    margin: 0;
    color: #6c2a33;
    min-height: 1.2em;
    font-size: 14px;
    display: none;
}

.contact-form-card__status[data-state="success"] {
    color: #111111;
}

.contact-form-card__status[data-state="error"] {
    color: #6c2a33;
}

.contact-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.contact-popup[hidden] {
    display: none;
}

.contact-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.42);
}

.contact-popup__dialog {
    position: relative;
    width: min(100%, 480px);
    padding: 30px 28px 26px;
    background: #ffffff;
    color: #111111;
    border: 2px solid #111111;
}

.contact-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #111111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.contact-popup__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-popup__title {
    margin: 0 0 12px;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.05;
}

.contact-popup__message {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    max-width: 32ch;
}

.contact-popup__action {
    margin-top: 22px;
    border: 2px solid #111111;
    border-radius: 999px;
    padding: 11px 24px;
    background: #111111;
    color: #fff7dc;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

body.contact-popup-open {
    overflow: hidden;
}

.comment {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative !important;
    overflow: hidden !important;
    background: #111111 !important;
}

.comment .px-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.comment::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.36);
    z-index: 1;
}

.comment-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-desc {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
}

.services-showcase {
    padding: 42px 0 24px;
}

.services-showcase .px-container {
    max-width: none;
    width: calc(100vw - 32px);
    margin-left: calc(50% - 50vw + 16px);
    margin-right: calc(50% - 50vw + 16px);
    padding-left: 0;
    padding-right: 0;
}

.services-showcase__intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
    padding: 0 24px;
}

.services-showcase__eyebrow {
    margin: 0 0 10px;
    color: #a06b19;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services-showcase__title {
    max-width: 760px;
    margin: 0;
    color: #121212;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    justify-content: center;
}

.service-tile {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    aspect-ratio: 917 / 688;
    min-height: 0;
    height: auto;
    border-radius: 0;
    background-color: #141414;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    isolation: isolate;
}

@media (min-width: 1880px) {
    .services-grid {
        grid-template-columns: repeat(2, 917px);
        grid-auto-rows: 688px;
    }

    .service-tile {
        width: 917px;
        height: 688px;
        aspect-ratio: auto;
    }
}

.service-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.service-tile:hover::before {
    transform: scale(1.08);
}

.service-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.06) 0%, rgba(9, 9, 9, 0.2) 45%, rgba(9, 9, 9, 0.52) 100%);
    transition: background 0.4s ease;
}

.service-tile__content {
    position: absolute;
    inset: 32px;
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.service-tile__label {
    display: none;
}

.service-tile__title {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(34px, 2.8vw, 44px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.05em;
    transform: translateY(0) scale(1);
    transform-origin: center center;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.service-tile__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22%;
    max-width: 390px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(16px, 1.08vw, 20px);
    line-height: 1.55;
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.service-tile--web::before {
    background-image: linear-gradient(135deg, rgba(218, 164, 88, 0.28), rgba(0, 0, 0, 0.08)), url("../img/website.webp");
}

.service-tile--mobile::before {
    background-image: linear-gradient(135deg, rgba(94, 126, 255, 0.26), rgba(0, 0, 0, 0.08)), url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1200&q=80");
}

.service-tile--marketing::before {
    background-image: linear-gradient(135deg, rgba(255, 172, 71, 0.22), rgba(0, 0, 0, 0.08)), url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80");
}

.service-tile--systems::before {
    background-image: linear-gradient(135deg, rgba(89, 206, 184, 0.2), rgba(0, 0, 0, 0.08)), url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80");
}

.service-tile:hover .service-tile__overlay {
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.18) 0%, rgba(9, 9, 9, 0.34) 42%, rgba(9, 9, 9, 0.74) 100%);
}

.service-tile:hover .service-tile__title {
    transform: translateY(-72px) scale(0.82);
}

.service-tile:hover .service-tile__text {
    opacity: 1;
    transform: translateY(0);
}

.brand-logo {
    display: block;
    width: clamp(170px, 16vw, 240px);
    height: auto;
    padding: 0;
    background: transparent;
}

.footer-brand-link {
    text-decoration: none;
}

.footer-brand-logo {
    display: block;
    width: clamp(150px, 14vw, 220px);
    height: auto;
}

.footer-brand-contacts {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.footer-brand-contact {
    display: inline-block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-brand-contact:hover {
    color: #ffffff;
}

.wsc-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
}

.wsc-footer > .footer-container:empty {
    display: none;
}

.wsc-footer::before,
.wsc-footer::after {
    content: none !important;
    display: none !important;
}

@media (min-width: 1025px) {
    #wsc-header .navbar.navbar-expand-1024.fixed-top {
        display: block;
        height: auto !important;
        min-height: 0;
        padding: 0;
        background: #ffffff !important;
    }

    .header-container {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 20px;
        max-width: 1480px;
        margin: 0 auto;
        padding: 20px 24px;
        height: auto !important;
        min-height: 0;
    }

    .header-logo-container {
        order: 0;
        grid-column: 2;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        justify-self: center;
        align-self: center;
        z-index: 5;
        height: auto !important;
        min-height: 0;
    }

    .header-logo-container .navbar-brand {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0;
        height: auto !important;
        min-height: 0;
    }

    .brand-logo {
        width: 220px;
        max-width: 100%;
    }

    .desktop-header-nav {
        display: flex;
        align-items: center;
        gap: clamp(16px, 2.2vw, 42px);
        min-width: 0;
        width: 100%;
    }

    .desktop-header-nav--left {
        order: 0;
        grid-column: 1;
        justify-content: center;
        padding-right: clamp(28px, 4vw, 72px);
    }

    .desktop-header-nav--right {
        order: 0;
        grid-column: 3;
        justify-content: center;
        padding-left: clamp(28px, 4vw, 72px);
    }

    .header-language-switch {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 6;
    }

    .header-language-switch[open] {
        z-index: 10;
    }

    .header-language-switch__summary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 58px;
        padding: 8px 0;
        border: 0;
        background: transparent;
        color: #121212;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        line-height: 1;
        list-style: none;
        cursor: pointer;
    }

    .header-language-switch__summary::-webkit-details-marker {
        display: none;
    }

    .header-language-switch__menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 140px;
        padding: 8px 0;
        background: #ffffff;
        display: grid;
        gap: 0;
        z-index: 6;
    }

    .header-language-switch__link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(18, 18, 18, 0.7);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.2;
        padding: 10px 14px;
    }

    .header-language-switch__link.is-active {
        color: #121212;
    }

    .header-language-switch__summary::before,
    .header-language-switch__link::before {
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50%;
        flex: 0 0 16px;
        background: linear-gradient(180deg, #ffffff 0 33.33%, #2246b8 33.33% 66.66%, #c92a2a 66.66% 100%);
    }

    .header-language-switch__link[lang="ro"]::before {
        background: linear-gradient(90deg, #2246b8 0 33.33%, #f4d34f 33.33% 66.66%, #c92a2a 66.66% 100%);
    }

    .header-language-switch__link[lang="en"]::before,
    .header-language-switch__summary[data-lang="en"]::before {
        background: url("../img/flag-uk.svg") center / cover no-repeat;
    }

    .header-language-switch__summary[data-lang="ro"]::before {
        background: linear-gradient(90deg, #2246b8 0 33.33%, #f4d34f 33.33% 66.66%, #c92a2a 66.66% 100%);
    }

    .desktop-header-link {
        color: #121212 !important;
        font-size: clamp(12px, 0.95vw, 14px);
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        white-space: nowrap;
        text-decoration: none;
        line-height: 1.2;
        padding: 0;
    }

    .bg-transparent .desktop-header-link {
        color: #121212 !important;
    }

    #navbarMainContent {
        display: none !important;
    }

    #wsc-header,
    #wsc-header nav,
    #wsc-header .header-container,
    #wsc-header .desktop-header-nav,
    #wsc-header .desktop-header-link,
    #wsc-header .header-language-switch,
    #wsc-header .header-language-switch__link,
    #wsc-header .header-logo-container,
    #wsc-header .navbar-brand {
        box-sizing: border-box;
    }
}


@media (max-width: 1251px) {
    .services-showcase__intro {
        align-items: start;
        flex-direction: column;
    }

    .services-showcase__title {
        max-width: 100%;
    }
}

@media (max-width: 570px) {
    .banner {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
        min-height: auto !important;
        margin-top: 0;
    }

    .banner .px-container.banner-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .banner-left,
    .banner-right {
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .banner-title--logo {
        align-items: center;
        gap: 8px;
    }

    .banner-title__logo {
        display: none;
    }

    .banner-title__subtitle {
        font-size: clamp(28px, 9vw, 38px);
    }

    .banner-btn-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .banner-btn-white {
        margin-left: 0;
    }

    .banner-right {
        display: flex;
        justify-content: center;
    }

    .hero-tiger {
        display: block;
        width: min(100%, 360px);
        max-width: 88vw;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .contact-lead {
        min-height: auto;
        padding: 34px 0;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .contact-lead__title {
        font-size: clamp(34px, 11vw, 46px);
    }

    .contact-form-card__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-card__col {
        gap: 20px;
    }

    .contact-field {
        gap: 8px;
    }

    .contact-field__label {
        font-size: clamp(16px, 5vw, 21px);
    }

    .contact-field__input {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .contact-form-card__note {
        font-size: 13px;
    }

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

    .contact-form-card__footer {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-card__submit {
        width: min(220px, 100%);
        font-size: 26px;
        padding: 11px 24px;
    }

    .services-showcase {
        padding: 16px 0 4px;
    }

    .services-showcase .px-container {
        width: calc(100vw - 24px);
        margin-left: calc(50% - 50vw + 12px);
        margin-right: calc(50% - 50vw + 12px);
    }

    .services-showcase__intro {
        display: block;
        margin-bottom: 18px;
        padding: 0 8px;
    }

    .services-showcase__title {
        font-size: 30px;
        line-height: 1.15;
    }

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

    .service-tile,
    .service-tile--web,
    .service-tile--mobile {
        aspect-ratio: 917 / 688;
        min-height: 0;
        border-radius: 0;
    }

    .service-tile__content {
        inset: 20px;
    }

    .service-tile__title {
        font-size: clamp(26px, 7vw, 34px);
    }

    .service-tile__text {
        bottom: 18%;
        max-width: 290px;
        font-size: 14px;
        line-height: 1.5;
    }

    .service-tile:hover .service-tile__title {
        transform: translateY(-46px) scale(0.86);
    }

    .brand-logo {
        width: clamp(124px, 34vw, 162px);
    }

    .footer-brand-logo {
        width: clamp(138px, 42vw, 176px);
    }

    .footer-brand-contacts {
        margin-top: 14px;
        justify-items: center;
    }

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

@media (max-width: 1024px) {
    .desktop-header-nav {
        display: none;
    }
}



@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

.desktop-header-link.is-active {
    color: #121212 !important;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.36em;
}

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

.site-shared-footer {
    background: #0d0d0d;
    color: #ffffff;
}

.site-shared-footer__inner {
    padding: 34px 0 40px;
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.site-shared-footer__meta {
    display: grid;
    gap: 8px;
}

.site-shared-footer__lead {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.site-shared-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
    max-width: 54ch;
}

.site-shared-footer__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.site-shared-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-page {
    background: #ffffff;
    color: #111111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    width: 100%;
}

.service-page .px-container {
    width: 100%;
    max-width: 1248px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.service-page main {
    background: #ffffff;
    flex: 1 0 auto;
    padding-top: 96px;
    overflow-x: hidden;
}

.service-page-hero {
    min-height: 560px;
    padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 7vw, 88px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.92)),
        var(--service-hero-image, linear-gradient(135deg, #f4d7dd 0%, #f4e6a6 100%));
    background-size: cover;
    background-position: center;
}

.service-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(28px, 4vw, 70px);
    align-items: end;
}

.service-page-hero__eyebrow {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8f5f1d;
}

.service-page-hero__title {
    margin: 0 0 20px;
    max-width: 11ch;
    font-size: clamp(44px, 6vw, 88px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.service-page-hero__lead {
    max-width: 58ch;
    margin: 0;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.58;
    color: rgba(17, 17, 17, 0.78);
}

.service-page-hero__panel {
    padding: clamp(24px, 3vw, 36px);
    border: 2px solid #111111;
    background: rgba(255, 255, 255, 0.78);
}

.service-page-hero__panel-title {
    margin: 0 0 18px;
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.2;
    font-weight: 700;
}

.service-page-hero__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.service-page-hero__list li {
    padding-top: 14px;
    border-top: 1px solid rgba(17, 17, 17, 0.18);
    font-size: 16px;
    line-height: 1.5;
}

.service-page-section {
    padding: clamp(48px, 7vw, 92px) 0;
}

.service-page-section--muted {
    background: #f7f2ea;
}

.service-page-section__head {
    display: grid;
    gap: 14px;
    margin-bottom: clamp(28px, 4vw, 44px);
    max-width: 780px;
}

.service-page-section__eyebrow {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8f5f1d;
}

.service-page-section__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.service-page-section__lead {
    margin: 0;
    font-size: clamp(17px, 1.15vw, 20px);
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.72);
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-page-card {
    min-height: 100%;
    padding: 26px 24px 24px;
    border: 2px solid #111111;
    background: #ffffff;
}

.service-page-card__index {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8f5f1d;
}

.service-page-card__title {
    margin: 0 0 12px;
    font-size: clamp(22px, 1.65vw, 30px);
    line-height: 1.08;
    font-weight: 700;
}

.service-page-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.76);
}

.service-page-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-page-step {
    padding: 22px 20px 24px;
    border-top: 3px solid #111111;
}

.service-page-step__num {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8f5f1d;
}

.service-page-step__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

.service-page-step__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.74);
}

.service-page-cta {
    padding: clamp(46px, 6vw, 72px) 0 clamp(60px, 7vw, 96px);
}

.service-page .wsc-footer {
    background: #0d0d0d;
    color: #ffffff;
    margin-top: auto;
    overflow-x: clip;
}

.service-page-cta__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(26px, 3vw, 40px);
    border: 2px solid #111111;
    background: linear-gradient(135deg, #f3c9d2 0%, #f4e6a6 100%);
}

.service-page-cta__title {
    margin: 0 0 10px;
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.service-page-cta__text {
    margin: 0;
    max-width: 48ch;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.78);
}

.service-page-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 28px;
    border: 2px solid #111111;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.service-page-footer {
    padding: 34px 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-page-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.service-page-footer__links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.service-page-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .header-container {
        padding: 14px 18px;
    }

    .header-logo-container {
        justify-content: flex-end;
        width: 100%;
    }

    .header-language-switch {
        display: none;
    }

    .mobile-header-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        padding: 0 18px 14px;
        background: #ffffff;
        border-top: 1px solid rgba(17, 17, 17, 0.08);
    }

    .mobile-header-link {
        color: #121212;
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mobile-header-link.is-active {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 0.32em;
    }

    .mobile-language-switch {
        position: relative;
        margin-left: 8px;
    }

    .mobile-language-switch__summary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 54px;
        padding: 7px 0;
        border: 0;
        background: transparent;
        color: #121212;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        line-height: 1;
        list-style: none;
        cursor: pointer;
    }

    .mobile-language-switch__summary::-webkit-details-marker {
        display: none;
    }

    .mobile-language-switch__menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 132px;
        padding: 8px 0;
        background: #ffffff;
        display: grid;
        gap: 0;
        z-index: 8;
    }

    .mobile-language-switch__link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(18, 18, 18, 0.7);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.2;
        padding: 10px 14px;
    }

    .mobile-language-switch__link.is-active {
        color: #121212;
    }

    .mobile-language-switch__summary::before,
    .mobile-language-switch__link::before {
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50%;
        flex: 0 0 16px;
        background: linear-gradient(180deg, #ffffff 0 33.33%, #2246b8 33.33% 66.66%, #c92a2a 66.66% 100%);
    }

    .mobile-language-switch__link[lang="ro"]::before,
    .mobile-language-switch__summary[data-lang="ro"]::before {
        background: linear-gradient(90deg, #2246b8 0 33.33%, #f4d34f 33.33% 66.66%, #c92a2a 66.66% 100%);
    }

    .mobile-language-switch__link[lang="en"]::before,
    .mobile-language-switch__summary[data-lang="en"]::before {
        background: url("../img/flag-uk.svg") center / cover no-repeat;
    }

    .site-shared-footer__inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .site-shared-footer__links {
        justify-content: flex-start;
    }

    .service-page main {
        padding-top: 72px;
    }

    .service-page-hero__grid,
    .service-page-cta__wrap {
        grid-template-columns: 1fr;
    }

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

    .service-page-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 570px) {
    .service-page .px-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-page-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .service-page-hero__title {
        max-width: none;
    }

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

    .service-page-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-page-footer__links {
        flex-wrap: wrap;
    }
}
