:root {
    --wt-red: #c80008;
    --wt-red-dark: #8f0006;
    --wt-red-soft: #fff0f0;
    --wt-pink: #fff7f5;
    --wt-yellow: #ffc928;
    --wt-ink: #161313;
    --wt-muted: #665d5a;
    --wt-line: rgba(200, 0, 8, .14);
    --wt-white: #fffdfb;
    --wt-shadow: 0 24px 70px rgba(120, 0, 0, .12);
}

html {
    scroll-behavior: smooth;
}

body.wetech-home-page {
    margin: 0;
    color: var(--wt-ink);
    background: var(--wt-white);
    font-family: "Manrope", Arial, sans-serif;
}

.wetech-home-page .page-wrapper {
    overflow: visible;
}

.wt-site,
.wt-site * {
    box-sizing: border-box;
}

.wt-site {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 201, 40, .18), transparent 24rem),
        linear-gradient(180deg, #fff9f8 0%, #fffdfb 42%, #fff7f5 100%);
}

.wt-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-soft {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 245, 242, .96), rgba(255, 253, 251, .98)),
        radial-gradient(circle at 85% 20%, rgba(200, 0, 8, .08), transparent 18rem);
}

.section-soft:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(90deg, rgba(200, 0, 8, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(200, 0, 8, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 80% 10%, #000, transparent 42%);
}

.wt-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--wt-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.wt-site h1,
.wt-site h2,
.wt-site h3,
.wt-site p {
    margin-top: 0;
}

.wt-site h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--wt-ink);
    font-size: clamp(38px, 4.9vw, 64px);
    font-weight: 900;
    line-height: 1;
}

.wt-site h2 {
    color: var(--wt-ink);
    font-size: clamp(30px, 3.4vw, 50px);
    font-weight: 900;
    line-height: 1.04;
}

.wt-site h3 {
    color: var(--wt-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.18;
}

.wt-site p {
    color: var(--wt-muted);
    font-size: 16px;
    line-height: 1.7;
}

.wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    gap: 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.wt-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.wt-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--wt-red), var(--wt-red-dark));
    box-shadow: 0 18px 38px rgba(200, 0, 8, .24);
}

.wt-btn-primary:hover {
    color: #fff;
    box-shadow: 0 22px 46px rgba(200, 0, 8, .30);
}

.wt-btn-outline {
    color: var(--wt-red);
    border: 1px solid rgba(200, 0, 8, .42);
    background: rgba(255, 255, 255, .66);
}

.wt-btn-outline:hover {
    color: var(--wt-red-dark);
    background: #fff;
}

.wt-btn-dark {
    color: #211300;
    border: 1px solid rgba(33, 19, 0, .16);
    background: rgba(255, 255, 255, .32);
}

.wt-btn-light {
    color: var(--wt-red);
    background: #fff;
}

.wt-btn-ghost-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .08);
}

.wt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wt-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: none;
    transition:
        opacity .72s ease,
        transform .72s cubic-bezier(.22, 1, .36, 1),
        filter .72s ease,
        clip-path .86s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--wt-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.wt-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
}

.wt-reveal-fade {
    transform: none;
}

.wt-reveal-left {
    transform: translate3d(-30px, 0, 0);
}

.wt-reveal-right {
    transform: translate3d(30px, 0, 0);
}

.wt-reveal-scale {
    transform: translate3d(0, 18px, 0) scale(.98);
}

.wt-reveal-title {
    position: relative;
    transform: translate3d(0, 22px, 0);
}

.wt-reveal-title.is-visible {
    animation: wt-title-signal .95s ease both;
}

.wt-reveal-title.is-visible:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: min(120px, 42%);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, currentColor, var(--wt-red), transparent);
    opacity: 0;
    pointer-events: none;
    animation: wt-title-line .9s ease .12s both;
}

.wt-reveal-text {
    transform: translate3d(0, 18px, 0);
    filter: blur(3px);
}

.wt-reveal-media {
    clip-path: inset(0 14% 0 0 round inherit);
    transform: translate3d(0, 18px, 0) scale(.985);
}

.wt-reveal-media.is-visible {
    clip-path: inset(0 0 0 0 round inherit);
}

.wt-reveal-card {
    transform: translate3d(0, 26px, 0) scale(.975);
    filter: saturate(.86) brightness(.96);
}

.wt-reveal-card.is-visible {
    animation: wt-card-boot .82s cubic-bezier(.22, 1, .36, 1) both;
}

.wt-reveal-cta {
    transform: translate3d(0, 16px, 0) scale(.98);
}

.wt-reveal-cta.is-visible {
    animation: wt-cta-power .78s ease both;
}

.wt-reveal-logo {
    transform: translate3d(0, 14px, 0) scale(.94);
    filter: grayscale(.35) brightness(.96);
}

.wt-reveal-logo.is-visible {
    filter: grayscale(0) brightness(1);
}

.wt-reveal-card:hover {
    filter: saturate(1.08) brightness(1.02);
}

.wt-number-card.wt-reveal-card.is-visible i,
.wt-service-card.wt-reveal-card.is-visible .wt-service-link-icon,
.wt-highlight-card.wt-reveal-card.is-visible i {
    animation: wt-icon-signal .78s ease .18s both;
}

.wt-reveal-cta .wt-btn i {
    transition: transform .2s ease;
}

.wt-reveal-cta .wt-btn:hover i {
    transform: translateX(3px);
}

.wt-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 72px;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(200, 0, 8, .10);
    border-radius: 999px;
    background: #fffdfb;
    box-shadow: 0 16px 46px rgba(88, 0, 0, .12);
    transform: translateX(-50%);
    backdrop-filter: none;
}

.wt-header.is-scrolled {
    background: #fffdfb;
    box-shadow: 0 16px 46px rgba(88, 0, 0, .12);
    backdrop-filter: none;
}

.wt-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--wt-red);
    text-decoration: none;
}

.wt-logo:hover {
    color: var(--wt-red);
    text-decoration: none;
}

.wt-logo img {
    display: block;
    width: 190px;
    height: auto;
    max-height: 48px;
    opacity: 1;
    filter: none;
    image-rendering: auto;
    object-fit: contain;
    transform: none;
}

.wt-logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--wt-red), #ef3138);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.wt-logo-text {
    display: grid;
    color: var(--wt-red);
    font-size: 24px;
    font-weight: 900;
    line-height: .9;
}

.wt-logo-text small {
    margin-top: 5px;
    color: #ef3138;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.wt-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.4vw, 24px);
}

.wt-nav a {
    color: #332b29;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

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

.wt-header-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
}

.wt-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--wt-red);
}

.wt-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.wt-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.wt-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.wt-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.wt-hero {
    position: relative;
    padding: 142px 0 54px;
    background: var(--wt-hero-bg-desktop, linear-gradient(135deg, #201716, #3a2220));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.wt-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(9, 8, 8, .78) 0%, rgba(9, 8, 8, .58) 42%, rgba(9, 8, 8, .12) 76%, rgba(9, 8, 8, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
    pointer-events: none;
}

.wt-hero-bg-track {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.wt-hero-bg-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image: var(--wt-layer-bg-desktop);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.015);
    transition: opacity .85s ease, transform 5s ease;
    will-change: opacity, transform;
}

.wt-hero-bg-layer.is-active {
    opacity: 1;
    transform: scale(1);
}

.wt-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
    align-items: center;
    gap: 54px;
    min-height: 660px;
}

.wt-hero-copy p {
    max-width: 640px;
    margin-bottom: 34px;
    font-size: 18px;
}

.wt-hero h1 {
    color: #fff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .38);
}

.wt-hero-copy p {
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, .34);
}

.wt-hero h1.is-entering {
    animation: wt-hero-text-in .72s cubic-bezier(.22, 1, .36, 1) both;
}

.wt-hero-copy p.is-entering {
    animation: wt-hero-text-in .72s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.wt-hero .wt-btn-primary {
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28), 0 18px 38px rgba(200, 0, 8, .30);
}

.wt-hero .wt-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .72);
    background: rgba(10, 8, 8, .34);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.wt-hero .wt-btn-outline:hover {
    color: var(--wt-red-dark);
    border-color: #fff;
    background: #fff;
}

.wt-hero-visual {
    position: relative;
    min-height: 540px;
}

.wt-hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
}

.wt-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    transition: width .2s ease, background .2s ease, border-color .2s ease;
}

.wt-hero-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    border-color: #fff;
    background: #fff;
}

.mockup-laptop {
    position: absolute;
    right: 5%;
    bottom: 88px;
    width: min(94%, 580px);
    height: 340px;
    padding: 18px;
    border: 14px solid #24201f;
    border-bottom-width: 32px;
    border-radius: 28px;
    background: linear-gradient(145deg, #420006, #c90008 58%, #720005);
    box-shadow: 0 38px 80px rgba(75, 0, 4, .22);
}

.mockup-laptop:after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -54px;
    width: 84%;
    height: 18px;
    border-radius: 0 0 38px 38px;
    background: linear-gradient(90deg, #bbb, #f5f5f5, #aaa);
}

.mockup-topbar {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
}

.mockup-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
}

.mockup-dashboard {
    display: grid;
    grid-template-columns: 102px 1fr;
    gap: 18px;
    height: 240px;
}

.dash-sidebar,
.dash-content {
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
}

.dash-sidebar {
    background-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0), linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    background-repeat: no-repeat;
    background-size: 64px 7px, 54px 7px, 70px 7px, 48px 7px;
    background-position: 20px 30px, 20px 70px, 20px 110px, 20px 150px;
    opacity: .86;
}

.dash-content {
    position: relative;
    padding: 26px;
}

.dash-content span {
    display: block;
    width: 100%;
    height: 36px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
}

.dash-content strong {
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.mockup-phone {
    position: absolute;
    right: 0;
    bottom: 36px;
    width: 156px;
    height: 316px;
    padding: 28px 16px;
    border: 10px solid #241f1e;
    border-radius: 34px;
    background: linear-gradient(145deg, #f12b33, #9d0007);
    box-shadow: -28px 32px 62px rgba(85, 0, 5, .26);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 54px;
    height: 7px;
    border-radius: 999px;
    background: #241f1e;
    transform: translateX(-50%);
}

.phone-logo {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 18px auto 26px;
    place-items: center;
    border-radius: 18px;
    color: var(--wt-red);
    background: #fff;
    font-size: 30px;
    font-weight: 900;
}

.mockup-phone span {
    display: block;
    height: 12px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
}

.code-chip {
    position: absolute;
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--wt-red), #8b0005);
    box-shadow: var(--wt-shadow);
    font-weight: 900;
}

.chip-a {
    top: 98px;
    left: 8%;
}

.chip-b {
    top: 160px;
    right: 0;
}

.circuit-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(200, 0, 8, .48), transparent);
}

.line-a {
    top: 118px;
    right: 5%;
    width: 72%;
}

.line-b {
    bottom: 72px;
    left: 10%;
    width: 68%;
}

.circuit-line:before,
.circuit-line:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--wt-red);
    transform: translateY(-50%);
}

.circuit-line:before {
    left: 18%;
}

.circuit-line:after {
    right: 14%;
}

.wt-trust {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid rgba(200, 0, 8, .08);
    border-bottom: 1px solid rgba(200, 0, 8, .08);
}

.wt-trust-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 34px;
}

.wt-trust p {
    margin: 0;
    color: #4b4140;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.wt-client-carousel {
    position: relative;
    overflow: hidden;
}

.wt-client-carousel:before,
.wt-client-carousel:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 52px;
    pointer-events: none;
}

.wt-client-carousel:before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.wt-client-carousel:after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.wt-client-track {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wt-client-carousel.is-animated .wt-client-track {
    width: max-content;
    animation: wt-client-marquee var(--wt-client-duration, 24s) linear infinite;
}

.wt-client-carousel:not(.is-animated) .wt-client-list-clone {
    display: none;
}

.wt-client-list {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}

.wt-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(124px, 13vw, 180px);
    height: 100px;
    border-radius: 16px;
    background: #faf7f6;
    padding: 14px 18px;
    overflow: visible;
}

.wt-client-logo img {
    display: block;
    flex: 0 1 auto;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center center;
}

@keyframes wt-client-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

@keyframes wt-title-signal {
    0% {
        text-shadow: 0 0 0 rgba(200, 0, 8, 0);
    }

    38% {
        text-shadow: 0 0 18px rgba(200, 0, 8, .22);
    }

    100% {
        text-shadow: 0 0 0 rgba(200, 0, 8, 0);
    }
}

@keyframes wt-hero-text-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes wt-title-line {
    0% {
        opacity: 0;
        transform: scaleX(.12);
        transform-origin: left center;
    }

    42% {
        opacity: .7;
    }

    100% {
        opacity: 0;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes wt-card-boot {
    0% {
        filter: saturate(.86) brightness(.96);
    }

    46% {
        filter: saturate(1.08) brightness(1.04);
    }

    100% {
        filter: saturate(1) brightness(1);
    }
}

@keyframes wt-cta-power {
    0% {
        box-shadow: none;
    }

    44% {
        box-shadow: 0 0 0 5px rgba(255, 201, 40, .14), 0 0 28px rgba(200, 0, 8, .18);
    }

    100% {
        box-shadow: none;
    }
}

@keyframes wt-icon-signal {
    0% {
        transform: scale(.9);
        filter: brightness(.92);
    }

    48% {
        transform: scale(1.08);
        filter: brightness(1.14);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes wt-zoom-hint-pulse {
    0% {
        opacity: .72;
        transform: scale(.88);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.32);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wt-reveal {
        opacity: 1;
        clip-path: none;
        filter: none;
        transform: none;
        transition: none;
    }

    .wt-reveal.is-visible,
    .wt-reveal-title.is-visible,
    .wt-reveal-card.is-visible,
    .wt-reveal-cta.is-visible,
    .wt-number-card.wt-reveal-card.is-visible i,
    .wt-service-card.wt-reveal-card.is-visible .wt-service-link-icon,
    .wt-highlight-card.wt-reveal-card.is-visible i {
        animation: none;
    }

    .wt-reveal-title.is-visible:after {
        display: none;
    }

    .wt-testimonial-zoom-hint:after {
        animation: none;
    }
}

.wt-numbers {
    position: relative;
    padding: 76px 0;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 201, 40, .22), transparent 20rem),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, .16), transparent 19rem),
        linear-gradient(135deg, #7e0005 0%, #b50008 48%, #790005 100%);
}

.wt-numbers:before,
.wt-final-cta:before,
.wt-footer:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(110deg, transparent 0 48%, rgba(255,255,255,.45) 49%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 120px 80px, 18px 18px;
}

.wt-numbers:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 64%);
    pointer-events: none;
}

.wt-numbers-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, .95fr) repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.wt-numbers-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 190px;
    padding: 30px 28px 30px 0;
}

.wt-numbers-intro span {
    display: block;
    max-width: 300px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.wt-numbers-intro p {
    max-width: 280px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.6;
}

.wt-number-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
    box-shadow: 0 24px 54px rgba(54, 0, 0, .16);
    overflow: hidden;
}

.wt-number-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 42%);
    opacity: .46;
    pointer-events: none;
}

.wt-number-card i {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .10);
    font-size: 28px;
}

.wt-number-card strong {
    position: relative;
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(44px, 4.1vw, 62px);
    font-weight: 900;
    line-height: 1;
}

.wt-number-card span {
    position: relative;
    display: block;
    max-width: 150px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.wt-about {
    padding: 96px 0 110px;
}

.wt-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 78px;
}

.wt-about .wt-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(28px, 2.8vw, 42px);
}

.wt-copy p {
    max-width: 600px;
    margin-bottom: 28px;
}

.wt-about-visual {
    position: relative;
    min-height: 430px;
}

.wt-office-scene {
    position: absolute;
    inset: 0 54px 24px 0;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(18, 15, 15, .12), rgba(18, 15, 15, .52)),
        linear-gradient(135deg, #2a2a2a, #f4f1ee 42%, #111);
    box-shadow: var(--wt-shadow);
}

.wt-office-scene:before {
    content: "";
    position: absolute;
    inset: 34px 30px auto;
    height: 118px;
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 36px 36px;
}

.wt-office-scene.has-image:before {
    display: none;
}

.wt-office-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-screen {
    position: absolute;
    border-radius: 12px;
    background: linear-gradient(135deg, #151313, #bd0008);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

.office-screen.main {
    right: 78px;
    bottom: 104px;
    width: 178px;
    height: 106px;
}

.office-screen.side {
    left: 74px;
    bottom: 94px;
    width: 136px;
    height: 86px;
}

.office-people {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 48px;
    display: flex;
    justify-content: space-between;
}

.office-people span {
    width: 58px;
    height: 82px;
    border-radius: 36px 36px 10px 10px;
    background: linear-gradient(#1b1818 0 32%, var(--wt-red) 33% 100%);
}

.wt-highlight-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 232px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffd650, #ffb600);
    box-shadow: 0 24px 54px rgba(151, 98, 0, .22);
}

.wt-highlight-card i {
    display: block;
    margin-bottom: 26px;
    color: #251800;
    font-size: 30px;
}

.wt-highlight-card strong {
    color: #402800;
    font-size: 17px;
    line-height: 1.35;
}

.wt-services {
    position: relative;
    padding: 116px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(200, 0, 8, .28), transparent 36%),
        linear-gradient(165deg, #171110 0%, #261614 48%, #110d0c 100%);
}

.wt-services:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.wt-services:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: linear-gradient(90deg, var(--wt-yellow), var(--wt-red), var(--wt-yellow));
    pointer-events: none;
}

.wt-services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 54px;
}

.wt-services-callout {
    position: relative;
    min-height: auto;
    padding: 0;
}

.wt-services-callout:before {
    content: "";
    display: block;
    width: 92px;
    height: 6px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: var(--wt-yellow);
}

.wt-services .wt-eyebrow {
    color: var(--wt-yellow);
}

.wt-services-callout h2 {
    max-width: 420px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(36px, 3.8vw, 58px);
}

.wt-services-callout p {
    max-width: 360px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .76);
}

.wt-services-callout .wt-btn {
    border-color: rgba(255, 255, 255, .18);
    color: #251800;
    background: linear-gradient(135deg, #ffe071, var(--wt-yellow));
    box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
}

.wt-service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.wt-service-card {
    position: relative;
    display: block;
    flex: 1 1 230px;
    max-width: 290px;
    min-height: 318px;
    padding: 12px 12px 58px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 22px;
    background: #fffdfb;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
    color: var(--wt-ink);
    text-decoration: none;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wt-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 201, 40, .86);
    color: var(--wt-ink);
    text-decoration: none;
    box-shadow: 0 30px 66px rgba(0, 0, 0, .24);
}

.wt-service-media {
    position: relative;
    aspect-ratio: 16 / 10.5;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff4f1;
}

.wt-service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-service-content {
    min-width: 0;
}

.wt-service-card h3 {
    position: relative;
    margin-bottom: 10px;
    padding: 0 4px;
}

.wt-service-card p {
    position: relative;
    display: -webkit-box;
    max-width: 100%;
    margin-bottom: 0;
    padding: 0 4px;
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.wt-service-link-icon {
    position: absolute;
    right: 22px;
    bottom: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--wt-red), var(--wt-red-dark));
    font-size: 16px;
}

.wt-process {
    padding: 86px 0;
    background: linear-gradient(180deg, #fff7f5, #fffdfb);
}

.wt-section-head {
    margin-bottom: 42px;
}

.wt-section-head.compact {
    max-width: 430px;
}

.wt-section-head.inline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.wt-section-head.inline a {
    color: var(--wt-red);
    font-weight: 900;
    text-decoration: none;
}

.wt-section-head.center {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.wt-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
}

.wt-timeline:before {
    content: "";
    position: absolute;
    top: 22px;
    left: 52px;
    right: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--wt-red), rgba(200, 0, 8, .18));
}

.wt-step {
    position: relative;
    z-index: 1;
}

.wt-step span {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    place-items: center;
    border: 5px solid #fff7f5;
    border-radius: 50%;
    color: #fff;
    background: var(--wt-red);
    font-size: 11px;
    font-weight: 900;
}

.wt-step h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

.wt-step p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
}

.wt-cases {
    position: relative;
    padding: 86px 0 96px;
    overflow: hidden;
    border-top: 1px solid rgba(200, 0, 8, .08);
    border-bottom: 1px solid rgba(200, 0, 8, .08);
    background:
        linear-gradient(180deg, #fff 0%, #fff8f6 52%, #fff3ef 100%);
}

.wt-cases-head {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-bottom: 0;
}

.wt-cases-head .wt-eyebrow {
    color: var(--wt-red);
    background: #fff0ee;
    border-color: rgba(200, 0, 8, .10);
}

.wt-cases-head h2 {
    max-width: 620px;
    color: var(--wt-ink);
    font-size: 40px;
    line-height: 1.08;
}

.wt-cases-head h2 strong {
    color: var(--wt-red);
    font-weight: 900;
}

.wt-cases-head p {
    max-width: 580px;
    margin: 14px 0 0;
    color: var(--wt-muted);
    font-size: 15px;
    line-height: 1.62;
}

.wt-portfolio-stage {
    position: relative;
    z-index: 1;
    width: min(100% - 36px, 1380px);
    margin: 34px auto 0;
}

.wt-portfolio-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    grid-auto-rows: 1fr;
    gap: 26px;
}

.wt-portfolio-card {
    position: relative;
    min-width: 0;
    aspect-ratio: 6 / 7;
    border: 0;
    border-radius: 0;
    background: #181313;
    box-shadow: 0 26px 68px rgba(80, 0, 0, .16);
    overflow: hidden;
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease;
}

.wt-portfolio-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, .44);
    transition: background-color .28s ease;
}

.wt-portfolio-card:after {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .18);
    transition: inset .28s ease, border-color .28s ease;
}

.wt-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 86px rgba(80, 0, 0, .22);
}

.wt-portfolio-card:hover:before {
    background: rgba(0, 0, 0, .62);
}

.wt-portfolio-card:hover:after {
    inset: 12px;
    border-color: rgba(255, 255, 255, .32);
}

.wt-portfolio-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #181313;
}

.wt-portfolio-image-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.wt-portfolio-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .46s ease;
}

.wt-portfolio-card:hover .wt-portfolio-frame img {
    transform: scale(1.08);
}

.wt-portfolio-info {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    width: min(100% - 38px, 300px);
    padding: 0 0 30px;
    text-align: center;
    transform: translateX(-50%);
    min-width: 0;
}

.wt-portfolio-info span {
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 8px;
    padding: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, .76);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wt-portfolio-info h3 {
    display: -webkit-box;
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: margin-bottom .28s ease;
}

.wt-portfolio-info p {
    display: -webkit-box;
    max-height: 0;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .28s ease;
}

.wt-portfolio-card:hover .wt-portfolio-info h3 {
    margin-bottom: 10px;
}

.wt-portfolio-card:hover .wt-portfolio-info p {
    max-height: 42px;
    opacity: 1;
}

.wt-portfolio-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(10, 8, 8, .88);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.wt-portfolio-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wt-portfolio-lightbox-content {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 96px);
    margin: 0;
    overflow: hidden;
    transition: transform .24s ease, max-width .24s ease;
}

.wt-portfolio-lightbox-content img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 130px);
    object-fit: contain;
    border-radius: 12px;
    background: #121010;
    box-shadow: 0 34px 110px rgba(0, 0, 0, .45);
    cursor: zoom-in;
    transition: transform .24s ease;
    transform-origin: center center;
}

.wt-portfolio-lightbox.is-zoomed .wt-portfolio-lightbox-content {
    overflow: auto;
}

.wt-portfolio-lightbox.is-zoomed .wt-portfolio-lightbox-content img {
    transform: scale(1.65);
    cursor: zoom-out;
}

.wt-portfolio-lightbox-content figcaption {
    margin-top: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.wt-portfolio-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.wt-portfolio-lightbox-close:hover {
    background: rgba(255, 255, 255, .18);
    transform: scale(1.04);
}

body.wt-lightbox-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

body.wt-lightbox-open .wt-site {
    width: 100%;
}

.wt-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    grid-template-rows: 1fr;
    background: rgba(5, 5, 6, .92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.wt-image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wt-image-lightbox-stage {
    display: grid;
    width: 100%;
    height: 100%;
    padding: 86px 24px 34px;
    place-items: center;
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: none;
}

.wt-image-lightbox-content {
    display: grid;
    justify-items: center;
    width: min(1180px, 100%);
    margin: 0;
}

.wt-image-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
    transition: transform .12s ease;
}

.wt-image-lightbox.is-zoomed .wt-image-lightbox-content {
    justify-items: center;
}

.wt-image-lightbox.is-zoomed .wt-image-lightbox-content img {
    cursor: grab;
}

.wt-image-lightbox.is-zoomed .wt-image-lightbox-content img:active {
    cursor: grabbing;
}

.wt-image-lightbox-content figcaption {
    margin-top: 14px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.wt-image-lightbox-close,
.wt-image-lightbox-controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #fff;
    background: rgba(18, 18, 20, .86);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .30);
    cursor: pointer;
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
}

.wt-image-lightbox-close {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 2;
}

.wt-image-lightbox-controls {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.wt-image-lightbox-close:hover,
.wt-image-lightbox-controls button:hover {
    background: rgba(200, 0, 8, .92);
    transform: translateY(-1px);
}

.wt-image-lightbox-controls button:disabled {
    cursor: default;
    opacity: .42;
    transform: none;
}

.wt-tech {
    padding: 86px 0;
    background: #fff;
}

.wt-tech-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 18px;
}

.wt-tech-card {
    display: grid;
    min-height: 126px;
    place-items: center;
    gap: 12px;
    border: 1px solid rgba(200, 0, 8, .10);
    border-radius: 18px;
    background: #fff9f8;
}

.wt-tech-card i {
    color: var(--wt-red);
    font-size: 32px;
}

.wt-tech-card span {
    color: var(--wt-ink);
    font-size: 14px;
    font-weight: 900;
}

.wt-testimonials {
    position: relative;
    padding: 108px 0 112px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(200, 0, 8, .28), transparent 36%),
        linear-gradient(165deg, #171110 0%, #261614 48%, #110d0c 100%);
    overflow: hidden;
}

.wt-testimonials:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.wt-testimonials:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: linear-gradient(90deg, var(--wt-yellow), var(--wt-red), var(--wt-yellow));
    pointer-events: none;
}

.wt-testimonials .wt-container {
    position: relative;
    z-index: 1;
}

.wt-testimonials-copy {
    display: grid;
    justify-items: center;
    margin: 0 auto 34px;
    text-align: center;
}

.wt-testimonials-copy h2 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
}

.wt-testimonials .wt-eyebrow {
    color: var(--wt-yellow);
}

.wt-testimonial-art {
    position: relative;
    margin: 0;
    width: min(1320px, calc(100vw - 36px));
    margin-inline: calc((min(1320px, calc(100vw - 36px)) - min(1180px, calc(100vw - 40px))) / -2);
    padding: clamp(14px, 2.3vw, 34px);
    border-radius: 30px;
    background: transparent;
    overflow: visible;
}

.wt-testimonial-art img {
    position: relative;
    display: block;
    width: 100%;
    max-height: min(76vh, 760px);
    object-fit: contain;
    border-radius: 16px;
    transition: opacity .32s ease;
}

.wt-testimonial-art img.is-changing {
    opacity: 0;
}

.wt-testimonial-zoom-hint {
    position: absolute;
    right: clamp(24px, 4vw, 56px);
    bottom: clamp(30px, 4.5vw, 62px);
    z-index: 3;
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .58);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .26);
    pointer-events: none;
}

.wt-testimonial-zoom-hint:after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: inherit;
    opacity: .7;
    animation: wt-zoom-hint-pulse 2.4s ease-out infinite;
}

.wt-testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .46);
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease;
}

.wt-testimonial-nav:hover {
    border-color: rgba(255, 255, 255, .52);
    background: rgba(0, 0, 0, .64);
}

.wt-testimonial-nav-prev {
    left: clamp(20px, 3vw, 48px);
}

.wt-testimonial-nav-next {
    right: clamp(20px, 3vw, 48px);
}

.wt-testimonial-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(24px, 3vw, 48px);
    z-index: 2;
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.wt-testimonial-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.wt-testimonial-dots button.is-active {
    background: #fff;
}

.wt-testimonial-viewer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    padding: 20px 14px;
    background: rgba(0, 0, 0, .94);
    overflow: hidden;
}

.wt-testimonial-viewer.is-open {
    display: grid;
    place-items: center;
}

.wt-testimonial-viewer-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .10);
}

.wt-testimonial-viewer-scroll {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wt-testimonial-viewer img {
    display: block;
    width: min(100%, 1120px);
    max-width: 100%;
    max-height: calc(100vh - 88px);
    margin: 0 auto;
    border-radius: 10px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform .24s ease;
    transform-origin: center center;
}

.wt-testimonial-viewer.is-zoomed img {
    transform: scale(1.72);
    cursor: zoom-out;
}

.wt-regions {
    position: relative;
    padding: 96px 0 88px;
    border-top: 1px solid rgba(200, 0, 8, .08);
    border-bottom: 1px solid rgba(200, 0, 8, .08);
    background:
        linear-gradient(180deg, #fffdfb 0%, #fff8f6 52%, #fffdfb 100%);
    overflow: hidden;
}

.wt-regions:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(200, 0, 8, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(200, 0, 8, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 18%, #000, transparent 46%);
}

.wt-regions:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 0, 8, .18), transparent);
    pointer-events: none;
}

.wt-regions .wt-container {
    position: relative;
    z-index: 1;
}

.wt-regions-head {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.wt-regions-head h2 {
    max-width: 680px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    font-size: 40px;
    line-height: 1.08;
}

.wt-regions-head h2 strong,
.wt-about-reach h2 strong {
    color: var(--wt-red);
    font-weight: 900;
}

.wt-coverage-map {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    padding: clamp(14px, 2.2vw, 28px);
    border: 1px solid rgba(200, 0, 8, .12);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(255, 249, 248, .96) 52%, rgba(255, 255, 255, .98) 100%);
    box-shadow: 0 28px 76px rgba(80, 0, 0, .10);
    overflow: hidden;
}

.wt-coverage-map:before,
.wt-about-map:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 0, 8, .08);
    border-radius: 18px;
    pointer-events: none;
}

.wt-coverage-map img {
    position: relative;
    display: block;
    width: min(100%, 1120px);
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(43, 25, 25, .10));
}

.wt-final-cta {
    position: relative;
    padding: 58px 0 34px;
    background: linear-gradient(180deg, #fff6f4, #fffdfb);
}

.wt-cta-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    align-items: center;
    min-height: 340px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 255, 255, .20), transparent 18rem),
        radial-gradient(circle at 88% 18%, rgba(255, 201, 40, .20), transparent 16rem),
        linear-gradient(135deg, #161010 0%, #790005 46%, var(--wt-red) 100%);
    box-shadow: 0 30px 80px rgba(130, 0, 0, .20);
}

.wt-cta-visual {
    position: relative;
    height: 100%;
    min-height: 340px;
    padding: 22px 0 22px 22px;
}

.wt-cta-visual:after {
    content: "";
    position: absolute;
    inset: 22px 0 22px 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    pointer-events: none;
}

.wt-cta-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 296px;
    border-radius: 22px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.wt-cta-copy {
    max-width: 680px;
    padding: 54px 58px;
}

.wt-cta-copy h2 {
    margin-bottom: 16px;
    color: #fff;
}

.wt-cta-copy p {
    max-width: 560px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .82);
}

.wt-about-page {
    position: relative;
    padding: 132px 0 88px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f6 52%, #fffdfb 100%);
    overflow: hidden;
}

.wt-about-page:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(22, 19, 19, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 19, 19, .035) 1px, transparent 1px);
    background-size: 78px 78px;
}

.wt-about-page .wt-container {
    position: relative;
    z-index: 1;
}

.wt-about-page-card {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    padding: clamp(18px, 2.5vw, 34px) clamp(18px, 3.4vw, 46px) clamp(34px, 4.2vw, 58px);
    border: 1px solid rgba(22, 19, 19, .10);
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 26px 72px rgba(70, 0, 0, .10);
}

.wt-about-page-hero {
    margin: 0 0 clamp(30px, 4vw, 46px);
    border-radius: 20px;
    background: #f6f0ee;
    overflow: hidden;
}

.wt-about-page-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
}

.wt-about-page-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.wt-about-page-content h1 {
    max-width: 780px;
    margin: 0 auto 22px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.wt-about-page-content h1:after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wt-yellow), var(--wt-red));
}

.wt-rich-text {
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    color: var(--wt-muted);
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
}

.wt-rich-text > *:first-child {
    margin-top: 0;
}

.wt-rich-text > *:last-child {
    margin-bottom: 0;
}

.wt-rich-text h1,
.wt-rich-text h2,
.wt-rich-text h3,
.wt-rich-text h4 {
    margin: 1.45em 0 .55em;
    color: var(--wt-ink);
}

.wt-rich-text p,
.wt-rich-text ul,
.wt-rich-text ol,
.wt-rich-text blockquote {
    margin-bottom: 1.1em;
}

.wt-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.wt-about-numbers,
.wt-about-reach {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
}

.wt-about-numbers {
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 201, 40, .22), transparent 20rem),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, .16), transparent 19rem),
        linear-gradient(135deg, #7e0005 0%, #b50008 48%, #790005 100%);
}

.wt-about-numbers:before,
.wt-about-reach:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    pointer-events: none;
    background-image:
        linear-gradient(110deg, transparent 0 48%, rgba(255,255,255,.45) 49%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 120px 80px, 18px 18px;
}

.wt-about-numbers .wt-container,
.wt-about-reach .wt-container {
    position: relative;
    z-index: 1;
}

.wt-about-numbers .wt-eyebrow,
.wt-about-numbers h2 {
    color: #fff;
}

.wt-about-number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.wt-about-number-card {
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
}

.wt-about-number-card i {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 14px;
    color: var(--wt-red);
    background: #fff;
    font-size: 20px;
}

.wt-about-number-card strong,
.wt-about-number-card span {
    display: block;
}

.wt-about-number-card strong {
    margin-bottom: 6px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.wt-about-number-card span {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 900;
}

.wt-about-reach {
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f6 54%, #fffdfb 100%);
}

.wt-about-reach:before {
    opacity: .5;
    background-image:
        linear-gradient(90deg, rgba(22, 19, 19, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 19, 19, .035) 1px, transparent 1px);
    background-size: 78px 78px;
}

.wt-about-map {
    position: relative;
    margin-top: 28px;
    padding: clamp(14px, 2.2vw, 26px);
    border: 1px solid rgba(200, 0, 8, .12);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(255, 249, 248, .96) 52%, rgba(255, 255, 255, .98) 100%);
    box-shadow: 0 28px 86px rgba(70, 0, 0, .10);
    overflow: hidden;
}

.wt-about-map img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(43, 25, 25, .10));
}

.wt-footer {
    position: relative;
    padding: 52px 0 18px;
    color: #fff;
    background: linear-gradient(135deg, #070707, #171110 56%, #000);
}

.wt-footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1.18fr 1.35fr;
    gap: 34px;
}

.wt-footer .wt-logo-text,
.wt-footer .wt-logo {
    color: #fff;
}

.wt-footer .wt-logo img {
    height: 58px;
    filter: brightness(0) invert(1);
}

.wt-footer .wt-logo-mark {
    color: var(--wt-red);
    background: #fff;
}

.wt-footer .wt-logo-text small {
    color: rgba(255, 255, 255, .78);
}

.wt-footer p {
    max-width: 260px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}

.wt-footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
}

.wt-footer a,
.wt-footer span {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    text-decoration: none;
}

.wt-footer span i {
    width: 18px;
    margin-right: 8px;
    color: rgba(255, 255, 255, .9);
}

.wt-footer a:hover {
    color: #fff;
}

.wt-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 14px 0 6px;
}

.wt-footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.wt-footer-socials a:hover {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .14);
}

.wt-footer .wt-logo {
    display: inline-flex;
}

.wt-footer .wt-logo-mark {
    display: grid;
    margin-bottom: 0;
}

.wt-footer .wt-logo-text {
    display: grid;
    margin-bottom: 0;
}

.wt-footer-cta {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    margin-top: 14px;
    padding: 13px 18px;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--wt-red), #ef3138);
    box-shadow: 0 14px 32px rgba(200, 0, 8, .28);
    font-weight: 900;
}

.wt-footer-cta:hover {
    transform: translateY(-1px);
}

.wt-footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.wt-footer-bottom span {
    margin: 0;
    font-size: 12px;
}

.wt-floating-whatsapp {
    position: fixed;
    z-index: 999;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #24d365;
    box-shadow: 0 14px 32px rgba(36, 211, 101, .34);
    font-size: 30px;
    text-decoration: none;
}

.wt-floating-whatsapp:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .wt-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        border-radius: 28px;
    }

    .wt-menu-toggle {
        display: block;
    }

    .wt-header-cta {
        display: none;
    }

    .wt-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: repeat(4, 1fr);
        padding: 18px;
        border: 1px solid rgba(200, 0, 8, .12);
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--wt-shadow);
    }

    .wt-nav.is-open {
        display: grid;
    }

    .wt-nav a {
        display: grid;
        min-height: 42px;
        place-items: center;
        border-radius: 12px;
        background: #fff7f6;
    }

    .wt-hero-grid,
    .wt-split {
        grid-template-columns: 1fr;
    }

    .wt-hero-grid {
        gap: 26px;
        min-height: 560px;
    }

    .wt-hero-visual {
        display: none;
        min-height: 0;
    }

    .wt-service-card {
        flex-basis: calc(50% - 12px);
        max-width: none;
    }

    .wt-numbers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wt-numbers-intro {
        grid-column: 1 / -1;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        min-height: auto;
        padding: 0 0 8px;
    }

    .wt-numbers-intro span,
    .wt-numbers-intro p {
        max-width: 360px;
    }

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

    .wt-timeline:before {
        display: none;
    }

    .wt-about-page-hero img {
        max-height: 520px;
    }

    .wt-about-number-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 820px) {
    .wt-container {
        width: min(100% - 28px, 680px);
    }

    .wt-header {
        top: 10px;
        width: calc(100% - 24px);
        min-height: 62px;
        padding: 9px 10px 9px 14px;
    }

    .wt-logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 22px;
    }

    .wt-logo-text {
        font-size: 21px;
    }

    .wt-logo img {
        width: 166px;
        height: auto;
        max-height: 42px;
    }

    .wt-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wt-hero {
        padding: 110px 0 34px;
        background: var(--wt-hero-bg-mobile, var(--wt-hero-bg-desktop, linear-gradient(135deg, #201716, #3a2220)));
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .wt-hero:after {
        background:
            linear-gradient(180deg, rgba(9, 8, 8, .82) 0%, rgba(9, 8, 8, .58) 54%, rgba(9, 8, 8, .24) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .06));
    }

    .wt-hero-bg-layer {
        background-image: var(--wt-layer-bg-mobile, var(--wt-layer-bg-desktop));
        background-position: center top;
    }

    .wt-hero-grid {
        min-height: 560px;
    }

    .wt-hero-copy p {
        font-size: 16px;
    }

    .wt-actions .wt-btn {
        flex: 1 1 220px;
    }

    .wt-hero-visual {
        display: none;
        min-height: 0;
    }

    .mockup-laptop {
        right: 4%;
        bottom: 56px;
        width: 92%;
        height: 244px;
        border-width: 10px;
        border-bottom-width: 24px;
        border-radius: 22px;
    }

    .mockup-dashboard {
        grid-template-columns: 76px 1fr;
        height: 160px;
    }

    .dash-content {
        padding: 18px;
    }

    .dash-content strong {
        font-size: 18px;
    }

    .mockup-phone {
        width: 104px;
        height: 216px;
        border-width: 7px;
        border-radius: 26px;
    }

    .phone-logo {
        width: 44px;
        height: 44px;
        margin-top: 6px;
        margin-bottom: 18px;
        font-size: 24px;
    }

    .code-chip {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

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

    .wt-client-logo {
        width: clamp(118px, 28vw, 160px);
    }

    .wt-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .wt-numbers-intro {
        display: block;
        padding-bottom: 2px;
    }

    .wt-number-card {
        min-height: 174px;
        padding: 24px 22px 22px;
    }

    .wt-about {
        padding: 72px 0;
    }

    .wt-split {
        gap: 34px;
    }

    .wt-about-visual {
        min-height: 360px;
    }

    .wt-office-scene {
        inset: 0 0 56px 0;
    }

    .wt-highlight-card {
        right: 18px;
        width: 205px;
        padding: 24px;
    }

    .wt-services-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        width: 100%;
    }

    .wt-services .wt-container {
        width: min(100% - 36px, 680px);
    }

    .wt-services {
        padding: 76px 0;
    }

    .wt-services-callout {
        min-height: auto;
        padding: 0;
    }

    .wt-services-callout h2 {
        max-width: 620px;
        margin-bottom: 16px;
    }

    .wt-services-callout p {
        max-width: 560px;
        margin-bottom: 24px;
    }

    .wt-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .wt-step {
        padding: 18px;
        border: 1px solid rgba(200, 0, 8, .10);
        border-radius: 18px;
        background: #fff;
    }

    .wt-step span {
        margin-bottom: 16px;
    }

    .wt-cases-head h2 {
        max-width: 560px;
        font-size: 34px;
    }

    .wt-portfolio-stage {
        width: calc(100% - 32px);
    }

    .wt-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .wt-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .wt-tech-card {
        min-height: 104px;
        border-radius: 14px;
    }

    .wt-tech-card i {
        font-size: 26px;
    }

    .wt-tech-card span {
        font-size: 12px;
    }

    .wt-testimonials {
        padding: 78px 0 82px;
    }

    .wt-testimonials-copy {
        justify-items: start;
        text-align: left;
    }

    .wt-testimonial-art {
        width: 100%;
        margin-inline: 0;
        border-radius: 20px;
        cursor: zoom-in;
        padding: 10px;
    }

    .wt-testimonial-zoom-hint {
        display: grid;
    }

    .wt-testimonial-art img {
        max-height: 620px;
        border-radius: 12px;
    }

    .wt-testimonial-viewer {
        padding: 18px 10px;
    }

    .wt-testimonial-viewer-scroll {
        overflow: hidden;
    }

    .wt-testimonial-viewer img {
        width: min(100%, 980px);
    }

    .wt-testimonial-viewer.is-zoomed img {
        transform: scale(1.62);
    }

    .wt-cta-panel {
        grid-template-columns: 1fr;
    }

    .wt-cta-visual {
        min-height: 240px;
        padding: 18px 18px 0;
    }

    .wt-cta-visual:after {
        inset: 18px 18px 0;
    }

    .wt-cta-visual img {
        min-height: 240px;
    }

    .wt-cta-copy {
        padding: 44px 24px;
    }

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

    .wt-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .wt-site h1 {
        font-size: 36px;
    }

    .wt-site h2 {
        font-size: 30px;
    }

    .wt-btn {
        min-height: 46px;
        padding: 0 16px;
        font-size: 13px;
    }

    .wt-logo-text small {
        display: none;
    }

    .wt-hero-visual {
        display: none;
        min-height: 0;
    }

    .mockup-laptop {
        bottom: 44px;
        height: 212px;
    }

    .mockup-dashboard {
        grid-template-columns: 58px 1fr;
        gap: 10px;
        height: 136px;
    }

    .dash-sidebar {
        background-size: 34px 6px, 28px 6px, 38px 6px, 32px 6px;
        background-position: 12px 24px, 12px 54px, 12px 84px, 12px 114px;
    }

    .mockup-phone {
        right: -4px;
        bottom: 20px;
    }

    .chip-a {
        top: 18px;
        left: 0;
    }

    .chip-b {
        top: 70px;
        right: 5px;
    }

    .wt-client-logo {
        width: clamp(112px, 42vw, 148px);
    }

    .wt-numbers {
        padding: 58px 0;
    }

    .wt-numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .wt-numbers-intro {
        grid-column: 1 / -1;
    }

    .wt-numbers-intro span,
    .wt-numbers-intro p {
        max-width: none;
    }

    .wt-number-card {
        min-height: 142px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .wt-number-card i {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 18px;
    }

    .wt-number-card strong {
        margin-bottom: 8px;
        font-size: 32px;
    }

    .wt-number-card span {
        max-width: 112px;
        font-size: 10px;
        line-height: 1.25;
    }

    .wt-timeline {
        grid-template-columns: 1fr;
    }

    .wt-cases {
        padding: 58px 0 64px;
    }

    .wt-cases-head h2 {
        font-size: 26px;
        line-height: 1.12;
    }

    .wt-cases-head p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.5;
    }

    .wt-portfolio-stage {
        width: calc(100% - 28px);
        margin-top: 24px;
    }

    .wt-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .wt-portfolio-card {
        box-shadow: 0 16px 38px rgba(80, 0, 0, .14);
    }

    .wt-portfolio-card:after {
        inset: 9px;
    }

    .wt-portfolio-info {
        width: calc(100% - 22px);
        padding-bottom: 16px;
    }

    .wt-portfolio-info span {
        margin-bottom: 6px;
        font-size: 9px;
        line-height: 1.2;
    }

    .wt-portfolio-info h3 {
        font-size: 15px;
        line-height: 1.16;
    }

    .wt-portfolio-info p {
        display: none;
    }

    .wt-portfolio-lightbox {
        padding: 16px;
    }

    .wt-portfolio-lightbox-content img {
        max-height: calc(100vh - 104px);
        border-radius: 8px;
    }

    .wt-portfolio-lightbox-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    .wt-service-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .wt-services .wt-container {
        width: calc(100% - 32px);
    }

    .wt-services {
        padding: 62px 0;
    }

    .wt-services-callout h2 {
        margin-bottom: 12px;
        font-size: 30px;
        line-height: 1.08;
    }

    .wt-services-callout p {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.55;
    }

    .wt-service-card {
        max-width: none;
        min-height: 252px;
        padding: 8px 8px 46px;
        border-radius: 18px;
    }

    .wt-service-media {
        height: auto;
        margin-bottom: 12px;
        border-radius: 14px;
        aspect-ratio: 1.18 / 1;
    }

    .wt-service-card h3 {
        margin-bottom: 8px;
        padding: 0 2px;
        font-size: 14px;
        line-height: 1.18;
    }

    .wt-service-card p {
        padding: 0 2px;
        font-size: 12px;
        line-height: 1.38;
        -webkit-line-clamp: 3;
    }

    .wt-service-link-icon {
        right: 12px;
        bottom: 10px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .wt-section-head.inline {
        display: block;
    }

    .wt-about-page {
        padding: 106px 0 64px;
    }

    .wt-about-page-card {
        border-radius: 22px;
        padding: 14px 14px 30px;
    }

    .wt-about-page-hero {
        margin-bottom: 26px;
        border-radius: 16px;
    }

    .wt-about-page-hero img {
        min-height: 0;
    }

    .wt-about-page-content {
        padding: 0 6px;
    }

    .wt-about-page-content h1:after {
        margin-top: 18px;
    }

    .wt-rich-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .wt-about-numbers,
    .wt-about-reach {
        padding: 66px 0;
    }

    .wt-about-number-grid {
        grid-template-columns: 1fr;
    }

    .wt-about-number-card {
        min-height: 142px;
        padding: 20px;
    }

    .wt-about-map {
        border-radius: 18px;
    }

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

    .wt-testimonial-art {
        width: calc(100vw - 24px);
        margin-left: calc((100vw - 100%) / -2 + 12px);
        padding: 8px;
        border-radius: 16px;
    }

    .wt-testimonial-art img {
        max-height: 540px;
        border-radius: 10px;
    }

    .wt-testimonial-viewer {
        padding: 16px 8px;
    }

    .wt-testimonial-viewer img {
        width: min(100%, 860px);
    }

    .wt-testimonial-viewer.is-zoomed img {
        transform: scale(1.58);
    }

    .wt-regions {
        padding: 72px 0 66px;
    }

    .wt-footer-grid {
        grid-template-columns: 1fr;
    }

    .wt-footer-bottom {
        display: block;
    }

    .wt-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}
