.tm-showcase-wrapper {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.tm-showcase-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tm-logo {
    display: flex;
    align-items: center;
}

.tm-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.tm-badge {
    background: #f39c12;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tm-name-1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 5px 0 !important;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #0053a3;
}

.tm-name-2 {
    margin: 0 0 20px 0 !important;
}

.tm-slogan {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0 !important;
    color: #e67e22;
}

.tm-info {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 30px 0;
}

.tm-specs {
    margin: 0 0 30px 0;
}

.tm-spec {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.tm-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.tm-text {
    font-weight: 500;
    color: #555;
}

.tm-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tm-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tm-cta .tm-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.tm-cta:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.tm-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: transparent;
    color: #666;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tm-link:hover {
    color: #333;
}

.tm-arrow {
    transition: transform 0.3s ease;
}

.tm-link:hover .tm-arrow {
    transform: translateX(3px);
}